diff options
author | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-11 02:22:01 +0200 |
---|---|---|
committer | Fire-Head <Fire-Head@users.noreply.github.com> | 2019-07-11 02:33:28 +0200 |
commit | aed8218ef16679b36e5d869e79128315d9140794 (patch) | |
tree | 67e43ef67838a648c7dc8c39decb4c48b082fea2 /src/vehicles/Boat.h | |
parent | the great reorganization (diff) | |
download | re3-aed8218ef16679b36e5d869e79128315d9140794.tar re3-aed8218ef16679b36e5d869e79128315d9140794.tar.gz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.bz2 re3-aed8218ef16679b36e5d869e79128315d9140794.tar.lz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.xz re3-aed8218ef16679b36e5d869e79128315d9140794.tar.zst re3-aed8218ef16679b36e5d869e79128315d9140794.zip |
Diffstat (limited to 'src/vehicles/Boat.h')
-rw-r--r-- | src/vehicles/Boat.h | 44 |
1 files changed, 42 insertions, 2 deletions
diff --git a/src/vehicles/Boat.h b/src/vehicles/Boat.h index 6d6482a4..41fed2ff 100644 --- a/src/vehicles/Boat.h +++ b/src/vehicles/Boat.h @@ -6,12 +6,52 @@ class CBoat : public CVehicle { public: // 0x288 - uint8 stuff1[57]; + float field_288; + float field_28C; + float field_290; + float field_294; + float field_298; + float field_29C; + float field_2A0; + float field_2A4; + float m_fMovingHiRotation; + int32 _unk0; + RwFrame *m_aBoatNodes[4]; + uint8 m_nBoatFlags; bool m_bIsAnchored; - uint8 stuff[450]; + char _pad0[2]; + float field_2C4; + int32 _unk1; + float field_2CC; + CEntity *field_2D0; + bool _unk2; + char _pad1[3]; + float m_fAccelerate; + float m_fBrake; + float m_fSteeringLeftRight; + uint8 m_nPadID; + char _pad2[3]; + int32 _unk3; + float m_fTurnForceZ; + CVector m_vecMoveForce; + float field_2FC; + uint16 field_300; + uint16 m_nNumWakePoints; + CVector2D m_avec2dWakePoints[32]; + float m_afWakePointLifeTime[32]; CBoat(int, uint8); CBoat* ctor(int, uint8); void dtor() { this->CBoat::~CBoat(); }; + + static CBoat *(&apFrameWakeGeneratingBoats)[4]; + + static bool IsSectorAffectedByWake(CVector2D sector, float fSize, CBoat **apBoats); + static float IsVertexAffectedByWake(CVector vecVertex, CBoat *pBoat); + static void FillBoatList(void); }; static_assert(sizeof(CBoat) == 0x484, "CBoat: error"); + +extern float MAX_WAKE_LENGTH; +extern float MIN_WAKE_INTERVAL; +extern float WAKE_LIFETIME;
\ No newline at end of file |