blob: 62b5efff4db4101f141b7ab29831c0b754c64429 [file] [log] [blame]
#ifndef _RIVE_SKIN_BASE_HPP_
#define _RIVE_SKIN_BASE_HPP_
#include "rive/container_component.hpp"
#include "rive/core/field_types/core_double_type.hpp"
namespace rive {
class SkinBase : public ContainerComponent {
protected:
typedef ContainerComponent Super;
public:
static const uint16_t typeKey = 43;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case SkinBase::typeKey:
case ContainerComponentBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t xxPropertyKey = 104;
static const uint16_t yxPropertyKey = 105;
static const uint16_t xyPropertyKey = 106;
static const uint16_t yyPropertyKey = 107;
static const uint16_t txPropertyKey = 108;
static const uint16_t tyPropertyKey = 109;
private:
float m_Xx = 1.0f;
float m_Yx = 0.0f;
float m_Xy = 0.0f;
float m_Yy = 1.0f;
float m_Tx = 0.0f;
float m_Ty = 0.0f;
public:
inline float xx() const { return m_Xx; }
void xx(float value) {
if (m_Xx == value) {
return;
}
m_Xx = value;
xxChanged();
}
inline float yx() const { return m_Yx; }
void yx(float value) {
if (m_Yx == value) {
return;
}
m_Yx = value;
yxChanged();
}
inline float xy() const { return m_Xy; }
void xy(float value) {
if (m_Xy == value) {
return;
}
m_Xy = value;
xyChanged();
}
inline float yy() const { return m_Yy; }
void yy(float value) {
if (m_Yy == value) {
return;
}
m_Yy = value;
yyChanged();
}
inline float tx() const { return m_Tx; }
void tx(float value) {
if (m_Tx == value) {
return;
}
m_Tx = value;
txChanged();
}
inline float ty() const { return m_Ty; }
void ty(float value) {
if (m_Ty == value) {
return;
}
m_Ty = value;
tyChanged();
}
Core* clone() const override;
void copy(const SkinBase& object) {
m_Xx = object.m_Xx;
m_Yx = object.m_Yx;
m_Xy = object.m_Xy;
m_Yy = object.m_Yy;
m_Tx = object.m_Tx;
m_Ty = object.m_Ty;
ContainerComponent::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override {
switch (propertyKey) {
case xxPropertyKey:
m_Xx = CoreDoubleType::deserialize(reader);
return true;
case yxPropertyKey:
m_Yx = CoreDoubleType::deserialize(reader);
return true;
case xyPropertyKey:
m_Xy = CoreDoubleType::deserialize(reader);
return true;
case yyPropertyKey:
m_Yy = CoreDoubleType::deserialize(reader);
return true;
case txPropertyKey:
m_Tx = CoreDoubleType::deserialize(reader);
return true;
case tyPropertyKey:
m_Ty = CoreDoubleType::deserialize(reader);
return true;
}
return ContainerComponent::deserialize(propertyKey, reader);
}
protected:
virtual void xxChanged() {}
virtual void yxChanged() {}
virtual void xyChanged() {}
virtual void yyChanged() {}
virtual void txChanged() {}
virtual void tyChanged() {}
};
} // namespace rive
#endif