-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathglobal.inc
More file actions
17797 lines (17797 loc) · 537 KB
/
global.inc
File metadata and controls
17797 lines (17797 loc) · 537 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.public objDiffAttrSet
.public objCollision
.public objCollisionFast
.public ObjCollisionUnion
.public ObjCollisionFastUnion
.public ObjDiffCollisionEarthCheck
.public objDiffCollisionDirCheck
.public objDiffSufSet
.public objDiffCollisionDirWidthCheck
.public objDiffCollisionSimpleOverCheck
.public objDiffCollisionDirHeightCheck
.public ObjSetDiffCollision
.public ObjDiffCollisionFast
.public ObjDiffCollision
.public objGetMapBlockData
.public objGetMapColDataX
.public objGetMapColDataY
.public ObjCollisionObjectRegist
.public ObjCollisionObjectClear
.public objCollsionOffsetSet
.public ObjCollisionObjectFastCheckDet
.public ObjCollisionObjectFastCheck
.public ObjCollisionObjectCheck
.public objFastCollisionDiffObject
.public objCollisionDiffObject
.public objGetColDataX
.public objGetColDataY
.public OnVBlank
.public OnVAlarmActivated
.public OS_IrqHandler
.public OS_IrqHandler_ThreadSwitch
.public OSi_DoBoot
.public OSi_CpuClear32
.public OSi_ReadCardRom32
.public OSi_ReloadRomData
.public OSi_DoResetSystem
.public MIi_DmaSetParams_wait_noInt
.public MIi_DmaSetParams_noInt
.public MIi_DmaSetParams_wait
.public MIi_DmaSetParams
.public _obj_fCol
.public OS_IRQTable
.public _secure
.public SVC_Sqrt
.public SVC_DivRem
.public SVC_UncompressLZ16FromDevice
.public SVC_IsMmemExpanded
.public SVC_UncompressRL8
.public SVC_UncompressRL16FromDevice
.public SVC_CpuSetFast
.public SVC_UnpackBits
.public SVC_UncompressLZ8
.public SVC_CpuSet
.public SVC_Div
.public SVC_SoftReset
.public SVC_Halt
.public SVC_GetCRC16
.public SVC_WaitByLoop
.public SVC_WaitVBlankIntr
.public SVC_UncompressHuffmanFromDevice
.public SVC_WaitIntr
.public _start
.public INITi_CpuClear32
.public MIi_UncompressBackward
.public do_autoload
.public _start_AutoloadDoneCallback
.public init_cp15
.public OSi_ReferSymbol
.public NitroStartUp
.public _start_ModuleParams
.public id_string
.public _version_NINTENDO_WiFi
.public _version_UBIQUITOUS_CPS
.public _version_UBIQUITOUS_SSL
.public cardi_backup_assert
.public NitroMain
.public InitNetwork
.public CreateINetManager
.public DestroyINetManager
.public GetINetManagerStatus
.public CreateMatchManager
.public DestroyMatchManager
.public SetMatchFriendDeleteCallback
.public GetMatchManagerStatus
.public CreateConnectionManagerForAnybody
.public CreateConnectionManagerForFriends
.public DestroyConnectionManager
.public GetConnectionManagerStatus
.public CreateDataTransferManager
.public DestroyDataTransferManager
.public GetDataTransferSendBuffer
.public GetDataTransferReceiveBuffer
.public ClearDataTransferSendBuffer
.public ClearDataTransferAllBuffers
.public SetDataTransferConfig
.public SetDataTransferConfigEx
.public DestroyStorageManager
.public DestroyNdManager
.public CreateLeaderboardsManager
.public DestroyLeaderboardsManager
.public GetLeaderboardsManagerStatus
.public PutScoreToLeaderboards
.public LoadLeaderboardRanksTopList
.public LoadLeaderboardRanksNear
.public GetLeaderboardsRankOrder
.public GetLeaderboardsRankCount
.public GetLeaderboardsRankData
.public NetworkAlloc
.public NetworkFree
.public INetManager_Main
.public INetManager_Destructor
.public INetManager_State_Init
.public INetManager_State_Connected
.public INetManager_State_Disconnected
.public GetMatchManagerWork
.public InitMatchBuffers
.public ReleaseMatchBuffers
.public MatchManager_Main
.public MatchManager_Destructor
.public MatchLoginCallback
.public MatchBuddyFriendCallback
.public MatchServerUpdateCallback
.public MatchFriendStatusCallback
.public MatchDeleteFriendCallback
.public MatchManager_State_Idle
.public MatchManager_State_LoggedIn
.public MatchManager_State_ServerUpdate
.public MatchManager_State_SeverUpdated
.public MatchManager_State_Error
.public ConnectionManager_Main
.public ConnectionManager_Destructor
.public ConnectionMatchedCallback
.public ConnectionClosedCallback
.public PrepareMatchMakingConnection
.public ConnectionManager_State_Connecting
.public ConnectionManager_State_Connected
.public ConnectionManager_State_ConnectionCancelled
.public ConnectionManager_State_ConnectionError
.public GetDataTransferManagerWork
.public DataTransferManager_Main
.public DataTransferManager_Destructor
.public DataTransferUserRecvCallback
.public DataTransferUserRecvTimeoutCallback
.public DataTransferShouldSendBitmap
.public NdCleanupCallback
.public GetNdManagerWork
.public GetLeaderboardsManagerWork
.public LoadLeaderboardsScore
.public HandleRankError
.public LoadLeaderboardRowTotal
.public LoadLeaderboardRowCount
.public LoadLeaderboardRows
.public LeaderboardsManager_Main
.public LeaderboardsManager_Destructor
.public LeaderboardsManager_State_Idle
.public LeaderboardsManager_State_PutScoreSuccess
.public LeaderboardsManager_State_ProcessRanks
.public LeaderboardsManager_State_GetScoreSuccess
.public LeaderboardsManager_State_ProcessPutScore
.public LeaderboardsManager_State_Leaderboards_Ordered
.public LeaderboardsManager_State_Leaderboards_TopList
.public LeaderboardsManager_State_Leaderboards_Near
.public LeaderboardsManager_State_Leaderboards_Friends
.public LeaderboardsManager_State_Error
.public LoadSpriteButtonCursorSprite
.public ReleaseSpriteButtonCursorSprite
.public GetSpriteButtonCursorSprite
.public LoadSpriteButtonYesNoButtonSprite
.public ReleaseSpriteButtonYesNoButtonSprite
.public GetSpriteButtonYesNoButtonSprite
.public LoadSpriteButtonTouchpadSprite
.public ReleaseSpriteButtonTouchpadSprite
.public GetSpriteButtonTouchpadSprite
.public InitSpriteButtonConfig
.public CreateSpriteButton
.public DestroySpriteButton
.public GetSelectedSpriteButton
.public SetSpriteButtonPosition
.public GetSpriteButtonSpriteAllocSize
.public SetSpriteButtonState
.public GetSpriteButtonWork
.public SpriteButton_Main
.public SpriteButton_Destructor
.public SpriteButton_Draw
.public SpriteButtonTouchAreaResponseHandler
.public SpriteButtonTouchAreaCB_YesButton
.public SpriteButtonTouchAreaCB_NoButton
.public AkUtilFrameToTime
.public AkMath__Func_2002C40
.public AkMath__Func_2002C98
.public AkMath__Func_2002D28
.public AkMath__BlendColors
.public InitSkipTitleCardEvent
.public InitZoneSysEvent
.public ExitTitleCardSysEvent
.public InitLoadStageEvent
.public InitZoneEvent
.public InitVSBattleEvent
.public InitStageMission
.public CreateGameDataRequest
.public ReleaseGameSystem
.public FlushGameSystem
.public ReleaseGameState
.public InitGameSystemForStage
.public SetupDisplayForZone
.public SetupDisplayForBoss
.public InitStageBlendControl
.public InitPlayerStatus
.public GameDataRequest_Main_TryLoadCommonAssets
.public GameDataRequest_Main_AwaitLoadCommonAssets
.public GameDataRequest_Main_TryLoadStage
.public GameDataRequest_Main_AwaitLoadStageAssets
.public GameDataRequest_Main_BuildArea
.public InitStageCollision
.public LoadGameMissionArchive
.public CreateGameSystem
.public CreateGameSystemEx
.public ShutdownGameSystemTasks
.public GameSystem_Main_Early
.public GameSystem_Main_Late
.public IsBossStage
.public GetCurrentZoneID
.public CheckStageUsesLaps
.public GetStageStartType
.public IsSnowboardStage
.public IsSnowboardActive
.public GetVSBattlePosition
.public SendPacketForStageScoreEvent
.public SendPacketForStageFinishEvent
.public RequestNextSendPacket
.public HandleNetworkError
.public CreateReplayViewer
.public ReplayViewer_Main
.public InitGameDataLoadContext
.public LoadStageCommonAssets
.public LoadStageAssets
.public ReleaseStageCommonArchives
.public FlushStageArea
.public BuildStageCommonAssets
.public BuildStageArea
.public ReleaseStageCommonAssets
.public ReleaseStageArea
.public ReleaseStageAudioWork
.public GetStageDrawState
.public InitStageLightConfig
.public InitStageEdgeConfig
.public GameDataLoadFileReq
.public GetLoadedFileID
.public AllocBossAsset
.public LoadBossAssets
.public ReleaseBossAssets
.public LoadAlloc_FromHead
.public LoadAlloc_FromTail
.public LoadAlloc_Snd
.public PreLoad_SoundArchiveZone
.public PreLoad_SoundArchiveBoss
.public PostLoad_InitRawArchive
.public PostLoad_InitMapArchive
.public PostLoad_InitEveArchive
.public PostLoad_InitMapFar
.public PostLoad_InitPlayerArchive
.public PostLoad_InitCommonArchive
.public PostLoad_InitStageArchive
.public PostLoad_InitSoundArchive
.public PostLoad_InitBossAssetsZ1
.public PostLoad_InitBossAssetsZ2
.public PostLoad_InitBossAssetsZ3
.public PostLoad_InitBossAssetsZ4
.public PostLoad_InitBossAssetsZ5
.public PostLoad_InitBossAssetsZ6
.public PostLoad_InitBossAssetsZ7
.public PostLoad_InitBossAssetsZF
.public gmGameData__FlushZ11
.public gmGameData__FlushZ12
.public gmGameData__FlushZ1B
.public gmGameData__FlushZ21
.public gmGameData__FlushZ22
.public gmGameData__FlushZ2B
.public gmGameData__FlushZ31
.public gmGameData__FlushZ32
.public gmGameData__FlushZ3B
.public gmGameData__FlushZ41
.public gmGameData__FlushZ42
.public gmGameData__FlushZ4B
.public gmGameData__FlushZ51
.public gmGameData__FlushZ52
.public gmGameData__FlushZ5B
.public gmGameData__FlushZ61
.public gmGameData__FlushZ62
.public gmGameData__FlushZ6B
.public gmGameData__FlushZ71
.public gmGameData__FlushZ72
.public gmGameData__FlushZ7B
.public gmGameData__FlushZFB
.public gmGameData__FlushZ91
.public gmGameData__BuildZ11
.public gmGameData__BuildZ12
.public gmGameData__BuildZ1B
.public gmGameData__BuildZ1T
.public gmGameData__BuildZ21
.public gmGameData__BuildZ22
.public gmGameData__BuildZ2B
.public gmGameData__BuildZ31
.public gmGameData__BuildZ32
.public gmGameData__BuildZ3B
.public gmGameData__BuildZ41
.public gmGameData__BuildZ42
.public gmGameData__BuildZ4B
.public gmGameData__BuildZ51
.public gmGameData__BuildZ52
.public gmGameData__BuildZ5B
.public gmGameData__BuildZ61
.public gmGameData__BuildZ62
.public gmGameData__BuildZ6B
.public gmGameData__BuildZ71
.public gmGameData__BuildZ72
.public gmGameData__BuildZ7B
.public gmGameData__BuildZFB
.public gmGameData__BuildZ91
.public gmGameData__ReleaseZ11
.public gmGameData__ReleaseZ12
.public gmGameData__ReleaseZ1B
.public gmGameData__ReleaseZ1T
.public gmGameData__ReleaseZ21
.public gmGameData__ReleaseZ22
.public gmGameData__ReleaseZ2B
.public gmGameData__ReleaseZ31
.public gmGameData__ReleaseZ32
.public gmGameData__ReleaseZ3B
.public gmGameData__ReleaseZ41
.public gmGameData__ReleaseZ42
.public gmGameData__ReleaseZ4B
.public gmGameData__ReleaseZ51
.public gmGameData__ReleaseZ52
.public gmGameData__ReleaseZ5B
.public gmGameData__ReleaseZ61
.public gmGameData__ReleaseZ62
.public gmGameData__ReleaseZ6B
.public gmGameData__ReleaseZ71
.public gmGameData__ReleaseZ72
.public gmGameData__ReleaseZ7B
.public gmGameData__ReleaseZFB
.public gmGameData__ReleaseZ91
.public GetLoadProgress
.public InitStageBGM
.public ReleaseStageBGM
.public StartStageBGM
.public StopStageBGM
.public FadeOutStageBGM
.public ChangeStageBGMVariant
.public ChangeBossBGMVariant
.public FadeStageBGMToTargetVolume
.public CreateManagedSfx
.public StageBGMManager_Main
.public StageBGMManager_Destructor
.public HandleStageBGMVariantChange
.public ManagedSfx_Destructor
.public ManagedSfx_Main
.public TitleCard__LoadCommonArchive
.public TitleCard__ReleaseCommonArchive
.public TitleCard__LoadStageArchive
.public TitleCard__ReleaseStageArchive
.public TitleCard__Create
.public TitleCard__GetProgress
.public TitleCard__SetAllowContinue
.public TitleCard__SetFinished
.public TitleCard__GetWork
.public TitleCard__LoadSprites
.public TitleCard__InitAnimators
.public TitleCard__DestroyAnimators
.public TitleCard__InitReadyGoAnimators
.public TitleCard__DestroyReadyGoAnimators
.public TitleCard__CheckIsFinished
.public TitleCard__Main
.public TitleCard__Destructor
.public TitleCard__Draw
.public TitleCard__State_Init
.public TitleCard__State_AwaitInitialContinue
.public TitleCard__State_BeginEnterNameplate
.public TitleCard__State_EnterNameplate
.public TitleCard__State_BeginShowPlayerName
.public TitleCard__State_ShowPlayerName
.public TitleCard__State_BeginNameplateExit
.public TitleCard__State_ExitNameplate
.public TitleCard__State_FinishExitNameplate
.public TitleCard__State_BeginShowReadyText
.public TitleCard__State_ShowReadyText
.public TitleCard__State_AwaitFurtherContinue
.public TitleCard__State_BeginShowGoText
.public TitleCard__State_ShowGoText
.public CreateStageStart
.public StageStart_Main
.public MapSys__Init
.public MapSys__Create
.public MapSys__InitCameraForRestart
.public MapSys__LoadArchive_RAW
.public MapSys__LoadArchive_MAP
.public MapSys__Flush
.public MapSys__BuildData
.public MapSys__Release
.public MapSys__DrawLayout
.public MapSys__GetDispSelect
.public MapSys__GetCameraA
.public MapSys__GetCameraB
.public MapSys__Func_2008F28
.public MapSys__GetPosition
.public MapSys__Func_20090D0
.public MapSys__SetTargetOffsetA
.public MapSys__SetTargetOffset
.public MapSys__Func_2009190
.public MapSys__Func_20091B0
.public MapSys__Func_20091D0
.public MapSys__Func_20091F0
.public MapSys__GetScreenSwapPos
.public MapSys__GetCameraPositionCB
.public MapSys__LoadZoneTiles
.public MapSys__LoadZoneMap
.public MapSys__LoadBossTiles_Zone1
.public MapSys__LoadBossTiles_Zone2
.public MapSys__LoadBossTiles_Zone3
.public MapSys__LoadBossTiles_Zone4
.public MapSys__LoadBossTiles_Zone5
.public MapSys__LoadBossTiles_Zone6
.public MapSys__LoadBossTiles_Zone7
.public MapSys__LoadBossTiles_ZoneF
.public MapSys__LoadBossMap_Zone1
.public MapSys__LoadBossMap_Zone2
.public MapSys__LoadBossMap_Zone3
.public MapSys__LoadBossMap_Zone4
.public MapSys__LoadBossMap_Zone5
.public MapSys__LoadBossMap_Zone6
.public MapSys__LoadBossMap_Zone7
.public MapSys__LoadBossMap_ZoneF
.public MapSys__LoadCollision
.public MapSys__LoadTileLayout
.public MapSys__InitStageBounds
.public MapSys__InitBoundsForStage
.public MapSys__InitBoundsForVSRings
.public MapSys__SetupBoss_Zone5
.public MapSys__Destructor
.public MapSys__Main_Zone
.public MapSys__Main_Boss
.public MapSys__HandleCamera
.public MapSys__Func_2009E3C
.public MapSys__Func_2009E80
.public MapSys__Func_200A460
.public MapSys__HandleCamBoundsX
.public MapSys__Func_200A580
.public MapSys__HandleHBounds
.public MapSys__HandleVBounds
.public MapSys__Func_200A780
.public MapSys__Func_200A7E8
.public MapSys__FollowTargetX
.public MapSys__FollowTargetY
.public MapSys__Func_200A8D8
.public MapSys__Func_200A910
.public MapSys__Func_200A948
.public MapSys__Func_200AA18
.public MapSys__Func_200AA84
.public MapSys__Func_200AAF8
.public MapSys__Func_200AC64
.public MapSys__HandleCamLook
.public MapSys__HandleCameraLookUpDown
.public MapSys__CamLook_HandlePlayerLookUpDown
.public MapSys__CamLook_LookingUp
.public MapSys__CamLook_LookUpIdle
.public MapSys__CamLook_LookingDown
.public MapSys__CamLook_LookDownIdle
.public MapSys__CamLook_Reset
.public MapSys__HandleCameraScreenSwap
.public MapFarSys__SetAsset
.public MapFarSys__GetAsset
.public MapFarSys__Release
.public MapFarSys__Build
.public MapFarSys__BuildBG
.public MapFarSys__ReleaseBG
.public MapFarSys__ProcessBG
.public MapFarSys__SetScrollSpeed
.public MapFarSys__AdvanceScrollSpeed
.public MapFarSys__Func_200B524
.public MapFarSys__LoadBackgroundGraphics
.public MapFarSys__InitBackgroundLayer
.public MapFarSys__Build_Z1
.public MapFarSys__Build_Z2
.public MapFarSys__Build_Z3
.public MapFarSys__Build_Z4
.public MapFarSys__Build_Z5
.public MapFarSys__Build_Z6
.public MapFarSys__Build_Z7
.public MapFarSys__Build_Z9
.public MapFarSys__Process_Z1
.public MapFarSys__Process_Z2
.public MapFarSys__Process_Z3
.public MapFarSys__Process_Z4
.public MapFarSys__Process_Z5
.public MapFarSys__Process_Z6
.public MapFarSys__Process_Z7
.public MapFarSys__Process_Z9
.public MapFarSys__DoFarScrollX
.public MapFarSys__DoFarScrollY
.public MapFarSys__ProcessScroll
.public MapFarSys__Func_200D144
.public InitWaterSurface
.public ReleaseWaterSurface
.public ProcessWaterSurface
.public WaterSurface_Init_Zone1
.public WaterSurface_Release_Zone1
.public WaterSurface_Process_Zone1
.public WaterSurface_Init_Zone2
.public WaterSurface_Release_Zone2
.public WaterSurface_Process_Zone2
.public WaterSurface_Init_Zone3
.public WaterSurface_Release_Zone3
.public WaterSurface_Process_Zone3
.public WaterSurface_Init_Zone6
.public WaterSurface_Release_Zone6
.public WaterSurface_Process_Zone6
.public WaterSurface_Init_Zone7
.public WaterSurface_Release_Zone7
.public WaterSurface_Process_Zone7
.public CreateWaterSurface
.public ReleaseWaterSurfaceCommon
.public ProcessWaterSurfaceCommon
.public WaterSurface_Main
.public WaterSurface_VAlarmCB_200E26C
.public WaterSurface_VAlarmCB_200E2CC
.public InitUnderwaterPalette
.public WaterSurface_CopyPalette
.public WaterSurface_CopyAltPalette
.public LoadPlayerAssets
.public ReleasePlayerAssets
.public Player__Create
.public Player__Action_ResetPlayer
.public Player__InitState
.public Player__SaveStartingPosition
.public Player__InitGimmick
.public Player__InitPhysics
.public Player__Action_Blank
.public Player__State_Blank
.public Player__Action_Intangible
.public Player__RemoveCollideEvent
.public Player__State_Intangible
.public Player__Collide_Intangible
.public Player__GiveRings
.public Player__GiveLife
.public Player__GiveTension
.public Player__GiveComboTension
.public Player__GiveInvincibility
.public Player__GiveRegularShield
.public Player__GiveMagnetShield
.public Player__GiveHyperTrickEffect
.public Player__GiveSlowdownEffect
.public Player__GiveConfusionEffect
.public Player__DepleteTension
.public Player__ApplyWarpEfect
.public Player__ChangeAction
.public Player__SetAnimFrame
.public Player__SetAnimSpeedFromVelocity
.public Player__UseDashPanel
.public Player__HandleStartWalkAnimation
.public Player__HandleActiveWalkAnimation
.public Player__HandleFallOffSurface
.public Player__Action_LandOnGround
.public Player__Action_RainbowDashRing
.public Player__ApplySlopeForces
.public Player__OnGroundIdle
.public Player__OnGroundMove
.public Player__Action_Launch
.public Player__PerformTrick
.public Player__Action_Grind
.public Player__Action_Die
.public Player__Action_Warp
.public Player__Action_DestroyAttackRecoil
.public Player__Action_AttackRecoil
.public Player__Action_Knockback_NoHurt
.public Player__Action_FinishMission
.public Player__HandleGroundMovement
.public Player__HandleAirMovement
.public Player__HandleRollingForces
.public Player__OnDefend_Regular
.public Player__Hurt
.public Player__Action_Boost
.public Player__Action_StopBoost
.public Player__Action_SuperBoost
.public Player__Action_StopSuperBoost
.public CreatePlayerBoostCollider
.public Player__UseUpsideDownGravity
.public Player__Func_201301C
.public Player__SetP2Offset
.public Player__GetPlayerCount
.public Player__Destructor
.public Player__ReadInput
.public Player__ReadInputFromValue
.public Player__Func_20133B8
.public Player__Func_2013630
.public Player__Func_20138F4
.public Player__Func_2013948
.public Player__HandleCollisionBounds
.public Player__In_Default
.public Player__Last_Default
.public Player__SpriteCallback_Default
.public Player__Draw
.public Player__DrawAfterImages
.public Player__State_GroundIdle
.public Player__State_GroundMove
.public Player__Action_Crouch
.public Player__State_Crouch
.public Player__Action_Roll
.public Player__State_Roll
.public Player__Action_StartSpindash
.public Player__State_Spindash
.public Player__Action_Jump
.public Player__Action_JumpDash
.public Player__State_Air
.public Player__State_Death
.public Player__State_DeathReset
.public Player__State_Warp
.public Player__State_Hurt
.public Player__State_HurtSnowboard
.public Player__State_Grinding
.public Player__Action_TrickFinisherVertical
.public Player__Action_TrickFinisherHorizontal
.public PLayer__PerformGrindTrick
.public Player__Action_HomingAttack_Sonic
.public Player__State_HomingAttack
.public Player__Action_FlameHover
.public Player__State_FlameHover
.public Player__HandleAirDrag
.public Player__HandleZMovement
.public Player__HandleLapEventManager
.public Player__HandleLapStageWrap
.public Player__HandleMaxPush
.public Player__HandleForceSurfaceAttach
.public Player__HandleTensionDrain
.public Player__GiveScore
.public Player__ApplyClingWeight
.public Player__IsBalancing
.public Player__FinishTurningSkidding
.public Player__HandleSuperBoost
.public Player__HandleBoost
.public Player__HandleHomingTarget
.public Player__HandleGrinding
.public Player__HandleWaterEntry
.public Player__HandleGravitySwapping
.public Player__HandlePressure
.public Player__HandleTimeLimits
.public Player__HandleMissionComplete
.public PlayerBoostCollider_State_ActiveLifetime
.public SetBoostColliderToTrackPlayer
.public PlayerBoostCollider_State_ActiveBoosting
.public Player__ReceivePacket
.public Player__SendPacket
.public Player__WriteGhostFrame
.public Player__ReadGhostFrame
.public PlayPlayerJingle
.public PlayerJingle_Destructor
.public PlayerJingle_Main
.public Player__Action_AllowTrickCombos
.public Player__Action_StageStartSnowboard
.public Player__State_StageStartSnowboard
.public Player__Action_Spring
.public Player__Action_GimmickLaunch
.public Player__Gimmick_201B418
.public Player__Action_FollowParent
.public Player__State_FollowParent
.public Player__Action_DashRing
.public Player__Action_JumpDashLaunch
.public Player__Action_SpringboardLaunch
.public Player__CheckOnCorkscrewPath
.public Player__Action_CorkscrewPath
.public Player__State_CorkscrewPath
.public Player__HandleCorkscrewPathH
.public Player__HandleCorkscrewPathV
.public Player__Action_PipeEnter
.public Player__State_PipeTravel
.public Player__Action_PipeExit
.public Player__Action_RotatingHanger
.public Player__State_RotatingHanger
.public Player__Action_SwingRope
.public Player__State_SwingRope
.public Player__Action_MushroomBounce
.public Player__Action_TripleGrindRailStartSpring
.public Player__State_TripleGrindRailStartSpring
.public Player__Action_TripleGrindRailEndSpring
.public Player__State_TripleGrindRailEndSpring
.public Player__Gimmick_TripleGrindRail
.public Player__State_TripleGrindRail
.public Player__HandleRideTripleGrindRail
.public Player__OnDefend_TripleGrindRail
.public Player__PrepareTripleGrindRailExit
.public Player__State_ExitingTripleGrindRail
.public Player__Gimmick_WaterRun
.public Player__State_WaterRun
.public Player__Action_SteamFan
.public Player__State_SteamFan
.public Player__Action_PopSteam
.public Player__State_PopSteam
.public Player__Action_DreamWing
.public Player__State_DreamWing
.public Player__Action_LargePiston1
.public Player__State_LargePiston1
.public Player__Action_LargePiston2
.public Player__State_LargePiston2
.public Player__Action_IcicleGrab
.public Player__State_IcicleGrab
.public Player__Action_IceSlide
.public Player__State_IceSlide
.public Player__State_IceSlideLaunch
.public Player__Action_EnableSnowboard
.public Player__Action_LoseSnowboard
.public Player__Action_Flipboard
.public Player__Action_DiveStandStood
.public Player__UpdateDiveStandState
.public Player__HandleDiveStandStood
.public Player__State_DiveStand_GroundMove
.public Player__State_DiveStand_GroundIdle
.public Player__State_DiveStand_Roll
.public Player__State_DiveStand_Spindash
.public Player__State_DiveStand_Crouch
.public Player__Action_DiveStandGrab
.public Player__State_DiveStandGrab
.public Player__Action_DiveStandLaunch
.public Player__Action_EnterHalfpipe
.public Player__State_Halfpipe
.public Player__Func_2020C00
.public Player__Func_2020DB8
.public Player__Action_ExitHalfpipe
.public Player__Action_GhostTree
.public Player__Action_SpringCrystal
.public Player__Action_CraneGrab
.public Player__Action_Winch
.public Player__State_Winch
.public Player__Action_EnterTruck
.public Player__State_EnterTruck
.public Player__Action_TruckLaunch
.public Player__State_TruckRide
.public Player__OnDefend_TruckRide
.public Player__Func_2021A84
.public Player__Func_2021AE8
.public Player__Func_2021B44
.public Player__Action_AnchorRope
.public Player__State_AnchorRope
.public Player__Action_BarrelGrab
.public Player__State_BarrelGrab
.public Player__Action_TrampolineLand
.public Player__State_TrampolineLand
.public Player__Action_TrampolineBounce
.public Player__Gimmick_2022108
.public Player__State_CannonEnter_FallInto
.public Player__State_CannonEnter_WalkInto
.public Player__State_CannonEnter_RotateInto
.public Player__State_InsideCannon
.public Player__Action_FireCannon
.public Player__State_CannonLaunched
.public Player__Action_ExitCannonPath
.public Player__Action_EnterCannonRingTrigger
.public Player__Action_ExitCannonRingTrigger
.public Player__Gimmick_JumpBox
.public Player__State_JumpBox
.public Player__Action_JumpBoxLaunch
.public Player__Action_JumpBoxPlaneSwitchLaunch
.public Player__State_JumpBoxPlaneSwitchLaunch
.public Player__Action_PlaneSwitchSpring
.public Player__State_PlaneSwitchSpring
.public Player_Action_EnterFarPlane
.public Player__Action_EnterSlingshot
.public Player__State_Slingshot
.public Player__Action_RideDolphin
.public Player__State_DolphinRide
.public Player__Action_FinalDolphinHoop
.public Player__State_ExitDolphinRide
.public Player__LeaveDolphinRide
.public Player__OnDefend_DolphinRide
.public Player__Action_DolphinHoop
.public Player__Action_HoverCrystal
.public Player__State_HoverCrystal
.public Player__Action_BalloonRide
.public Player__State_BalloonRide
.public Player__Action_WaterGun
.public Player__State_WaterGun
.public Player__Action_Bungee
.public Player__State_Bungee
.public Player__Action_SpringRope
.public Player__State_SpringRope
.public CreateRingManager
.public CreateSpillRing
.public CreateStageRing3D
.public CreateStageRing2D
.public CreateLoseRingEffect
.public GetRingManagerWork
.public SetStageRingScale
.public GetStageRingScale
.public HandleRingMagnetEffect
.public CreateRingInstance
.public DestroyRingInstance
.public AddRingToStageList
.public RemoveRingFromStageList
.public AddRingToTwinkleList
.public RemoveRingFromTwinkleList
.public AddRingToAttractList
.public RemoveRingFromAttractList
.public AddRingToSpillList
.public RemoveRingFromSpillList
.public RingManager_Destructor
.public RingManager_Main
.public RingManager_StageCollide_Flat
.public RingManager_StageCollide_Boss
.public RingManager_DrawRing_ZoneAct
.public RingManager_DrawRing_BossFlat
.public RingManager_DrawRing_BossCircular
.public RingManager_DrawSparkle_ZoneAct
.public RingManager_DrawSparkle_BossFlat
.public RingManager_DrawSparkle_BossCircular
.public RingManager_RectCollide_Flat
.public RingManager_RectCollide_Circular
.public GameObject__InitFromObject
.public GameObject__Destructor
.public GameObject__SetAnimation
.public GameObject__SpawnObject
.public GameObject__ProcessReceivedPackets_ItemBoxes
.public GameObject__ProcessReceivedPackets_Enemies
.public GameObject__SendPacket
.public GameObject__SpawnExplosion
.public GameObject__OnDestroyEnemy
.public GameObject__OnDefend_Enemy
.public GameObject__In_Default
.public GameObject__SpriteCallback_Default
.public GameObject__Collide_Default
.public GameObject__BoostImpactEnemy
.public GameObject__State_BoostImpactSpin
.public GameObject__GetNextTempObjID
.public GameObject__ReleaseTempObj
.public GameObject__ProcessPacketActions
.public GameObject__BadnikBreak
.public GameObject__TransformWorldToScreen
.public CreateEffectTask
.public InitEffectTaskViewCheck
.public LoadEffectTask3DAsset
.public EffectTask3D_State_Init
.public EffectTask3D_Draw_3D
.public EffectTask3D_Destructor
.public EffectTask_State_DestroyAfterAnimation
.public EffectTask_State_DestroyAfterTime
.public EffectTask_State_MoveTowardsZeroX
.public EffectTask_State_TrackParent
.public CreateEffectExplosion
.public CreateEffectExplosionHazard
.public EffectExplosionHazard_State_Active
.public CreateEffectFound
.public CreateEffectVitality
.public CreateEffectEnemyDebris
.public EffectEnemyDebris_State_Active
.public CreateEffectWaterExplosion
.public CreateEffectGroundExplosion
.public CreateEffectBattleBurst
.public CreateEffectSteamBlasterSmoke
.public EffectSteamBlasterSmoke_State_Active
.public CreateEffectSteamBlasterSteam
.public EffectSteamBlasterSteam_State_Active
.public CreateEffectWaterSplash
.public CreateEffectWaterWake
.public EffectWaterGush__Create
.public EffectWaterBubble__Create
.public EffectWaterBubble__State_202A198
.public EffectCoralDebris__Create
.public EffectBridgeDebris__Create
.public EffectIceSparkles__Create
.public EffectStartDash__Create
.public EffectBreakableObjDebris__Create
.public EffectGoalJewel__Create
.public EffectBouncyMushroomPuff__Create
.public EffectFlowerPipePetal__Create
.public EffectFlowerPipePetal__State_202AC78
.public EffectFlowerPipeSeed__Create
.public EffectFlowerPipeSeed__State_202ADFC
.public EffectSteamDust__Create
.public EffectSteamEffect__Create
.public EffectCreateSteamFan
.public EffectSteamFan__State_202B324
.public EffectPiston__Create
.public EffectIceBlockDebris__Create
.public EffectTruckSparkles__Create
.public EffectTruckSparkles__Destructor
.public EffectTruckSparkles__State_202B86C
.public EffectTruckSparkles__State_202BA48
.public EffectTruckSparkles__Draw
.public EffectAvalanche__Create
.public EffectAvalancheDebris__Create
.public EffectTruckJewel__Create
.public EffectTruckJewel__State_202C06C
.public EffectTruckJewel__Draw
.public PirateShipCannonBlast__Create
.public EffectCannonFireSpeedLines__Create
.public EffectCannonFireSpeedLines__Destructor
.public EffectCannonFireSpeedLines__State_Active
.public EffectCannonFireSpeedLines__Draw
.public EffectSlingDust__Create
.public EffectSailboatBazookaSmoke__Create
.public EffectHoverCrystalSparkle__Create
.public EffectHoverCrystalSparkle__Destructor
.public EffectHoverCrystalSparkle__State_202CFB8
.public EffectHoverCrystalSparkle__Draw
.public EffectIceSparklesSpawner__Create
.public EffectIceSparklesSpawner__State_202D19C
.public EffectMedal__Create
.public EffectMedal__Destructor
.public EffectMedal__State_202D514
.public EffectRingSparkle__Create
.public EffectRingSparkle__Destructor
.public EffectButtonPrompt__Create
.public EffectButtonPrompt__State_DPadUp
.public EffectButtonPrompt__State_JumpButton
.public HandleEffectZScale
.public CreateEffectWaterSplashForPlayer
.public CreateEffectWaterWakeForPlayer
.public CreateEffectWaterWakeForPlayer2
.public CreateEffectWaterBubbleForPlayer
.public CreateEffectBrakeDustForPlayer
.public CreateEffectBrakeDust
.public CreateEffectBrakeDust3D
.public CreateEffectBrakeDust3DForPlayer
.public CreateEffectSmallSpindashDust
.public CreateEffectBigSpindashDust
.public CreateEffectSpindashDust
.public CreateEffectSpindashDust3D
.public CreateEffectSpindashDust3DForBossArena
.public EffectSpindashDust3D_State_SmallDust
.public EffectSpindashDust3D_State_BigDust
.public CreateEffectFlameDustForPlayer
.public CreateEffectFlameDustForPlayer2
.public CreateEffectFlameDustForPlayer3
.public CreateEffectFlameDustForPlayerBlaze
.public CreateEffectFlameDust
.public EffectFlameDust_State_Type2
.public CreateEffectFlameJetForPlayer
.public CreateEffectFlameJet
.public EffectFlameJet_State_Active
.public CreateEffectFlameJet3D
.public CreateEffectFlameJet3DForPlayer
.public EffectFlameJet3D_State_Active3D
.public CreateEffectHummingTopForPlayer
.public CreateEffectHummingTop
.public EffectHummingTop_State_Active
.public CreateEffectBoostSuperStartFX
.public CreateEffectBoostAura
.public CreateEffectBoostParticle
.public CreateEffectBoostStartFX
.public CreateEffectBoost
.public EffectBoost_Draw_Super
.public EffectBoost_State_Aura
.public CreateEffectPlayerTrail
.public EffectPlayerTrail_Destructor
.public SetPlayerTrailOffset
.public EffectPlayerTrail_State_Init
.public EffectPlayerTrail_State_Active
.public EffectPlayerTrail_State_Finish
.public RecordPlayerTrailBuffer
.public HandlePlayerTrailOffset
.public EffectPlayerTrail_Draw
.public CreateEffectRegularShieldForPlayer
.public CreateEffectRegularShield
.public EffectRegularShield_State_Active
.public CreateEffectMagnetShieldForPlayer
.public CreateEffectMagnetShield
.public EffectMagnetShield_State_Active
.public CreateEffectGrindSparkForPlayer
.public CreateEffectGrindSpark
.public EffectGrindSpark_State_FollowParent
.public CreateEffectWaterGrindSpark
.public CreateEffectTrickSparkleForPlayer
.public CreateEffectTrickSparkle
.public CreateEffectInvincible
.public EffectInvincible_State_Active
.public CreateEffectInvincibleSparkle
.public EffectInvincibleSparkle_State_SparkleOrbit
.public CreateSmallEffectSnowSmokeForPlayer
.public CreateLargeEffectSnowSmokeForPlayer
.public CreateEffectSnowSmoke
.public CreateEffectDrownAlertForPlayer
.public CreateEffectDrownAlert
.public EffectDrownAlert_State_Rising
.public CreateEffectPlayerIcon
.public EffectPlayerIcon_State_TrackParent
.public CreateEffectBattleAttack
.public EffectBattleAttack_State_SlowMo
.public EffectBattleAttack_State_Confusion
.public EffectBattleAttack_State_TensionGain
.public EffectBattleAttack_State_TensionDrain
.public StarCombo__SpawnConfetti
.public StarCombo__Destroy
.public StarCombo__PerformTrick
.public StarCombo__FinishTrickCombo
.public StarCombo__FailCombo
.public StarCombo__InitScoreBonus
.public StarCombo__DisplayConfetti
.public StarCombo__SetStarAnimation
.public StarCombo__Create
.public StarCombo__Destructor
.public StarCombo__Main
.public StarCombo__UpdateCombo