1#include "ObjectBase.hh"
3#include "game/field/ObjectDirector.hh"
5#include <game/system/CourseMap.hh>
6#include <game/system/map/MapdataPointInfo.hh>
8#include <egg/math/Math.hh>
14 : m_id(static_cast<ObjectId>(params.id())), m_flags(0x3), m_pos(params.pos()),
15 m_rot(params.rot() * DEG2RAD), m_scale(params.scale()), m_transform(
EGG::Matrix34f::ident),
19ObjectBase::~ObjectBase() =
default;
22void ObjectBase::calcModel() {
27void ObjectBase::loadRail() {
32 s16 pathId = m_mapObj->pathId();
38 auto *point = System::CourseMap::Instance()->getPointInfo(pathId);
39 f32 speed =
static_cast<f32
>(m_mapObj->setting(0));
41 if (point->setting(0) == 0) {
42 m_railInterpolator =
new RailLinearInterpolator(speed, pathId);
44 m_railInterpolator =
new RailSmoothInterpolator(speed, pathId);
49const char *ObjectBase::getKclName()
const {
50 const auto &flowTable = ObjectDirector::Instance()->flowTable();
51 const auto *collisionSet = flowTable.set(flowTable.slot(m_id));
53 return collisionSet->resources;
57void ObjectBase::calcTransform() {
59 m_transform.makeRT(m_rot, m_pos);
61 }
else if (m_flags & 1) {
62 m_transform.setBase(3, m_pos);