blob: 5a2aa1e5d2217d2baa2d117c5db8ea860304f88e [file] [log] [blame]
#ifndef _RIVE_MESH_BASE_HPP_
#define _RIVE_MESH_BASE_HPP_
#include <vector>
#include "rive/container_component.hpp"
#include "rive/core/field_types/core_bytes_type.hpp"
namespace rive {
class MeshBase : public ContainerComponent {
protected:
typedef ContainerComponent Super;
public:
static const uint16_t typeKey = 109;
/// Helper to quickly determine if a core object extends another without
/// RTTI at runtime.
bool isTypeOf(uint16_t typeKey) const override {
switch (typeKey) {
case MeshBase::typeKey:
case ContainerComponentBase::typeKey:
case ComponentBase::typeKey:
return true;
default:
return false;
}
}
uint16_t coreType() const override { return typeKey; }
static const uint16_t triangleIndexBytesPropertyKey = 223;
private:
std::vector<uint8_t> m_TriangleIndexBytes;
public:
inline const std::vector<uint8_t>& triangleIndexBytes() const {
return m_TriangleIndexBytes;
}
void triangleIndexBytes(std::vector<uint8_t> value) {
if (m_TriangleIndexBytes == value) {
return;
}
m_TriangleIndexBytes = value;
triangleIndexBytesChanged();
}
Core* clone() const override;
void copy(const MeshBase& object) {
m_TriangleIndexBytes = object.m_TriangleIndexBytes;
ContainerComponent::copy(object);
}
bool deserialize(uint16_t propertyKey, BinaryReader& reader) override {
switch (propertyKey) {
case triangleIndexBytesPropertyKey:
m_TriangleIndexBytes = CoreBytesType::deserialize(reader);
return true;
}
return ContainerComponent::deserialize(propertyKey, reader);
}
protected:
virtual void triangleIndexBytesChanged() {}
};
} // namespace rive
#endif