blob: 8b1ba7a7621566c7436b1f4f4e910caa57aa8572 [file] [log] [blame]
#ifndef _RIVE_BLEND_STATE1_DBASE_HPP_
#define _RIVE_BLEND_STATE1_DBASE_HPP_
#include "rive/animation/blend_state.hpp"
#include "rive/core/field_types/core_uint_type.hpp"
namespace rive
{
class BlendState1DBase : public BlendState
{
protected:
typedef BlendState Super;
public:
static const uint16_t typeKey = 76;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override
{
switch (typeKey)
{
case BlendState1DBase::typeKey:
case BlendStateBase::typeKey:
case LayerStateBase::typeKey:
case StateMachineLayerComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t inputIdPropertyKey = 167;
private:
uint32_t m_InputId = -1;
public:
inline uint32_t inputId() const { return m_InputId; }
void inputId(uint32_t value)
{
if (m_InputId == value)
{
return;
}
m_InputId = value;
inputIdChanged();
}
Core* clone() const override;
void copy(const BlendState1DBase& object)
{
m_InputId = object.m_InputId;
BlendState::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override
{
switch (propertyKey)
{
case inputIdPropertyKey:
m_InputId = CoreUintType::deserialize(reader);
return true;
}
return BlendState::deserialize(propertyKey, reader);
}
protected:
virtual void inputIdChanged() {}
};
} // namespace rive
#endif