blob: a2655b5919aab36dc95cd084015ea9ac95ad2433 [file] [log] [blame]
#ifndef _RIVE_STATE_MACHINE_BOOL_BASE_HPP_
#define _RIVE_STATE_MACHINE_BOOL_BASE_HPP_
#include "rive/animation/state_machine_input.hpp"
#include "rive/core/field_types/core_bool_type.hpp"
namespace rive {
class StateMachineBoolBase : public StateMachineInput {
protected:
typedef StateMachineInput Super;
public:
static const uint16_t typeKey = 59;
/// Helper to quickly determine if a core object extends another without RTTI
/// at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case StateMachineBoolBase::typeKey:
case StateMachineInputBase::typeKey:
case StateMachineComponentBase::typeKey: return true;
default: return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t valuePropertyKey = 141;
private:
bool m_Value = false;
public:
inline bool value() const { return m_Value; }
void value(bool value) {
if (m_Value == value) {
return;
}
m_Value = value;
valueChanged();
}
Core* clone() const override;
void copy(const StateMachineBoolBase& object) {
m_Value = object.m_Value;
StateMachineInput::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override {
switch (propertyKey) {
case valuePropertyKey: m_Value = CoreBoolType::deserialize(reader); return true;
}
return StateMachineInput::deserialize(propertyKey, reader);
}
protected:
virtual void valueChanged() {}
};
} // namespace rive
#endif