blob: c9ee5d7823801497657b6c357f00befd7b3a22ab [file] [log] [blame]
#include "rive/data_bind/context/context_value_boolean.hpp"
#include "rive/data_bind/data_values/data_value_boolean.hpp"
#include "rive/generated/core_registry.hpp"
using namespace rive;
DataBindContextValueBoolean::DataBindContextValueBoolean(DataBind* dataBind) :
DataBindContextValue(dataBind)
{}
void DataBindContextValueBoolean::apply(Core* target,
uint32_t propertyKey,
bool isMainDirection)
{
updateSourceValue();
auto value = calculateValue<DataValueBoolean, bool>(m_dataValue,
isMainDirection,
m_dataBind);
CoreRegistry::setBool(target, propertyKey, value);
}
DataValue* DataBindContextValueBoolean::getTargetValue(Core* target,
uint32_t propertyKey)
{
auto value = CoreRegistry::getBool(target, propertyKey);
return new DataValueBoolean(value);
}