|
SMG-Decomp
A decompilation of Super Mario Galaxy 1
|
Public Member Functions | |
| GeneralMapParts (const char *) | |
| virtual void | init (const JMapInfoIter &) |
| Intializes the NameObj and can set various settings and construct necessary classes. | |
| virtual void | initAfterPlacement () |
| virtual void | appear () |
| virtual void | kill () |
| virtual void | control () |
| virtual void | calcAndSetBaseMtx () |
| Calculates and sets the base matrix of the actor. | |
| virtual bool | receiveOtherMsg (u32, HitSensor *, HitSensor *) |
| void | initMapPartsFunction (const JMapInfoIter &) |
| void | initSensorType (const JMapInfoIter &) |
| void | initGravity (const JMapInfoIter &) |
| void | receiveMsgSwitchBOn () |
| void | receiveMsgSwitchBOff () |
| void | broadcastMsgToAllFunctions (u32) |
| bool | isFixed () const |
| void | startMove () |
| void | exeWait () |
| void | exeMoveStart () |
Public Member Functions inherited from MapParts | |
| MapParts (const char *) | |
| virtual s32 | getSensorNumMax () const |
| virtual void | connectToScene () |
| void | initModelAndCollision (const JMapInfoIter &) |
Public Member Functions inherited from LiveActor | |
| LiveActor (const char *pName) | |
| Constructs a new LiveActor instance. | |
| virtual void | movement () |
| virtual void | calcAnim () |
| virtual void | calcViewAndEntry () |
| virtual void | makeActorAppeared () |
| virtual void | makeActorDead () |
| virtual bool | receiveMessage (u32, HitSensor *, HitSensor *) |
| virtual MtxPtr | getBaseMtx () const |
| Gets the base matrix of the model used for the actor. | |
| virtual MtxPtr | getTakingMtx () const |
| virtual void | startClipped () |
| virtual void | endClipped () |
| virtual void | updateHitSensor (HitSensor *) |
| virtual void | attackSensor (HitSensor *, HitSensor *) |
| virtual bool | receiveMsgPush (HitSensor *, HitSensor *) |
| virtual bool | receiveMsgPlayerAttack (u32, HitSensor *, HitSensor *) |
| virtual bool | receiveMsgEnemyAttack (u32, HitSensor *, HitSensor *) |
| virtual u32 | receiveMsgTake (HitSensor *, HitSensor *) |
| virtual u32 | receiveMsgTaken (HitSensor *, HitSensor *) |
| virtual u32 | receiveMsgThrow (HitSensor *, HitSensor *) |
| virtual u32 | receiveMsgApart (HitSensor *, HitSensor *) |
| void | calcAnmMtx () |
| void | setNerve (const Nerve *) |
| bool | isNerve (const Nerve *) const |
| s32 | getNerveStep () const |
| HitSensor * | getSensor (const char *pSensorName) const |
| Gets a sensor. | |
| void | initModelManagerWithAnm (const char *, const char *, bool) |
| void | initNerve (const Nerve *) |
| void | initHitSensor (int) |
| void | initBinder (f32, f32, u32) |
| void | initRailRider (const JMapInfoIter &) |
| void | initEffectKeeper (int, const char *, bool) |
| void | initSound (int, bool) |
| void | initShadowControllerList (u32) |
| void | initActorCollisionParts (const char *, HitSensor *, ResourceHolder *, MtxPtr, bool, bool) |
| void | initStageSwitch (const JMapInfoIter &) |
| void | initActorStarPointerTarget (f32, const TVec3f *, MtxPtr, TVec3f) |
| void | initActorLightCtrl () |
| void | addToSoundObjHolder () |
| void | updateBinder () |
| bool | isBinderValid (Binder *pBinder) |
| TVec3f * | getPosPtr () |
Public Member Functions inherited from NameObj | |
| NameObj (const char *pName) | |
| Constructs a new NameObj instance. | |
| virtual void | draw () const |
| Draws the object. Does nothing until overridden. | |
| void | initWithoutIter () |
| Initializes a NameObj without a JMapInfoIter instance. | |
| void | setName (const char *pName) |
| Sets the NameObj's mName. | |
| void | executeMovement () |
| void | requestSuspend () |
| void | requestResume () |
| void | syncWithFlags () |
Public Attributes | |
| ActorCameraInfo * | mCameraInfo |
| s32 | mMoveConditionType |
| s32 | mSignMotionType |
| s32 | mShadowType |
| MR::Vector< MR::FixedArray< MapPartsFunction *, 8 > > | mFunctionArray |
| MapPartsAppearController * | mAppearController |
| MapPartsRailRotator * | mRailRotator |
| MapPartsRailMover * | mRailMover |
| MapPartsRotator * | mRotator |
| MapPartsRailGuideDrawer * | mGuideDrawer |
| MapPartsRailPosture * | mRailPosture |
| u8 | _E4 |
| u8 | _E5 |
Public Attributes inherited from MapParts | |
| TVec3f | _8C |
Public Attributes inherited from LiveActor | |
| TVec3f | mPosition |
| 3D vector of the actor's position. | |
| TVec3f | mRotation |
| 3D vector of the actor's rotation. | |
| TVec3f | mScale |
| 3D vector of the actor's scale. | |
| TVec3f | mVelocity |
| 3D vector of the actor's velocity. | |
| TVec3f | mGravity |
| 3D vector of the actor's gravity. | |
| ModelManager * | mModelManager |
| A pointer to a ModelManager instance, used for drawing a 3D model. | |
| ActorAnimKeeper * | mAnimationKeeper |
| A pointer to a ActorAnimKeeper instance, used for storing and playing model animations. | |
| Spine * | mSpine |
| HitSensorKeeper * | mSensorKeeper |
| A pointer to a HitSensorKeeper instance, used for storing HitSensor instances. | |
| Binder * | mBinder |
| RailRider * | mRailRider |
| A pointer to a RailRider instance, used for allowing the actor to ride on paths. | |
| EffectKeeper * | mEffectKeeper |
| AudAnmSoundObject * | mSoundObject |
| LiveActorFlag | mFlags |
| Flags relating to drawing, animation calculation, etc. | |
| ShadowControllerList * | mShadowList |
| CollisionParts * | mCollisionParts |
| StageSwitchCtrl * | mStageSwitchCtrl |
| A pointer to a StageSwitchCtrl instance, used for activating and deactivating switches. | |
| StarPointerTarget * | mStarPointerTarget |
| ActorLightCtrl * | mActorLightCtrl |
| ActorPadAndCameraCtrl * | mCameraCtrl |
Public Attributes inherited from NameObj | |
| const char * | mName |
| A string to identify the NameObj. | |
| volatile u16 | mFlags |
| Flags in relation to movement. | |
| s16 | mExecutorIdx |
| The index into the NameObjExecuteInfo array. | |
Additional Inherited Members | |
Static Public Member Functions inherited from MapParts | |
| static s32 | getMoveStartSignalTime () |
Definition at line 12 of file GeneralMapParts.hpp.
| GeneralMapParts::GeneralMapParts | ( | const char * | pName | ) |
Definition at line 5 of file GeneralMapParts.cpp.
|
virtual |
Intializes the NameObj and can set various settings and construct necessary classes.
| rIter | A reference to the JMapInfoIter that supplies BCSV information. |
Reimplemented from MapParts.
Definition at line 21 of file GeneralMapParts.cpp.
|
virtual |
Reimplemented from NameObj.
Definition at line 51 of file GeneralMapParts.cpp.
|
virtual |
Reimplemented from MapParts.
Definition at line 63 of file GeneralMapParts.cpp.
|
virtual |
Reimplemented from LiveActor.
|
virtual |
Reimplemented from LiveActor.
Definition at line 96 of file GeneralMapParts.cpp.
|
virtual |
Calculates and sets the base matrix of the actor.
Reimplemented from LiveActor.
Definition at line 136 of file GeneralMapParts.cpp.
Reimplemented from LiveActor.
Definition at line 83 of file GeneralMapParts.cpp.
| void GeneralMapParts::initMapPartsFunction | ( | const JMapInfoIter & | rIter | ) |
Definition at line 178 of file GeneralMapParts.cpp.
| void GeneralMapParts::initSensorType | ( | const JMapInfoIter & | rIter | ) |
Definition at line 207 of file GeneralMapParts.cpp.
| void GeneralMapParts::initGravity | ( | const JMapInfoIter & | rIter | ) |
Definition at line 219 of file GeneralMapParts.cpp.
| void GeneralMapParts::receiveMsgSwitchBOff | ( | ) |
Definition at line 256 of file GeneralMapParts.cpp.
| bool GeneralMapParts::isFixed | ( | ) | const |
Definition at line 264 of file GeneralMapParts.cpp.
| void GeneralMapParts::startMove | ( | ) |
Definition at line 272 of file GeneralMapParts.cpp.
| void GeneralMapParts::exeWait | ( | ) |
Definition at line 297 of file GeneralMapParts.cpp.
| void GeneralMapParts::exeMoveStart | ( | ) |
Definition at line 306 of file GeneralMapParts.cpp.
| ActorCameraInfo* GeneralMapParts::mCameraInfo |
Definition at line 36 of file GeneralMapParts.hpp.
| s32 GeneralMapParts::mMoveConditionType |
Definition at line 37 of file GeneralMapParts.hpp.
| s32 GeneralMapParts::mSignMotionType |
Definition at line 38 of file GeneralMapParts.hpp.
| s32 GeneralMapParts::mShadowType |
Definition at line 39 of file GeneralMapParts.hpp.
| MR::Vector<MR::FixedArray<MapPartsFunction *, 8> > GeneralMapParts::mFunctionArray |
Definition at line 40 of file GeneralMapParts.hpp.
| MapPartsAppearController* GeneralMapParts::mAppearController |
Definition at line 41 of file GeneralMapParts.hpp.
| MapPartsRailRotator* GeneralMapParts::mRailRotator |
Definition at line 42 of file GeneralMapParts.hpp.
| MapPartsRailMover* GeneralMapParts::mRailMover |
Definition at line 43 of file GeneralMapParts.hpp.
| MapPartsRotator* GeneralMapParts::mRotator |
Definition at line 44 of file GeneralMapParts.hpp.
| MapPartsRailGuideDrawer* GeneralMapParts::mGuideDrawer |
Definition at line 45 of file GeneralMapParts.hpp.
| MapPartsRailPosture* GeneralMapParts::mRailPosture |
Definition at line 46 of file GeneralMapParts.hpp.
| u8 GeneralMapParts::_E4 |
Definition at line 47 of file GeneralMapParts.hpp.
| u8 GeneralMapParts::_E5 |
Definition at line 48 of file GeneralMapParts.hpp.