#include <ObjectPoihana.hh>
Represents the cataquacks on GCN Peach Beach.
Definition at line 48 of file ObjectPoihana.hh.
Public Member Functions | |
| ObjectPoihana (const System::MapdataGeoObj ¶ms) | |
| void | init () override |
| void | calc () override |
Public Member Functions inherited from Field::ObjectPoihanaBase | |
| ObjectPoihanaBase (const System::MapdataGeoObj ¶ms) | |
| void | init () override |
| void | calc () override |
| u32 | loadFlags () const override |
Public Member Functions inherited from Field::ObjectCollidable | |
| ObjectCollidable (const System::MapdataGeoObj ¶ms) | |
| ObjectCollidable (const char *name, const EGG::Vector3f &pos, const EGG::Vector3f &rot, const EGG::Vector3f &scale) | |
| void | load () override |
| void | calcCollisionTransform () override |
| f32 | getCollisionRadius () const override |
| Finds the radius that fits fully in a BoxColUnit. | |
| virtual void | loadAABB (f32 maxSpeed) |
| virtual void | loadAABB (f32 radius, f32 maxSpeed) |
| virtual void | processKartReactions (Kart::KartObject *kartObj, Kart::Reaction &reactionOnKart, Kart::Reaction &reactionOnObj) |
| virtual Kart::Reaction | onCollision (Kart::KartObject *, Kart::Reaction reactionOnKart, Kart::Reaction, EGG::Vector3f &) |
| virtual void | onWallCollision (Kart::KartObject *, const EGG::Vector3f &) |
| virtual void | onObjectCollision (Kart::KartObject *) |
| virtual bool | checkCollision (ObjectCollisionBase *lhs, EGG::Vector3f &dist) |
| virtual const EGG::Vector3f & | getCollisionTranslation () const |
| virtual ObjectCollisionBase * | collision () const |
Public Member Functions inherited from Field::ObjectBase | |
| ObjectBase (const System::MapdataGeoObj ¶ms) | |
| ObjectBase (const char *name, const EGG::Vector3f &pos, const EGG::Vector3f &rot, const EGG::Vector3f &scale) | |
| virtual void | calcModel () |
| virtual const char * | getResources () const |
| virtual void | loadGraphics () |
| virtual void | loadAnims () |
| virtual void | loadRail () |
| virtual const char * | getName () const |
| virtual const char * | getKclName () const |
| virtual void | resize (f32 radius, f32 maxSpeed) |
| virtual void | unregisterCollision () |
| virtual void | disableCollision () const |
| virtual void | enableCollision () const |
| virtual const BoxColUnit * | getUnit () const |
| const RailInterpolator * | railInterpolator () const |
| virtual const EGG::Vector3f & | getPosition () const |
| virtual ObjectId | id () const |
| const EGG::Vector3f & | pos () const |
| void | setPos (const EGG::Vector3f &pos) |
| void | setScale (const EGG::Vector3f &scale) |
| void | setTransform (const EGG::Matrix34f &mat) |
| const EGG::Vector3f & | scale () const |
Private Member Functions | |
| void | enterStateStub () |
| void | enterState0 () |
| void | calcStateStub () |
| void | calcState0And1 () |
| EGG::Vector3f | curPos () const |
| void | calcCurRot (f32 t) |
| void | calcOrthonormalBasis () |
| void | calcCollision () |
| void | calcStep () |
| void | calcDir () |
| void | calcUp () |
| EGG::Vector3f | collisionPos () const |
| void | calcPosAndTransform () |
| void | calcPosAndCollision () |
Static Private Member Functions | |
| static EGG::Vector3f | Project (const EGG::Vector3f &v0, const EGG::Vector3f &v1) |
Static Private Attributes | |
| static constexpr std::array< StateManagerEntry, 8 > | STATE_ENTRIES |
Additional Inherited Members | |
Public Types inherited from Field::ObjectBase | |
| enum class | eFlags { Position = 0 , Rotation = 1 , Matrix = 2 , Scale = 3 } |
| typedef EGG::TBitFlag< u16, eFlags > | Flags |
Protected Types inherited from Field::ObjectPoihanaBase | |
| enum class | WalkState { NeedTarget = 0 , HasTarget = 1 } |
Protected Member Functions inherited from Field::ObjectCollidable | |
| void | createCollision () override |
| virtual const EGG::Vector3f & | collisionCenter () const |
| void | registerManagedObject () |
Protected Member Functions inherited from Field::ObjectBase | |
| void | calcTransform () |
| void | calcRotLock () |
| void | linkAnims (const std::span< const char * > &names, const std::span< Render::AnmType > types) |
| void | setMatrixTangentTo (const EGG::Vector3f &up, const EGG::Vector3f &tangent) |
| void | setMatrixFromOrthonormalBasisAndPos (const EGG::Vector3f &v) |
Protected Member Functions inherited from Field::StateManager | |
| StateManager (void *obj, const std::span< const StateManagerEntry > &entries) | |
| void | calc () |
Static Protected Member Functions inherited from Field::ObjectBase | |
| static f32 | CheckPointAgainstLineSegment (const EGG::Vector3f &point, const EGG::Vector3f &a, const EGG::Vector3f &b) |
| Calculates on what side of line segment ab point lies. | |
| static EGG::Vector3f | RotateXZByYaw (f32 angle, const EGG::Vector3f &v) |
| Rotates a vector around the Y-axis and returns the XZ-plane portion of the vector. | |
| static EGG::Vector3f | RotateAxisAngle (f32 angle, const EGG::Vector3f &axis, const EGG::Vector3f &v1) |
| static void | SetRotTangentHorizontal (EGG::Matrix34f &mat, const EGG::Vector3f &up, const EGG::Vector3f &tangent) |
| static EGG::Matrix34f | OrthonormalBasis (const EGG::Vector3f &v) |
| static EGG::Matrix34f | RailOrthonormalBasis (const RailInterpolator &railInterpolator) |
| static EGG::Vector3f | AdjustVecForward (f32 sidewaysScalar, f32 forwardScalar, f32 minSpeed, const EGG::Vector3f &src, EGG::Vector3f forward) |
| static f32 | CalcParabolicDisplacement (f32 initVel, f32 accel, u32 frame) |
| Solves the standard kinematic equation \(y(t) = v_0\, t - \frac{1}{2} a t^{2}\). | |
| static EGG::Vector3f | Interpolate (f32 t, const EGG::Vector3f &v0, const EGG::Vector3f &v1) |
Protected Attributes inherited from Field::ObjectPoihanaBase | |
| WalkState | m_walkState |
| EGG::Vector3f | m_curRot |
| EGG::Vector3f | m_up |
| EGG::Matrix34f | m_workMat |
| EGG::Vector3f | m_accel |
| EGG::Vector3f | m_extVel |
| EGG::Vector3f | m_vel |
| EGG::Vector3f | m_floorNrm |
| f32 | m_heightOffset |
| Accounts for cataquack leg height. | |
| f32 | m_radius |
| EGG::Vector3f | m_targetPos |
| EGG::Vector3f | m_dir |
| EGG::Vector3f | m_initPos |
| EGG::Vector3f | m_targetVel |
| Derived from m_targetPos and current position. | |
Protected Attributes inherited from Field::ObjectCollidable | |
| ObjectCollisionBase * | m_collision |
Protected Attributes inherited from Field::ObjectBase | |
| Render::DrawMdl * | m_drawMdl |
| Abstract::g3d::ResFile * | m_resFile |
| ObjectId | m_id |
| RailInterpolator * | m_railInterpolator |
| BoxColUnit * | m_boxColUnit |
| Flags | m_flags |
| EGG::Vector3f | m_pos |
| EGG::Vector3f | m_scale |
| EGG::Vector3f | m_rot |
| bool | m_rotLock |
| EGG::Matrix34f | m_transform |
| const System::MapdataGeoObj * | m_mapObj |
Protected Attributes inherited from Field::StateManager | |
| u16 | m_currentStateId |
| s32 | m_nextStateId |
| u32 | m_currentFrame |
| std::span< u16 > | m_entryIds |
| std::span< const StateManagerEntry > | m_entries |
| void * | m_obj |
|
0x8074816C |
Definition at line 29 of file ObjectPoihana.cc.
|
inlineoverridevirtual0x80748B70 |
Reimplemented from Field::ObjectBase.
Definition at line 56 of file ObjectPoihana.hh.
|
private0x80747788 |
Definition at line 76 of file ObjectPoihana.cc.
|
private0x80747530 |
Definition at line 49 of file ObjectPoihana.cc.
|
private0x80749610 |
Definition at line 156 of file ObjectPoihana.cc.
|
private0x807475DC |
Definition at line 59 of file ObjectPoihana.cc.
|
inlineprivate0x807476D8 |
Definition at line 103 of file ObjectPoihana.hh.
|
inlineprivate0x80747404 |
Definition at line 96 of file ObjectPoihana.hh.
|
inlineprivate0x80749924 |
Definition at line 71 of file ObjectPoihana.hh.
|
inlineprivate |
Definition at line 68 of file ObjectPoihana.hh.
|
private0x80748D98 |
Definition at line 100 of file ObjectPoihana.cc.
|
private0x807496C4 |
Definition at line 166 of file ObjectPoihana.cc.
|
inlinenodiscardprivate0x80747324 |
Definition at line 91 of file ObjectPoihana.hh.
|
inlinenodiscardprivate0x80747308 |
Definition at line 79 of file ObjectPoihana.hh.
|
inlineprivate0x807498AC |
Definition at line 64 of file ObjectPoihana.hh.
|
inlineprivate |
Definition at line 61 of file ObjectPoihana.hh.
|
overridevirtual0x80748958 |
Reimplemented from Field::ObjectBase.
Definition at line 36 of file ObjectPoihana.cc.
|
inlinestaticnodiscardprivate0x8074B0AC |
Definition at line 110 of file ObjectPoihana.hh.
|
staticconstexprprivate |
Definition at line 117 of file ObjectPoihana.hh.