Files
rive-cpp/include/generated/transform_component_base.hpp
2020-08-16 18:20:11 -07:00

115 lines
2.5 KiB
C++

#ifndef _RIVE_TRANSFORM_COMPONENT_BASE_HPP_
#define _RIVE_TRANSFORM_COMPONENT_BASE_HPP_
#include "container_component.hpp"
#include "core/field_types/core_double_type.hpp"
namespace rive
{
class TransformComponentBase : public ContainerComponent
{
protected:
typedef ContainerComponent Super;
public:
static const int typeKey = 38;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(int typeKey) const override
{
switch (typeKey)
{
case TransformComponentBase::typeKey:
case ContainerComponentBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
int coreType() const override { return typeKey; }
static const int rotationPropertyKey = 15;
static const int scaleXPropertyKey = 16;
static const int scaleYPropertyKey = 17;
static const int opacityPropertyKey = 18;
private:
float m_Rotation = 0;
float m_ScaleX = 1;
float m_ScaleY = 1;
float m_Opacity = 1;
public:
inline float rotation() const { return m_Rotation; }
void rotation(float value)
{
if (m_Rotation == value)
{
return;
}
m_Rotation = value;
rotationChanged();
}
inline float scaleX() const { return m_ScaleX; }
void scaleX(float value)
{
if (m_ScaleX == value)
{
return;
}
m_ScaleX = value;
scaleXChanged();
}
inline float scaleY() const { return m_ScaleY; }
void scaleY(float value)
{
if (m_ScaleY == value)
{
return;
}
m_ScaleY = value;
scaleYChanged();
}
inline float opacity() const { return m_Opacity; }
void opacity(float value)
{
if (m_Opacity == value)
{
return;
}
m_Opacity = value;
opacityChanged();
}
bool deserialize(int propertyKey, BinaryReader& reader) override
{
switch (propertyKey)
{
case rotationPropertyKey:
m_Rotation = CoreDoubleType::deserialize(reader);
return true;
case scaleXPropertyKey:
m_ScaleX = CoreDoubleType::deserialize(reader);
return true;
case scaleYPropertyKey:
m_ScaleY = CoreDoubleType::deserialize(reader);
return true;
case opacityPropertyKey:
m_Opacity = CoreDoubleType::deserialize(reader);
return true;
}
return ContainerComponent::deserialize(propertyKey, reader);
}
protected:
virtual void rotationChanged() {}
virtual void scaleXChanged() {}
virtual void scaleYChanged() {}
virtual void opacityChanged() {}
};
} // namespace rive
#endif