| 1 | #pragma once |
|---|---|
| 2 | |
| 3 | #include "Library/LiveActor/LiveActor.h" |
| 4 | |
| 5 | namespace al { |
| 6 | class WheelMovement; |
| 7 | class SwitchKeepOnAreaGroup; |
| 8 | class SwitchOnAreaGroup; |
| 9 | |
| 10 | class WheelMapParts : public LiveActor { |
| 11 | public: |
| 12 | WheelMapParts(const char* name); |
| 13 | |
| 14 | void init(const ActorInitInfo& info) override; |
| 15 | void control() override; |
| 16 | bool receiveMsg(const SensorMsg* message, HitSensor* other, HitSensor* self) override; |
| 17 | |
| 18 | void appearAndSetStart(); |
| 19 | |
| 20 | void exeWait(); |
| 21 | void exeMove(); |
| 22 | void exeAssistStop(); |
| 23 | |
| 24 | private: |
| 25 | sead::Matrix34f mSurfaceEffectMtx = sead::Matrix34f::ident; |
| 26 | WheelMovement* mWheelMovement = nullptr; |
| 27 | SwitchKeepOnAreaGroup* mSwitchKeepOnAreaGroup = nullptr; |
| 28 | SwitchOnAreaGroup* mSwitchOnAreaGroup = nullptr; |
| 29 | s32 mAssistStopTimer = 0; |
| 30 | }; |
| 31 | |
| 32 | static_assert(sizeof(WheelMapParts) == 0x158); |
| 33 | } // namespace al |
| 34 |