-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsymbols.map
12868 lines (12864 loc) · 562 KB
/
symbols.map
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
Start Length Name Class
0001:00000000 000002720H .init CODE
0004:00000000 000000300H extab DATA
0005:00000000 000000480H extabindex DATA
0002:00000000 00063CE80H .text CODE
0006:00000000 000000E80H .ctors DATA
0007:00000000 000000020H .dtors DATA
0008:00000000 000017BC0H .rodata DATA
0009:00000000 0000CBEE0H .data DATA
0003:00000000 0000A6CA0H .bss BSS
0001:00000000 000001A60H .sdata DATA
0003:00000000 000005F20H .sbss DATA
0001:00000000 00000C320H .sdata2 DATA
0003:00000000 0000001C8H .sbss2 DATA
Address Publics by Value
0001:80004050 __start
0001:80004210 __init_registers
0001:800042A0 __init_data
0001:80004360 __init_hardware
0001:80004744 aMetrowerksTarg
0002:80006EA0 nullsub_27
0002:80006EC0 identity__Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>Fv
0002:80006F00 mult__Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>CFRCQ29JGeometry8TVec3<f>RQ29JGeometry8TVec3<f>
0002:80006F90 set<f>__Q29JGeometry8TVec3<f>Ffff_v
0002:80007060 invert__Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>FRCQ29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>
0002:80007380 concat__Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>FRCQ29JGeometry13SMatrix34C<f>RCQ29JGeometry13SMatrix34C<f>
0002:80007930 getQuat__Q29JGeometry64TRotation3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>CFRQ29JGeometry9TQuat4<f>
0002:80007B60 sqrt__Q29JGeometry8TUtil<f>Ff
0002:80007BA0 set<f>__Q29JGeometry8TVec4<f>Fffff_v
0002:80007BC0 setEuler__Q29JGeometry9TQuat4<f>Ffff
0002:80007D10 setRotate__Q29JGeometry9TQuat4<f>FRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80007E30 slerp__Q29JGeometry9TQuat4<f>FRCQ29JGeometry9TQuat4<f>f
0002:80008390 startLevelSound__2MRFPC9LiveActorPCclll
0002:800086A0 changeBckForEffectKeeper__27@unnamed@LiveActorUtil_cpp@FPC9LiveActor
0002:80008810 startBck__2MRFPC9LiveActorPCcPCc
0002:80008C70 tryStartAllAnim__2MRFPC9LiveActorPCc
0002:80008CD0 isActionEnd__2MRFPC9LiveActor
0002:80008FA0 startBckNoInterpole__2MRFPC9LiveActorPCc
0002:80009090 tryStartBck__2MRFPC9LiveActorPCcPCc
0002:800098F0 isBrkStopped__2MRFPC9LiveActor
0002:800099E0 setBckFrameAtRandom__2MRFPC9LiveActor
0002:80009B50 setBtkFrameAndStop__2MRFPC9LiveActorf
0002:80009BB0 setBrkFrameAndStop__2MRFPC9LiveActorf
0002:80009CD0 setBvaFrameAndStop__2MRFPC9LiveActorf
0002:8000A000 startBtk__2MRFPC9LiveActorPCc
0002:8000A010 startBrk__2MRFPC9LiveActorPCc
0002:8000A020 startBtp__2MRFPC9LiveActorPCc
0002:8000A030 startBpk__2MRFPC9LiveActorPCc
0002:8000A040 startBva__2MRFPC9LiveActorPCc
0002:8000A4E0 stopBck__2MRFPC9LiveActor
0002:8000A510 stopBtk__2MRFPC9LiveActor
0002:8000A5F0 setBrkRate__2MRFPC9LiveActorf
0002:8000A730 setBckFrame__2MRFPC9LiveActorf
0002:8000AD40 isExistBck__2MRFPC9LiveActorPCc
0002:8000AFA0 getBtkCtrl__2MRFPC9LiveActor
0002:8000AFB0 getBrkCtrl__2MRFPC9LiveActor
0002:8000AFC0 getBtpCtrl__2MRFPC9LiveActor
0002:8000AFD0 getBpkCtrl__2MRFPC9LiveActor
0002:8000AFE0 getBvaCtrl__2MRFPC9LiveActor
0002:8000AFF0 updateMaterial__2MRFP9LiveActor
0002:8000B000 createActorCameraName__29@unnamed@ActorCameraUtil_cpp@FPcUlPC9LiveActorPC15ActorCameraInfo
0002:8000B040 createMultiActorCameraName__29@unnamed@ActorCameraUtil_cpp@FPcUlPC9LiveActorPC15ActorCameraInfoPCc
0002:8000B140 initActorCamera__2MRFPC9LiveActorRC12JMapInfoIterPP15ActorCameraInfo
0002:8000B150 initMultiActorCamera__2MRFPC9LiveActorRC12JMapInfoIterPP15ActorCameraInfoPCc
0002:8000B1D0 initMultiActorCameraNoInit__2MRFPC9LiveActorP15ActorCameraInfoPCc
0002:8000B260 initActorCameraProgrammable__2MRFPC9LiveActor
0002:8000B270 startActorCameraNoTarget__2MRFPC9LiveActorPC15ActorCameraInfol
0002:8000B2D0 __ct__15CameraTargetArgFv
0002:8000B440 startMultiActorCameraNoTarget__2MRFPC9LiveActorPC15ActorCameraInfoPCcl
0002:8000B5D0 startMultiActorCameraTargetOther__2MRFPC9LiveActorPC15ActorCameraInfoPCcRC15CameraTargetArgl
0002:8000B900 endActorCameraAtLanding__2MRFPC9LiveActorPC15ActorCameraInfol
0002:8000BAC0 initAnimCamera__2MRFPC9LiveActorPC15ActorCameraInfoPCcP14ResourceHolder
0002:8000BCE0 getMultiActorCameraFrames__2MRFPC9LiveActorPC15ActorCameraInfoPCc
0002:8000BD90 startRumbleWithShakeCameraWeak__2MRFPC9LiveActorPCcPCcff
0002:8000C000 getValue<f>__12JMapInfoIterCFPCcPf_b
0002:8000C080 getValue<l>__12JMapInfoIterCFPCcPl_b
0002:8000C150 __ct__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>
0002:8000C200 initModelManagerWithAnm__9LiveActorFPCcPCc
0002:8000CE80 initDefaultPos__2MRFP9LiveActorRC12JMapInfoIter
0002:8000CFB0 isValid__12JMapInfoIterCFv
0002:8000D680 __ct__10JUTTextureFPC7ResTIMGUc
0002:8000D750 dot__Q29JGeometry8TVec3<f>CFRCQ29JGeometry8TVec3_f_
0002:8000D770 scale__Q29JGeometry8TVec3<f>FfRCQ29JGeometry8TVec3<f>
0002:8000D7A0 inv_sqrt__Q29JGeometry8TUtil<f>Ff
0002:8000DAD0 calcDistance__2MRFPC9HitSensorPC9HitSensorPQ29JGeometry8TVec3<f>
0002:8000DB80 PSVECSubtract__14JMathInlineVECFPC3VecPC3VecP3Vec
0002:8000DBB0 zero__Q29JGeometry8TVec3<f>Fv
0002:8000DDA0 calcDistanceToPlayer__2MRFPC9LiveActor
0002:8000DF50 squared__Q29JGeometry8TVec3<f>CFRCQ29JGeometry8TVec3<f>
0002:8000DFD0 isNear__2MRFPC9LiveActorRCQ29JGeometry8TVec3<f>f
0002:8000E020 isNearPlayer__2MRFPC9LiveActorf
0002:8000E080 isNearPlayerAnyTime__2MRFPC9LiveActorf
0002:8000E0E0 isNearPlayer__2MRFRCQ29JGeometry8TVec3<f>f
0002:8000E240 squared__Q29JGeometry8TVec3<f>CFv
0002:8000E340 calcFrontVec__2MRFPQ29JGeometry8TVec3<f>PC9LiveActor
0002:8000E3A0 calcUpVec__2MRFPQ29JGeometry8TVec3<f>PC9LiveActor
0002:8000E400 calcSideVec__2MRFPQ29JGeometry8TVec3<f>PC9LiveActor
0002:8000E6E0 scale__Q29JGeometry8TVec3<f>Ff
0002:8000E710 add__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>
0002:8000E740 __as__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>
0002:8000E9C0 set<f>__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>_v
0002:8000F020 __ct<f>__Q29JGeometry8TVec3<f>Ffff_Pv
0002:8000F440 negateInternal__9JGeometryFPCfPf
0002:8000F460 isInWater__2MRFPC9LiveActorRCQ29JGeometry8TVec3<f>
0002:8000F4B0 isInDeath__2MRFPC9LiveActorRCQ29JGeometry8TVec3<f>
0002:8000F540 makeMtxTR__2MRFPA4_fPC9LiveActor
0002:8000F560 makeMtxTRS__2MRFPA4_fPC9LiveActor
0002:8000F5B0 makeMtxTransRotateY__2MRFPA4_fPC9LiveActor
0002:8000F6D0 calcMtxFromGravityAndZAxis__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>PC9LiveActorRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8000FB00 getXDir__Q29JGeometry64TRotation3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>CFRQ29JGeometry8TVec3<f>
0002:8000FB20 calcActorAxisY__2MRFPQ29JGeometry8TVec3<f>PC9LiveActor
0002:80010070 makeQuatAndFrontFromRotate__2MRFPQ29JGeometry9TQuat4<f>PQ29JGeometry8TVec3<f>PC9LiveActor
0002:800100C0 getZDir__Q29JGeometry9TQuat4<f>CFRQ29JGeometry8TVec3<f>
0002:80010690 resetPosition__2MRFP9LiveActor
0002:80010710 resetPosition__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>
0002:80010970 calcVelocityMoveToDirection__2MRFPQ29JGeometry8TVec3<f>PC9LiveActorRCQ29JGeometry8TVec3<f>f
0002:80010F00 addVelocityMoveToTarget__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>f
0002:80011100 addVelocityAwayFromTarget__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>f
0002:800114D0 addVelocityToGravity__2MRFP9LiveActorf
0002:80011670 addVelocityKeepHeight__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>fff
0002:80011BB0 setLength__Q29JGeometry8TVec3<f>Ff
0002:80012270 reboundVelocityFromCollision__2MRFP9LiveActorfff
0002:80012400 zeroVelocity__2MRFP9LiveActor
0002:80012430 attenuateVelocity__2MRFP9LiveActorf
0002:80012850 sendMsgPushAndKillVelocityToTarget__2MRFP9LiveActorP9HitSensorP9HitSensor
0002:80012F60 turnDirectionDegree__2MRFPC9LiveActorPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:80012FB0 cosDegree__2MRFf
0002:80013070 turnDirectionToTargetDegree__2MRFPC9LiveActorPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:80013990 __ct<i>__Q29JGeometry8TVec3<f>Fiii_Pv
0002:80013DF0 atan2__3stdFff
0002:80013F70 moveAndTurnToPlayer__2MRFP9LiveActorffff
0002:80014700 addHitSensor__2MRFP9LiveActorPCcUlUsfRCQ29JGeometry8TVec3<f>
0002:80014800 addHitSensorMapObj__2MRFP9LiveActorPCcUsfRCQ29JGeometry8TVec3<f>
0002:800148C0 addHitSensorEnemy__2MRFP9LiveActorPCcUsfRCQ29JGeometry8TVec3<f>
0002:80014940 addHitSensorNpc__2MRFP9LiveActorPCcUsfRCQ29JGeometry8TVec3<f>
0002:80014980 addHitSensorEye__2MRFP9LiveActorPCcUsfRCQ29JGeometry8TVec3<f>
0002:80014A60 addHitSensorPosMapObj__2MRFP9LiveActorPCcUsfPCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80014B20 addHitSensorMtx__2MRFP9LiveActorPCcUlUsfPA4_fRCQ29JGeometry8TVec3<f>
0002:80014EA0 addHitSensorAtJointEnemy__2MRFP9LiveActorPCcPCcUsfRCQ29JGeometry8TVec3<f>
0002:80014F30 addHitSensorAtJointEnemyAttack__2MRFP9LiveActorPCcPCcUsfRCQ29JGeometry8TVec3<f>
0002:80015200 addBodyMessageSensor__2MRFP9LiveActorUl
0002:80015390 tryUpdateHitSensorsAll__2MRFP9LiveActor
0002:800153D0 updateHitSensorsAll__2MRFP9LiveActor
0002:800153E0 j_isType__9HitSensorCFUl
0002:80015490 getTaken__2MRFPC9LiveActor
0002:80015550 getSensor__2MRFP9LiveActorPCc
0002:80015670 validateHitSensors__2MRFP9LiveActor
0002:80015690 invalidateHitSensors__2MRFP9LiveActor
0002:800156B0 j_validate__9HitSensorFv
0002:800156C0 j_invalidate__9HitSensorFv
0002:800156D0 validateHitSensor__2MRFP9LiveActorPCc
0002:80015700 invalidateHitSensor__2MRFP9LiveActorPCc
0002:80015810 clearHitSensors__2MRFP9LiveActor
0002:80015820 nullsub_120
0002:80015880 getSensorHost__2MRFPC9HitSensor
0002:80015890 isSensor__2MRFPC9HitSensorPCc
0002:800158D0 isSensorPlayer__2MRFPC9HitSensor
0002:800158E0 isSensorBinder__2MRFPC9HitSensor
0002:80015910 isSensorRide__2MRFPC9HitSensor
0002:80015940 isSensorPlayerOrRide__2MRFPC9HitSensor
0002:80015A40 isSensorEnemy__2MRFPC9HitSensor
0002:80015A80 isSensorNpc__2MRFPC9HitSensor
0002:80015AA0 isSensorMapObj__2MRFPC9HitSensor
0002:80015C10 getSensor__2MRCFPCc
0002:80015CE0 calcSensorDirectionNormalize__2MRFPQ29JGeometry8TVec3<f>PC9HitSensorPC9HitSensor
0002:80015E20 sendArbitraryMsg__2MRFUlP9HitSensorP9HitSensor
0002:80015E30 sendMsgPush__2MRFP9HitSensorP9HitSensor
0002:80016190 sendMsgEnemyAttackElectric__2MRFP9HitSensorP9HitSensor
0002:800161A0 sendMsgEnemyAttackFreeze__2MRFP9HitSensorP9HitSensor
0002:800161B0 sendMsgEnemyAttackExplosion__2MRFP9HitSensorP9HitSensor
0002:800161E0 sendMsgLockOnStarPieceShoot__2MRFP9HitSensorP9HitSensor
0002:800162D0 sendSimpleMsgToActor__2MRFUlP9LiveActor
0002:80016350 sendMsgToBindedSensor__2MRFUlP9LiveActorP9HitSensor
0002:800166D0 sendMsgToAllLiveActor__2MRFUlP9LiveActor
0002:80016A60 getGroundSensor__2MRFPC9LiveActor
0002:80016A70 getRoofSensor__2MRFPC9LiveActor
0002:80016A80 getWallSensor__2MRFPC9LiveActor
0002:80016B10 isMsgPlayerSpinAttack__2MRFUl
0002:80016B30 isMsgPlayerTrample__2MRFUl
0002:80016B40 isMsgPlayerHipDrop__2MRFUl
0002:80016BE0 isMsgJetTurtleAttack__2MRFUl
0002:80016D80 isMsgItemGet__2MRFUl
0002:80016E30 isMsgInhaleBlackHole__2MRFUl
0002:80016EA0 isMsgToEnemyAttackBlow__2MRFUl
0002:80016EC0 isMsgToEnemyAttackTrample__2MRFUl
0002:80016F00 isMsgSpinStormRange__2MRFUl
0002:80016F50 isMsgLockOnStarPieceShoot__2MRFUl
0002:80016F80 isMsgItemPull__2MRFUl
0002:80016FB0 isMsgStarPieceAttack__2MRFUl
0002:80016FC0 isMsgStarPieceReflect__2MRFUl
0002:800171F0 initShadowFromCSV__2MRFP9LiveActorPCcb
0002:80017370 getShadowController__11ActorShadowFPC9LiveActorPCc
0002:800173C0 createShadowControllerVolumeParam__11ActorShadowFP9LiveActorPCc
0002:80017460 createShadowControllerSuefaceParam__11ActorShadowFP9LiveActorPCc
0002:80017530 getShadowVolumeSphere__11ActorShadowFPC9LiveActorPCc
0002:800175C0 getShadowVolumeDrawer__11ActorShadowFPC9LiveActorPCc
0002:800175F0 getValue<PCc>__12JMapInfoIterCFPCcPPCc_b
0002:80017980 getValue<b>__12JMapInfoIterCFPCcPb_b
0002:80017A10 setUpShadowControlIsSyncShowFromCSV__11ActorShadowFP16ShadowControllerRC12JMapInfoIter
0002:80018600 def_80018560
0002:80018620 initShadowFromCSVWithInitShadowVolumeSphere__2MRFP9LiveActorPCc
0002:80018630 initShadowFromCSVWithoutInitShadowVolumeSphere__2MRFP9LiveActorPCc
0002:80018640 j_initShadowControllerList__9LiveActorFUl
0002:800186F0 addShadowVolumeCylinder__2MRFP9LiveActorPCcf
0002:800189E0 initShadowSurfaceCircle__2MRFP9LiveActorf
0002:80018A70 initShadowVolumeSphere__2MRFP9LiveActorf
0002:80018B00 initShadowVolumeOval__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>
0002:80018B70 initShadowVolumeCylinder__2MRFP9LiveActorf
0002:80018C20 setShadowDropPositionPtr__2MRFP9LiveActorPCcPCQ29JGeometry8TVec3<f>
0002:80018CB0 setShadowDropPositionAtJoint__2MRFP9LiveActorPCcPCcRCQ29JGeometry8TVec3<f>
0002:80018E90 setShadowDropLength__2MRFP9LiveActorPCcf
0002:80018ED0 setShadowProjection__2MRFP9LiveActorPCcRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>b
0002:80018FA0 setShadowVolumeSphereRadius__2MRFP9LiveActorPCcf
0002:800190A0 setShadowVolumeEndDropOffset__2MRFP9LiveActorPCcf
0002:800190E0 onShadowVolumeCutDropLength__2MRFP9LiveActorPCc
0002:80019110 onCalcShadow__2MRFP9LiveActorPCc
0002:80019150 offCalcShadow__2MRFP9LiveActorPCc
0002:80019190 onCalcShadowOneTime__2MRFP9LiveActorPCc
0002:800191D0 onCalcShadowAll__2MRFP9LiveActor
0002:80019230 offCalcShadowAll__2MRFP9LiveActor
0002:80019290 onCalcShadowOneTimeAll__2MRFP9LiveActor
0002:80019320 onCalcShadowDropGravityOneTime__2MRFP9LiveActorPCc
0002:80019350 onCalcShadowDropPrivateGravity__2MRFP9LiveActorPCc
0002:80019380 onCalcShadowDropPrivateGravityOneTime__2MRFP9LiveActorPCc
0002:80019600 invalidateShadow__2MRFP9LiveActorPCc
0002:80019700 invalidateShadowAll__2MRFP9LiveActor
0002:80019B20 isShadowProjected__2MRFPC9LiveActorPCc
0002:80019BD0 getShadowProjectionLength__2MRFPC9LiveActorPCc
0002:80019E00 clamp__2MRFlll
0002:80019F40 nullsub_198
0002:8001A080 updateActorStateAndNextNerve__2MRFP9LiveActorP23ActorStateBaseInterfacePC5Nerve
0002:8001A540 useStageSwitchReadA__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A550 useStageSwitchReadB__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A570 useStageSwitchAwake__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A580 useStageSwitchWriteA__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A620 useStageSwitchWriteDead__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A670 needStageSwitchReadA__2MRFP9LiveActorRC12JMapInfoIter
0002:8001A710 isValidSwitchA__2MRFPC9LiveActor
0002:8001A760 isValidSwitchB__2MRFPC9LiveActor
0002:8001A800 isValidSwitchDead__2MRFPC9LiveActor
0002:8001A8A0 isOnSwitchB__2MRFPC9LiveActor
0002:8001A940 onSwitchA__2MRFP9LiveActor
0002:8001A950 onSwitchB__2MRFP9LiveActor
0002:8001A960 onSwitchDead__2MRFP9LiveActor
0002:8001AA10 useStageSwitchReadAppear__2MRFP9LiveActorRC12JMapInfoIter
0002:8001AB20 listenStageSwitchOnA__2MRFP9LiveActorRCQ22MR11FunctorBase
0002:8001AB30 listenStageSwitchOnOffA__2MRFP9LiveActorRCQ22MR11FunctorBaseRCQ22MR11FunctorBase
0002:8001AB50 listenStageSwitchOnB__2MRFP9LiveActorRCQ22MR11FunctorBase
0002:8001AB70 listenStageSwitchOnOffB__2MRFP9LiveActorRCQ22MR11FunctorBaseRCQ22MR11FunctorBase
0002:8001AE90 moveVolumeStageBGM__2MRFfUl
0002:8001B690 moveVolumeSubBGM__2MRFfUl
0002:8001B91C def_8001B7B4
0002:8001C530 calcNormalizedScreenPosToScreenPos__24@unnamed@CameraUtil_cpp@FPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8001C5F0 getScreenHeight__2MRFv
0002:8001C680 calcScreenPosition__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8001C770 calcNormalizedScreenPositionFromView__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8001C8B0 calcWorldPositionFromScreen__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec2<f>f
0002:8001C980 __ct<f>__Q29JGeometry8TVec2<f>Fff_Pv
0002:8001CBF0 subtract__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>
0002:8001CD10 getCameraViewMtx__2MRFv
0002:8001CD40 getCameraInvViewMtx__2MRFv
0002:8001CD70 getCameraProjectionMtx__2MRFv
0002:8001CDD0 getNearZ__2MRFv
0002:8001CE30 getFovy__2MRFv
0002:8001CEC0 setNearZ__2MRFf
0002:8001CF90 getCamPos__2MRFv
0002:8001D000 getCamXdir__2MRFv
0002:8001D070 getCamYdir__2MRFv
0002:8001D0E0 getCamZdir__2MRFv
0002:8001D160 __mi__Q29JGeometry8TVec3<f>CFv
0002:8001D180 isExistMirrorCamera__2MRFv
0002:8001D190 getMirrorCameraViewMtx__2MRFv
0002:8001D1C0 getMirrorModelTexMtx__2MRFv
0002:8001D1F0 completeCameraParameters__2MRFv
0002:8001D220 resetCameraMan__2MRFv
0002:8001D250 startCameraInterpolation__2MRFUl
0002:8001D290 declareEventCamera__2MRFPC15ActorCameraInfoPCc
0002:8001D2E0 endEventCamera__2MRFPC15ActorCameraInfoPCcbl
0002:8001D340 endEventCameraAtLanding__2MRFPC15ActorCameraInfoPCcl
0002:8001D860 declareEventCameraAnim__2MRFPC15ActorCameraInfoPCcPv
0002:8001DB90 startBlackHoleCamera__2MRFPCcRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8001DE40 declareLauncherFlightCamera__2MRFv
0002:8001DF20 endLauncherFlightCamera__2MRFv
0002:8001DF60 isActiveLauncherCamera__2MRFv
0002:8001DF90 isActiveLauncherFlightCamera__2MRFv
0002:8001DFC0 startSubjectiveCamera__2MRFl
0002:8001E040 declareEventCameraProgrammable__2MRFPCc
0002:8001E270 createRegisterName__24@unnamed@CameraUtil_cpp@FPC7NameObjUl
0002:8001E330 declareCameraRegisterVec__2MRFPC7NameObjUlPQ29JGeometry8TVec3<f>
0002:8001E890 resetCameraLocalOffset__2MRFv
0002:8001E8C0 overlayWithPreviousScreen__2MRFUl
0002:8001E9C0 startEventCameraNoTarget__2MRFPC15ActorCameraInfoPCcl
0002:8001EA80 startEventCamera__2MRFPC15ActorCameraInfoPCcRC15CameraTargetArgl
0002:8001EE80 startCSSound__2MRFPCcPCcl
0002:8001F330 do_getCurrentGroupId__7JKRHeapFv
0002:8001F340 do_changeGroupID__7JKRHeapFUc
0002:8001F350 dump_sort__7JKRHeapFv
0002:8001F360 tryRegisterDemoCast__2MRFP9LiveActorRC12JMapInfoIter
0002:8001F3B0 registerDemoActionFunctor__2MRFPC9LiveActorRCQ22MR11FunctorBasePCc
0002:8001F3C0 registerDemoActionNerve__2MRFPC9LiveActorPC5NervePCc
0002:8001F3D0 tryRegisterDemoActionFunctor__2MRFPC9LiveActorRCQ22MR11FunctorBasePCc
0002:8001F5A0 j_registerDemoActionFunctorFunction__12DemoFunctionFPC9LiveActorRCQ22MR11FunctorBasePCcPCc
0002:8001F650 registerDemoSimpleCastAll__2MRFP9LiveActor
0002:8001F680 isDemoCast__2MRFPC9LiveActorPCc
0002:8001F700 isRegisteredDemoActionAppear__2MRFPC9LiveActor
0002:8001F710 isRegisteredDemoActionNerve__2MRFPC9LiveActor
0002:8001F720 tryStartDemo__2MRFP9LiveActorPCc
0002:8001FE70 requestStartDemo__2MRFP9LiveActorPCcPC5NervePC5Nerve
0002:8001FF30 requestStartDemoWithoutCinemaFrame__2MRFP9LiveActorPCcPC5NervePC5Nerve
0002:800201C0 endDemo__2MRFP7NameObjPCc
0002:80020B40 isExistTimeKeepDemo__2MRFPCc
0002:80020B80 isDemoActive__2MRFv
0002:80020BB0 isDemoActive__2MRFPCc
0002:80020C20 canStartDemo__2MRFv
0002:80020C90 isTimeKeepDemoActive__2MRFv
0002:80021060 isPowerStarGetDemoActive__2MRFv
0002:80021280 __ct__Q29JGeometry8TVec3<f>Fv
0002:80022B70 addEffect__2MRFP9LiveActorPCc
0002:80022B90 getEffect__2MRFPC11LayoutActorPCc
0002:80022BA0 isExistEffectKeeper__2MRFPC9LiveActor
0002:80022BC0 emitEffect__2MRFP9LiveActorPCc
0002:80022BD0 emitEffectWithScale__2MRFP9LiveActorPCcfl
0002:80022E80 deleteEffect__2MRFP9LiveActorPCc
0002:80022E90 forceDeleteEffect__2MRFP9LiveActorPCc
0002:80022EA0 deleteEffectAll__2MRFP9LiveActor
0002:80022EB0 forceDeleteEffectAll__2MRFP9LiveActor
0002:80022EC0 isRegisteredEffect__2MRFPC9LiveActorPCc
0002:80022EE0 isEffectValid__2MRFPC9LiveActorPCc
0002:80022F20 onDrawEffect__2MRFP9LiveActor
0002:80022F30 offDrawEffect__2MRFP9LiveActor
0002:80022F60 pauseOffEffectAll__2MRFP9LiveActor
0002:80023050 setEffectHostSRT__2MRFP9LiveActorPCcPCQ29JGeometry8TVec3<f>PCQ29JGeometry8TVec3<f>PCQ29JGeometry8TVec3<f>
0002:80023110 setEffectHostMtx__2MRFP9LiveActorPCcPA4_f
0002:80023230 setEffectBaseScale__2MRFP9LiveActorPCcf
0002:80023270 setEffectColor__2MRFP9LiveActorPCcUcUcUcUcUcUc
0002:80023300 setEffectPrmColor__2MRFP9LiveActorPCcUcUcUc
0002:80023360 setEffectEnvColor__2MRFP9LiveActorPCcUcUcUc
0002:80023400 addEffectHitNormal__2MRFP9LiveActorPCc
0002:80023780 __ml__Q29JGeometry8TVec3<f>CFf
0002:80023880 getPlayerLeft__2MRFv
0002:80023950 isPlayerLuigi__2MRFv
0002:80023960 getStarPieceNum__2MRFv
0002:800239C0 addStarPiece__2MRFi
0002:80023B70 getCoinNum__2MRFv
0002:80024A60 hasPowerStarInCurrentStage__2MRFl
0002:80024AA0 isPowerStarGreenInCurrentStage__2MRFl
0002:80024C30 j_hasPowerStar__16GameDataFunctionFPCcl
0002:80024D50 j_calcCurrentPowerStarNum__2MR
0002:80025520 isFileExist__2MRFPCcb
0002:80025570 j_isFileExist__2MRFPCcb
0002:80025600 makeObjectArchiveFileName__2MRFPcUlPCc
0002:80025730 makeLayoutArchiveFileName__2MRFPcUlPCc
0002:80025800 makeLayoutArchiveFileNameFromPrefix__2MRFPcUlPCcb
0002:80025950 makeScenarioArchiveFileName__2MRFPcUlPCc
0002:80025B90 mountAsyncArchive__2MRFPCcP7JKRHeap
0002:80025BD0 receiveAllRequestedFile__2MRFv
0002:80025E80 __ct__9FootPrintFPCcll
0002:80025EE0 __ct__9FootPrintFPCcl
0002:80025F40 initMember__9FootPrintFll
0002:80026030 __ct__13FootPrintInfoFv
0002:80026040 setTexture__9FootPrintFP7ResTIMG
0002:80026550 __apl__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>
0002:800269E0 unk2__7NameObjFv
0002:800269F0 unk1__7NameObjFv
0002:80026B30 subtract__Q29JGeometry8TVec3<f>FRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80026C90 add__14FurDrawManagerFP7FurCtrlUc
0002:800272C0 calcLayerForm__7FurCtrlFv
0002:80027480 drawFur__7FurCtrlFv
0002:80027740 createFurMap__7FurCtrlFv
0002:800277C0 initFurParamFromDvd__2MRFP8FurParamP15DynamicFurParamPcUl
0002:80027A90 getFurDrawManager__2MRFv
0002:80027E10 update__9FurDrawerFv
0002:80027E30 calcValue__Q29FurDrawer11CLayerParamCFll
0002:80027EC0 setupMaterial__9FurDrawerCFP15DynamicFurParam
0002:80028590 setupLayerMaterial__9FurDrawerCFl
0002:800288B0 __ct__8FurMultiFP9LiveActorUl
0002:800289A0 setLayerDirect__8FurMultiFUlUlUlUlP8FurParamP7ResTIMGP7ResTIMGP7ResTIMGP7ResTIMG
0002:80028B90 addToManager__8FurMultiFv
0002:80028C90 initMultiFur__2MRFP9LiveActorl
0002:800297B0 __pl__Q29JGeometry8TVec3<f>CFRCQ29JGeometry8TVec3<f>
0002:80029DC0 getCorePadPointingPosBasedOnScreen__2MRFPQ29JGeometry8TVec2<f>l
0002:8002A020 testCorePadButtonA__2MRFl
0002:8002A050 testCorePadButtonB__2MRFl
0002:8002A370 testCorePadTriggerDown__2MRFl
0002:8002A3A0 testCorePadTriggerLeft__2MRFl
0002:8002A400 testCorePadTriggerA__2MRFl
0002:8002A430 testCorePadTriggerB__2MRFl
0002:8002AB80 testFpViewStartTrigger__2MRFv
0002:8002B0B0 isConnectedWPad__2MRFl
0002:8002B0E0 isOperatingWPad__2MRFl
0002:8002B150 getWPadRumble__12WPadFunctionFl
0002:8002B180 getJMapInfoArgPlus__25@unnamed@GravityUtil_cpp@FRC12JMapInfoIterPCcPf
0002:8002B220 getJMapInfoArgPlus__25@unnamed@GravityUtil_cpp@FRC12JMapInfoIterPCcPl
0002:8002B2D0 calcGravityVectorOrZero__25@unnamed@GravityUtil_cpp@FPC7NameObjRCQ29JGeometry8TVec3<f>UlPQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B350 registerGravity__2MRFP13PlanetGravity
0002:8002B390 calcGravityVector__2MRFPC9LiveActorPQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B3B0 calcGravityVector__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B3F0 calcDropShadowVector__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B430 calcGravityVectorOrZero__2MRFPC9LiveActorPQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B450 calcGravityVectorOrZero__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B4B0 calcAttractMarioLauncherOrZero__2MRFPC9LiveActorPQ29JGeometry8TVec3<f>P11GravityInfoUl
0002:8002B4D0 isZeroGravity__2MRFPC9LiveActor
0002:8002B510 isLightGravity__2MRFRC11GravityInfo
0002:8002B540 getJMapInfoGravityType__2MRFRC12JMapInfoIterP13PlanetGravity
0002:8002B600 getJMapInfoGravityPower__2MRFRC12JMapInfoIterP13PlanetGravity
0002:8002B6B0 settingGravityParamFromJMap__2MRFP13PlanetGravityRC12JMapInfoIter
0002:8002B7C0 __ct__13HashSortTableFUl
0002:8002B840 add__13HashSortTableFPCcUlb
0002:8002B8B0 add__13HashSortTableFUlUl
0002:8002B8F0 addOrSkip__13HashSortTableFUlUl
0002:8002B960 sort__13HashSortTableFv
0002:8002BB10 search__13HashSortTableFUlPUl
0002:8002BBC0 search__13HashSortTableFPCcPUl
0002:8002BC10 search__13HashSortTableFPCcPCcPUl
0002:8002BC70 swap__13HashSortTableFPCcPCc
0002:8002BD00 getHashCode__2MRFPCc
0002:8002BD30 getHashCodeLower__2MRFPCc
0002:8002BD90 isValidInfo__2MRFRC12JMapInfoIter
0002:8002BDA0 getObjectName__2MRFPPCcRC12JMapInfoIter
0002:8002BE90 getJMapInfoArgNoInit__FRC12JMapInfoIterPCcPl
0002:8002BEF0 getJMapInfoArgNoInit__FRC12JMapInfoIterPCcPf
0002:8002BF60 getJMapInfoArgNoInit__FRC12JMapInfoIterPCcPb
0002:8002C060 getJMapInfoTransLocal__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002C0F0 getJMapInfoTrans__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002C160 getJMapInfoRotateLocal__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002C1F0 getJMapInfoRotate__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002C360 getJMapInfoScale__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002C470 getJMapInfoV3f__2MRFRC12JMapInfoIterPCcPQ29JGeometry8TVec3<f>
0002:8002C540 getJMapInfoArg0WithInit__2MRFRC12JMapInfoIterPl
0002:8002C580 getJMapInfoArg0WithInit__2MRFRC12JMapInfoIterPb
0002:8002C5A0 getJMapInfoArg1WithInit__2MRFRC12JMapInfoIterPl
0002:8002C600 getJMapInfoArg2WithInit__2MRFRC12JMapInfoIterPl
0002:8002C660 getJMapInfoArg3WithInit__2MRFRC12JMapInfoIterPl
0002:8002C680 getJMapInfoArg3WithInit__2MRFRC12JMapInfoIterPb
0002:8002C6A0 getJMapInfoArg4WithInit__2MRFRC12JMapInfoIterPb
0002:8002C6C0 getJMapInfoArg5WithInit__2MRFRC12JMapInfoIterPl
0002:8002C6E0 getJMapInfoArg6WithInit__2MRFRC12JMapInfoIterPl
0002:8002C700 getJMapInfoArg7WithInit__2MRFRC12JMapInfoIterPl
0002:8002C720 getJMapInfoArg7WithInit__2MRFRC12JMapInfoIterPb
0002:8002C740 getJMapInfoArg0NoInit__2MRFRC12JMapInfoIterPl
0002:8002C750 getJMapInfoArg0NoInit__2MRFRC12JMapInfoIterPf
0002:8002C760 getJMapInfoArg0NoInit__2MRFRC12JMapInfoIterPb
0002:8002C770 getJMapInfoArg1NoInit__2MRFRC12JMapInfoIterPl
0002:8002C780 getJMapInfoArg1NoInit__2MRFRC12JMapInfoIterPf
0002:8002C790 getJMapInfoArg1NoInit__2MRFRC12JMapInfoIterPb
0002:8002C7A0 getJMapInfoArg2NoInit__2MRFRC12JMapInfoIterPl
0002:8002C7B0 getJMapInfoArg2NoInit__2MRFRC12JMapInfoIterPf
0002:8002C7C0 getJMapInfoArg2NoInit__2MRFRC12JMapInfoIterPb
0002:8002C7D0 getJMapInfoArg3NoInit__2MRFRC12JMapInfoIterPl
0002:8002C7E0 getJMapInfoArg3NoInit__2MRFRC12JMapInfoIterPf
0002:8002C7F0 getJMapInfoArg3NoInit__2MRFRC12JMapInfoIterPb
0002:8002C800 getJMapInfoArg4NoInit__2MRFRC12JMapInfoIterPl
0002:8002C820 getJMapInfoArg4NoInit__2MRFRC12JMapInfoIterPb
0002:8002C830 getJMapInfoArg5NoInit__2MRFRC12JMapInfoIterPl
0002:8002C840 getJMapInfoArg5NoInit__2MRFRC12JMapInfoIterPf
0002:8002C850 getJMapInfoArg5NoInit__2MRFRC12JMapInfoIterPb
0002:8002C860 getJMapInfoArg6NoInit__2MRFRC12JMapInfoIterPl
0002:8002C870 getJMapInfoArg6NoInit__2MRFRC12JMapInfoIterPf
0002:8002C880 getJMapInfoArg6NoInit__2MRFRC12JMapInfoIterPb
0002:8002C890 getJMapInfoArg7NoInit__2MRFRC12JMapInfoIterPl
0002:8002C8A0 getJMapInfoArg7NoInit__2MRFRC12JMapInfoIterPf
0002:8002C8B0 getJMapInfoArg7NoInit__2MRFRC12JMapInfoIterPb
0002:8002C8C0 getJMapInfoFollowID__2MRFRC12JMapInfoIterPl
0002:8002C8E0 getJMapInfoGroupID__2MRFRC12JMapInfoIterPl
0002:8002C950 getJMapInfoClippingGroupID__2MRFRC12JMapInfoIterPl
0002:8002C970 getJMapInfoDemoGroupID__2MRFRC12JMapInfoIterPl
0002:8002C990 getJMapInfoLinkID__2MRFRC12JMapInfoIterPl
0002:8002C9B0 isConnectedWithRail__2MRFRC12JMapInfoIter
0002:8002CA30 isExistStageSwitchA__2MRFRC12JMapInfoIter
0002:8002CAA0 isExistStageSwitchB__2MRFRC12JMapInfoIter
0002:8002CB10 isExistStageSwitchAppear__2MRFRC12JMapInfoIter
0002:8002CBF0 isExistStageSwitchAwake__2MRFRC12JMapInfoIter
0002:8002CD40 isEqualObjectName__2MRFRC12JMapInfoIterPCc
0002:8002CD80 getJMapInfoCameraSetID__2MRFRC12JMapInfoIterPl
0002:8002CED0 getParamScale__2MRFRC12JMapInfoIter
0002:8002CF50 getDemoCastID__2MRFRC12JMapInfoIter
0002:8002CF90 getDemoName__2MRFRC12JMapInfoIter
0002:8002CFD0 getTimeSheetName__2MRFRC12JMapInfoIter
0002:8002D010 getDemoGroupID__2MRFRC12JMapInfoIter
0002:8002D050 getDemoGroupLinkID__2MRFRC12JMapInfoIter
0002:8002D0F0 getJMapInfoRailArg__22@unnamed@JMapUtil_cpp@FRC12JMapInfoIterPCcPl
0002:8002D150 getJMapInfoRailArg0NoInit__2MRFRC12JMapInfoIterPl
0002:8002D160 getRailId__2MRFRC12JMapInfoIterPl
0002:8002D180 getNextLinkRailID__2MRFRC12JMapInfoIterPl
0002:8002D190 isEqualRailUsage__2MRFRC12JMapInfoIterPCc
0002:8002D1E0 getRailPointPos0__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002D270 getRailPointPos1__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002D300 getRailPointPos2__2MRFRC12JMapInfoIterPQ29JGeometry8TVec3<f>
0002:8002D390 isLoopRailPathIter__2MRFRC12JMapInfoIter
0002:8002D3E0 getLinkObjID__2MRFv
0002:8002D3F0 getMapPartsID__2MRFv
0002:8002D400 getGeneratorID__2MRFv
0002:8002D410 getJoint__2MRFP8J3DModelPCc
0002:8002D460 getJoint__2MRFPC9LiveActorPCc
0002:8002D4A0 getJoint__2MRFPC9LiveActorUs
0002:8002D530 getJointMtx__2MRFPC9LiveActorPCc
0002:8002D690 getJointNum__2MRFPC9LiveActor
0002:8002D6C0 isExistJoint__2MRFPC9LiveActorPCc
0002:8002D710 set__Q29JGeometry13SMatrix34C<f>FPA4_Cf
0002:8002D7A0 copyJointPos__2MRFPC9LiveActorPCcPQ29JGeometry8TVec3<f>
0002:8002DDC0 IsDerivedFrom__Q44nw4r2ut6detail15RuntimeTypeInfoCFPCQ44nw4r2ut6detail15RuntimeTypeInfo
0002:8002DDF0 GetRuntimeTypeInfo__Q34nw4r3lyt4PaneCFv
0002:8002DEC0 SetVisible__Q34nw4r3lyt4PaneFb
0002:8002DEE0 GetBeginIter__Q34nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>Fv
0002:8002DEF0 __rf__Q44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>8IteratorCFv
0002:8002DF40 GetEndIter__Q34nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>Fv
0002:8002DF50 __ne__Q24nw4r2utFQ44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>8IteratorQ44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>8Iterator
0002:8002DF70 hidePaneRecursive__24@unnamed@LayoutUtil_cpp@FPQ34nw4r3lyt4Pane
0002:8002E170 j_GetBeginIter__Q34nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>Fv
0002:8002E180 __rf__Q44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>13ConstIteratorCFv
0002:8002E1D0 j_GetEndIter__Q34nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>Fv
0002:8002E1E0 __ne__Q24nw4r2utFQ44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>13ConstIteratorQ44nw4r2ut28LinkList<Q34nw4r3lyt4Pane,4>13ConstIterator
0002:8002E3A0 DynamicCast<PCQ34nw4r3lyt7TextBox,CQ34nw4r3lyt4Pane>__Q24nw4r2utFPCQ34nw4r3lyt4Pane_PCQ34nw4r3lyt7TextBox
0002:8002E410 getTextLineNumMaxRecursiveSub__24@unnamed@LayoutUtil_cpp@FPCQ34nw4r3lyt4Pane
0002:8002E500 createAndAddLayoutHolder__2MRFPCc
0002:8002E520 createAndAddPaneCtrl__2MRFP11LayoutActorPCcUl
0002:8002E5C0 isExistPaneCtrl__2MRFP11LayoutActorPCc
0002:8002E640 setInfluencedAlphaToChild__2MRFPC11LayoutActor
0002:8002E750 clamp__2MRFfff
0002:8002E780 executeTextBoxRecursive__2MRFP11LayoutActorPCcRC25TextBoxRecursiveOperation
0002:8002E8B0 setTextBoxGameMessageRecursive__2MRFP11LayoutActorPCcPCc
0002:8002E900 setTextBoxNumberRecursive__2MRFP11LayoutActorPCcl
0002:8002E920 setTextBoxMessageRecursive__2MRFP11LayoutActorPCcPCw
0002:8002E960 __dt__26TextBoxRecursiveSetMessageFv
0002:8002E9A0 setTextBoxFormatRecursive__2MRFP11LayoutActorPCcPCwe
0002:8002EA60 setTextBoxArgNumberRecursive__2MRFP11LayoutActorPCcll
0002:8002EAF0 setTextBoxArgStringRecursive__2MRFP11LayoutActorPCcPCwl
0002:8002EC20 clearTextBoxMessageRecursive__2MRFP11LayoutActorPCc
0002:8002ECD0 setTextBoxFontRecursive__2MRFP11LayoutActorPCcPQ34nw4r2ut4Font
0002:8002ED50 showPane__2MRFP11LayoutActorPCc
0002:8002ED90 showPaneRecursive__2MRFP11LayoutActorPCc
0002:8002EDD0 hidePane__2MRFP11LayoutActorPCc
0002:8002EE10 hidePaneRecursive__2MRFP11LayoutActorPCc
0002:8002EEA0 showScreen__2MRFP11LayoutActor
0002:8002EED0 hideScreen__2MRFP11LayoutActor
0002:8002EF00 setFollowPos__2MRFPCQ29JGeometry8TVec2<f>PC11LayoutActorPCc
0002:8002EF90 setFollowTypeAdd__2MRFPC11LayoutActorPCc
0002:8002EFD0 copyPaneTrans__2MRFPQ29JGeometry8TVec2<f>PC11LayoutActorPCc
0002:8002F330 setLayoutScalePosAtPaneScaleTransIfExecCalcAnim__2MRFP11LayoutActorPC11LayoutActorPCc
0002:8002F3A0 getResOther__12LayoutHolderCFPCc
0002:8002F640 replacePaneTexture__2MRFP11LayoutActorPCcPCQ34nw4r3lyt6TexMapUc
0002:8002F720 startAnim__2MRFP11LayoutActorPCcUl
0002:8002F7E0 startPaneAnim__2MRFP11LayoutActorPCcPCcUl
0002:8002F9F0 setAnimFrameAndStop__2MRFP11LayoutActorfUl
0002:8002FAD0 setAnimFrameAndStopAdjustTextWidth__2MRFP11LayoutActorPCcUl
0002:8002FBF0 setPaneAnimFrameAndStop__2MRFP11LayoutActorPCcfUl
0002:8002FC60 setAnimFrame__2MRFP11LayoutActorfUl
0002:8002FD10 setAnimRate__2MRFP11LayoutActorfUl
0002:8002FE50 isAnimStopped__2MRFPC11LayoutActorUl
0002:8002FEE0 getAnimFrame__2MRFPC11LayoutActorUl
0002:8002FF20 getPaneAnimFrame__2MRFPC11LayoutActorPCcUl
0002:8002FFB0 getPaneAnimFrameMax__2MRFPC11LayoutActorPCcUl
0002:80030040 getAnimCtrl__2MRFPC11LayoutActorUl
0002:800300F0 forceDeleteEffect__2MRFP11LayoutActorPCc
0002:80030120 setEffectHostMtx__2MRFP11LayoutActorPCcPA4_f
0002:80030160 setEffectRate__2MRFP11LayoutActorPCcf
0002:800301E0 pauseOffEffectAll__2MRFP11LayoutActor
0002:80030260 isRegisteredEffect__2MRFPC11LayoutActorPCc
0002:80030350 isStep__2MRFPC11LayoutActorl
0002:80030390 isFirstStep__2MRFPC11LayoutActor
0002:80030400 isGreaterStep__2MRFPC11LayoutActorl
0002:80030440 isGreaterEqualStep__2MRFPC11LayoutActorl
0002:80030480 isIntervalStep__2MRFPC11LayoutActorl
0002:800308A0 isDead__2MRFPC11LayoutActor
0002:800308C0 showLayout__2MRFP11LayoutActor
0002:800308D0 hideLayout__2MRFP11LayoutActor
0002:800309B0 createSimpleLayout__2MRFPCcPCcUl
0002:80030A90 createAndSetupIconAButton__2MRFP11LayoutActorbb
0002:80030B10 getPane__2MRFPC11LayoutActorPCc
0002:80030B50 getPane__13LayoutManagerCFPCc
0002:80030D10 invalidateParentAnim__2MRFP11LayoutActor
0002:80030E60 execute__26TextBoxRecursiveSetMessageCFPQ34nw4r3lyt7TextBox
0002:80030E70 loadLight__2MRFl
0002:80031520 isValidDraw__2MRFPC9LiveActor
0002:80031560 calcAnimDirect__2MRFP9LiveActor
0002:80031610 setClippingTypeSphere__2MRFP9LiveActorfPCQ29JGeometry8TVec3<f>
0002:800316E0 setClippingFar50m__2MRFP9LiveActor
0002:80031720 setClippingFar100m__2MRFP9LiveActor
0002:80031760 setClippingFar200m__2MRFP9LiveActor
0002:800317A0 setClippingFar300m__2MRFP9LiveActor
0002:800317E0 setClippingFarMax__2MRFP9LiveActor
0002:80031820 setClippingFar__2MRFP9LiveActorf
0002:80031970 setGroupClipping__2MRFP9LiveActorRC12JMapInfoIteri
0002:800319C0 validateClipping__2MRFP9LiveActor
0002:80031A10 invalidateClipping__2MRFP9LiveActor
0002:80031A80 changeShowModelFlagSyncNearClipping__2MRFP9LiveActorf
0002:80031AE0 isClipped__2MRFPC9LiveActor
0002:80031B00 setBaseTRMtx__2MRFP9LiveActorPA4_f
0002:80031B40 setBaseTRMtx__2MRFP9LiveActorRCQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>
0002:80031B80 setBaseTRMtx__2MRFP9LiveActorRCQ29JGeometry9TQuat4<f>
0002:80031C70 j_setBaseTRMtx__2MRFP9LiveActorRCQ29JGeometry9TQuat4<f>
0002:80031CD0 getResourceHolder__2MRFPC9LiveActor
0002:80031CF0 getModelResourceHolder__2MRFPC9LiveActor
0002:80031D10 getTexFromModel__2MRFPCcPC9LiveActor
0002:80031D80 getTexFromArc__2MRFPCcPC9LiveActor
0002:80031DF0 isExistTexture__2MRFPC9LiveActorPCc
0002:80031F10 initDLMakerChangeTex__2MRFP9LiveActorPCc
0002:80032090 initMirrorReflection__2MRFP9LiveActor
0002:80032160 setMirrorReflectionInfoFromModel__2MRFP9LiveActor
0002:800321A0 changeModelDataTexAll__2MRFP9LiveActorPCcRC7ResTIMG
0002:80032360 initJointTransform__2MRFPC9LiveActor
0002:80032370 getJointTransform__2MRFPC9LiveActorPCc
0002:80032380 getBckFrame__2MRFPC9LiveActor
0002:800325E0 getBtkFrameMax__2MRFPC9LiveActor
0002:800329E0 initLightCtrl__2MRFP9LiveActor
0002:80032A20 initLightCtrlForPlayer__2MRFP9LiveActor
0002:80032A70 updateLightCtrl__2MRFP9LiveActor
0002:80032A80 updateLightCtrlDirect__2MRFP9LiveActor
0002:80032A90 loadActorLight__2MRFPC9LiveActor
0002:80032AD0 getLightCtrl__2MRFPC9LiveActor
0002:80032AE0 isStep__2MRFPC9LiveActorl
0002:80032B20 isFirstStep__2MRFPC9LiveActor
0002:80032B30 isLessStep__2MRFPC9LiveActorl
0002:80032B70 isLessEqualStep__2MRFPC9LiveActorl
0002:80032BB0 isGreaterStep__2MRFPC9LiveActorl
0002:80032BF0 isGreaterEqualStep__2MRFPC9LiveActorl
0002:80032C30 isIntervalStep__2MRFPC9LiveActorl
0002:80032C70 isNewNerve__2MRFPC9LiveActor
0002:80032CA0 calcNerveRate__2MRFPC9LiveActorl
0002:80032D20 calcNerveRate__2MRFPC9LiveActorll
0002:80032DB0 calcNerveEaseInRate__2MRFPC9LiveActorl
0002:80032E40 calcNerveEaseOutRate__2MRFPC9LiveActorl
0002:80032ED0 calcNerveEaseOutRate__2MRFPC9LiveActorll
0002:80032F70 calcNerveEaseInOutRate__2MRFPC9LiveActorl
0002:80033000 calcNerveEaseInOutRate__2MRFPC9LiveActorll
0002:800330A0 calcNerveValue__2MRFPC9LiveActorlff
0002:80033160 calcNerveValue__2MRFPC9LiveActorllff
0002:80033850 isOnGround__2MRFPC9LiveActor
0002:800338E0 isOnGroundCos__2MRFPC9LiveActorf
0002:80033960 isBindedGround__2MRFPC9LiveActor
0002:80033990 isBindedWall__2MRFPC9LiveActor
0002:80033A80 isBindedRoof__2MRFPC9LiveActor
0002:80033AB0 isBinded__2MRFPC9LiveActor
0002:80033B10 isPressedRoofAndGround__2MRFPC9LiveActor
0002:80033D60 getGroundNormal__2MRFPC9LiveActor
0002:80033D70 getWallNormal__2MRFPC9LiveActor
0002:80033D80 getRoofNormal__2MRFPC9LiveActor
0002:80033D90 getBindedNormal__2MRFPC9LiveActor
0002:80033FB0 getBindedPlaneNum__2MRFPC9LiveActor
0002:80033FC0 getBindedPlaneNormal__2MRFPC9LiveActori
0002:80033FF0 getBindedPlaneSensor__2MRFPC9LiveActori
0002:80034020 getBindedFixReactionVector__2MRFPC9LiveActor
0002:80034030 setBinderOffsetVec__2MRFP9LiveActorPCQ29JGeometry8TVec3<f>b
0002:80034050 setBinderRadius__2MRFP9LiveActorf
0002:80034090 setBinderIgnoreMovingCollision__2MRFP9LiveActor
0002:800340B0 validateExCollisionParts__2MRFP9LiveActor
0002:800340D0 invalidateExCollisionParts__2MRFP9LiveActor
0002:800340F0 setBinderCollisionPartsFilter__2MRFP9LiveActorP24CollisionPartsFilterBase
0002:80034160 setBinderExceptActor__2MRFP9LiveActorPC9LiveActor
0002:800341C0 setBindTriangleFilter__2MRFP9LiveActorP18TriangleFilterBase
0002:800341D0 isExistBinder__2MRFPC9LiveActor
0002:800341E0 onEntryDrawBuffer__2MRFP9LiveActor
0002:80034240 offEntryDrawBuffer__2MRFP9LiveActor
0002:800342A0 isDead__2MRFPC9LiveActor
0002:800342B0 isHiddenModel__2MRFPC9LiveActor
0002:800342C0 showModel__2MRFP9LiveActor
0002:80034350 hideModel__2MRFP9LiveActor
0002:80034420 showModelIfHidden__2MRFP9LiveActor
0002:80034440 hideModelIfShown__2MRFP9LiveActor
0002:80034460 hideModelAndOnCalcAnimIfShown__2MRFP9LiveActor
0002:800344D0 isNoCalcAnim__2MRFPC9LiveActor
0002:80034500 isNoCalcView__2MRFPC9LiveActor
0002:80034510 isNoEntryDrawBuffer__2MRFPC9LiveActor
0002:80034530 onBind__2MRFP9LiveActor
0002:80034540 offBind__2MRFP9LiveActor
0002:80034550 isCalcGravity__2MRFPC9LiveActor
0002:80034560 onCalcGravity__2MRFP9LiveActor
0002:800345A0 offCalcGravity__2MRFP9LiveActor
0002:80034960 joinToGroup__2MRFP9LiveActorPCc
0002:800349B0 joinToGroupArray__2MRFP9LiveActorRC12JMapInfoIterPCcl
0002:80034CF0 callRequestMovementOnAllGroupMember__2MRFPC9LiveActor
0002:80034D00 callInvalidateClippingAllGroupMember__2MRFPC9LiveActor
0002:80034D10 callValidateClippingAllGroupMember__2MRFPC9LiveActor
0002:80034D20 addToAttributeGroupSearchTurtle__2MRFPC9LiveActor
0002:80034D60 isExistInAttributeGroupSearchTurtle__2MRFPC9LiveActor
0002:80034DA0 calcGravity__2MRFP9LiveActor
0002:80034E00 calcGravity__2MRFP9LiveActorRCQ29JGeometry8TVec3<f>
0002:80034E60 calcGravityOrZero__2MRFP9LiveActor
0002:80034F50 initCollisionParts__2MRFP9LiveActorPCcP9HitSensorPA4_f
0002:80035120 createCollisionPartsFromLiveActor__2MRFP9LiveActorPCcP9HitSensorQ22MR18CollisionScaleType
0002:80035190 createCollisionPartsFromLiveActor__2MRFP9LiveActorPCcP9HitSensorPA4_fQ22MR18CollisionScaleType
0002:80035200 createCollisionPartsFromResourceHolder__2MRFP14ResourceHolderPCcP9HitSensorRCQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>Q22MR18CollisionScaleType
0002:80035450 validateCollisionParts__2MRFP9LiveActor
0002:800354D0 validateCollisionParts__2MRFP14CollisionParts
0002:80035520 invalidateCollisionParts__2MRFP9LiveActor
0002:80035530 invalidateCollisionParts__2MRFP14CollisionParts
0002:800355C0 onUpdateCollisionPartsOnetimeImmediately__2MRFP9LiveActor
0002:80035640 offUpdateCollisionParts__2MRFP9LiveActor
0002:800357D0 setCollisionMtx__2MRFP9LiveActor
0002:800357E0 setCollisionMtx__2MRFP9LiveActorP14CollisionParts
0002:80035B10 createModelObjMapObj__2MRFPCcPCcPA4_f
0002:80035B90 createModelObjMapObjStrongLight__2MRFPCcPCcPA4_f
0002:80035C10 createModelObjNoSilhouettedMapObj__2MRFPCcPCcPA4_f
0002:80035E10 createModelObjEnemy__2MRFPCcPCcPA4_f
0002:80035FA0 createSubModelObjName__27@unnamed@LiveActorUtil_cpp@FPC9LiveActorPCc
0002:80036690 createPartsModelNoSilhouettedMapObj__2MRFP9LiveActorPCcPCcPA4_f
0002:80036710 createPartsModelEnemy__2MRFP9LiveActorPCcPCcPA4_f
0002:80036BC0 tryCreateMirrorActor__2MRFP9LiveActorPCc
0002:80036C60 stopSceneAtStep__2MRFPC9LiveActorll
0002:80037040 max__2MRFff
0002:80037060 __mi__Q29JGeometry8TVec3<f>CFRCQ29JGeometry8TVec3<f>
0002:800371B0 getJMapInfoArgNoInit__26@unnamed@MapPartsUtil_cpp@FRC12JMapInfoIterPCcPl
0002:80037240 getJMapInfoArgNoInit__26@unnamed@MapPartsUtil_cpp@FRC12JMapInfoIterPCcPf
0002:800372B0 getMapPartsArgMoveConditionType__2MRFPlRC12JMapInfoIter
0002:800372D0 getMapPartsArgRotateSpeed__2MRFPfRC12JMapInfoIter
0002:800372F0 getMapPartsArgRotateTime__2MRFPlRC12JMapInfoIter
0002:80037310 getMapPartsArgRotateAngle__2MRFPfRC12JMapInfoIter
0002:80037330 getMapPartsArgRotateAxis__2MRFPlRC12JMapInfoIter
0002:80037350 getMapPartsArgRotateAccelType__2MRFPlRC12JMapInfoIter
0002:80037370 getMapPartsArgRotateStopTime__2MRFPlRC12JMapInfoIter
0002:80037390 getMapPartsArgRotateType__2MRFPlRC12JMapInfoIter
0002:800373B0 getMapPartsArgShadowType__2MRFPlRC12JMapInfoIter
0002:800373D0 getMapPartsArgSignMotionType__2MRFPlRC12JMapInfoIter
0002:800373F0 getMapPartsArgMovePosture__2MRFPlPC9LiveActor
0002:80037400 getMapPartsArgMoveStopType__2MRFPlPC9LiveActor
0002:80037410 getMapPartsArgRailGuideType__2MRFPlPC9LiveActor
0002:80037420 getMapPartsArgRailInitPosType__2MRFPlPC9LiveActor
0002:80037430 getMapPartsArgStopTime__2MRFPlPC9LiveActor
0002:80037440 getMapPartsArgMoveSpeed__2MRFPfPC9LiveActor
0002:80037460 getMapPartsArgAccelTime__2MRFPlPC9LiveActor
0002:80037470 getMapPartsArgSpeedCalcType__2MRFPlPC9LiveActor
0002:800375E0 isMapPartsShadowTypeNone__2MRFl
0002:800375F0 hasMapPartsShadow__2MRFl
0002:80037600 isMoveStartTypeUnconditional__2MRFl
0002:80037E30 getFirstPolyOnLineToMap__2MRFPQ29JGeometry8TVec3<f>P8TriangleRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80038030 getFirstPolyOnLineToMapExceptActor__2MRFPQ29JGeometry8TVec3<f>P8TriangleRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>PC9LiveActor
0002:80038E80 sin__2MRFf
0002:80039270 isBindedGroundDamageFire__2MRFPC9LiveActor
0002:800393B0 isBindedGroundWater__2MRFPC9LiveActor
0002:80039420 isBindedGroundSinkDeath__2MRFPC9LiveActor
0002:80039460 isBindedGroundAreaMove__2MRFPC9LiveActor
0002:800394E0 isBindedGroundBrake__2MRFPC9LiveActor
0002:800399C0 isGroundCodeWaterIter__2MRFRC12JMapInfoIter
0002:80039A70 isGroundCodeDeath__2MRFPC8Triangle
0002:80039B10 isGroundCodeDamage__2MRFPC8Triangle
0002:80039BB0 isGroundCodeDamageFire__2MRFPC8Triangle
0002:80039C00 isGroundCodeFireDance__2MRFPC8Triangle
0002:80039CA0 isGroundCodeDamageElectric__2MRFPC8Triangle
0002:80039E30 isGroundCodeSinkDeath__2MRFPC8Triangle
0002:80039ED0 isGroundCodeAreaMove__2MRFPC8Triangle
0002:80039FA0 isGroundCodeSinkDeathMud__2MRFPC8Triangle
0002:80039FF0 isGroundCodeBrake__2MRFPC8Triangle
0002:8003AFA0 checkStrikeLineToSunshade__9CollisionFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>lPC24CollisionPartsFilterBasePC18TriangleFilterBase
0002:8003B1A0 JMAAcosRadian__Ff
0002:8003B250 initAcosTable__2MRFv
0002:8003B350 acosEx__2MRFf
0002:8003B3F0 getRandom__2MRFv
0002:8003B440 getRandom__2MRFff
0002:8003B4A0 getRandom__2MRFll
0002:8003B540 getRandomDegree__2MRFv
0002:8003B690 addRandomVector__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003B820 getInterpolateValue__2MRFfff
0002:8003B830 getLinerValue__2MRFffff
0002:8003B850 getLinerValueFromMinMax__2MRFfffff
0002:8003B8E0 clamp__Q29JGeometry8TUtil<f>Ffff
0002:8003B9C0 getEaseInValue__2MRFffff
0002:8003BA30 JMACosRadian__Ff
0002:8003BA80 getEaseOutValue__2MRFffff
0002:8003BAF0 JMASinRadian__Ff
0002:8003BB60 getEaseInOutValue__2MRFffff
0002:8003BF50 makeAxisFrontUp__2MRFPQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8003C110 makeAxisVerticalZX__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8003C220 makeAxisCrossPlane__2MRFPQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:8003C8C0 calcReboundVelocity__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>ff
0002:8003CB50 makeQuatRotateDegree__2MRFPQ29JGeometry9TQuat4<f>RCQ29JGeometry8TVec3<f>
0002:8003CCB0 blendQuatUpFront__2MRFPQ29JGeometry9TQuat4<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>ff
0002:8003CEB0 setRotate__Q29JGeometry9TQuat4<f>FRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003D680 turnQuatXDirRad__2MRFPQ29JGeometry9TQuat4<f>RCQ29JGeometry9TQuat4<f>RCQ29JGeometry8TVec3<f>f
0002:8003DB10 fixed16ToFloat__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<s>Uc
0002:8003E1E0 rotateVecDegree__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003E500 normalize__2MRFPQ29JGeometry8TVec3<f>
0002:8003E530 normalize__2MRFRCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>
0002:8003E570 normalizeOrZero__2MRFPQ29JGeometry8TVec2<f>
0002:8003E5D0 normalizeOrZero__2MRFPQ29JGeometry8TVec3<f>
0002:8003E630 normalizeOrZero__2MRFRCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>
0002:8003E670 normalize__2MRFfff
0002:8003EAD0 turnVecToVecCosOnPlane__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003EC00 turnVecToVecCosOnPlane__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003EC20 turnVecToVecRadian__2MRFPQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>fRCQ29JGeometry8TVec3<f>
0002:8003F070 isSameDirection__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>f
0002:8003F170 isNearZero__2MRFff
0002:8003F1A0 isNearZero__2MRFRCQ29JGeometry8TVec3<f>f
0002:8003F440 lerp__2MRFUcUcf
0002:8003F4D0 lerp__2MRF8_GXColor8_GXColorf
0002:8003F620 sortSmall__2MRFlPUlPl
0002:8003F6D0 PSVECKillElement__FPC3VecPC3VecPC3Vec
0002:8003FA70 blendColor__2MRFP8_GXColorRC8_GXColorRC8_GXColorf
0002:8003FED0 getMaxAbsElementIndex__2MRFRCQ29JGeometry8TVec3<f>
0002:8003FF50 diffAngleAbs__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80040100 diffAngleSigned__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80040190 diffAngleAbsHorizontal__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:800401F0 diffAngleSignedHorizontal__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80040830 vecKillElement__2MRFRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>
0002:80040B20 mod__2MRFff
0002:80040C60 __ct__Q22MR19CurrentHeapRestorerFP7JKRHeap
0002:80040CC0 __dt__Q22MR19CurrentHeapRestorerFv
0002:80040D30 alloc__Q22MR18NewDeleteAllocatorFP12MEMAllocatorUl
0002:80040D40 free__Q22MR18NewDeleteAllocatorFP12MEMAllocatorPv
0002:80040D70 getCurrentHeap__2MRFv
0002:80040D80 getStationedHeapNapa__2MRFv
0002:80040D90 getStationedHeapGDDR3__2MRFv
0002:80040DB0 getSceneHeapGDDR3__2MRFv
0002:80040E10 becomeCurrentHeap__2MRFP7JKRHeap
0002:80040E70 isEqualCurrentHeap__2MRFP7JKRHeap
0002:80040E90 adjustHeapSize__2MRFP10JKRExpHeapPCc
0002:80040EA0 isBinaryInitialized__16KCollisionServerFPCv
0002:800410A0 copyMemory__2MRFPvPCvUl
0002:800411B0 fillMemory__2MRFPvUcUl
0002:800411D0 zeroMemory__2MRFPvUl
0002:800412D0 calcCheckSum__2MRFPCvUl
0002:80041310 allocFromWPadHeap__2MRFUl
0002:80041330 freeFromWPadHeap__2MRFPv
0002:80041360 alloc__Q22MR19JKRHeapAllocator<0>FP12MEMAllocatorUl
0002:80041380 getSystemMessageDirect__2MRFPCc
0002:800413C0 getGameMessageDirect__2MRFPCc
0002:80041480 getGalaxyNameOnCurrentLanguage__2MRFPCc
0002:800414C0 getGalaxyNameShortOnCurrentLanguage__2MRFPCc
0002:80041500 getCurrentGalaxyNameOnCurrentLanguage__2MRFv
0002:80041690 getLayoutMessageID__2MRFPcPCcPCc
0002:800416B0 isExistGameMessage__2MRFPCc
0002:80041900 isGroupTagId__23MessageEditorMessageTagCFii
0002:80041930 countMessageLine__2MRFPCw
0002:80041B10 countMessageFigure__2MRFl
0002:80041B40 getNextMessagePage__2MRFPCw
0002:80042C70 getJ3DModel__2MRFPC9LiveActor
0002:80042C90 calcJ3DModel__2MRFP9LiveActor
0002:80042CF0 getJ3DModelData__2MRFPC9LiveActor
0002:80042E30 isBckPlaying__2MRFP12XanimePlayerPCc
0002:80042F80 getMaterialNo__2MRFP8J3DModelPCc
0002:800430F0 showMaterial__2MRFP8J3DModelPCc
0002:80043140 showMaterial__2MRFPC9LiveActorPCc
0002:800432E0 isUseTex__2MRFP11J3DMaterialUs
0002:80043640 isUseTexMtxEnvMap__2MRFP11J3DMaterial
0002:80043A40 getResTIMG__2MRFPC9LiveActori
0002:80043A80 getResTIMG__2MRFPC12J3DModelDatai
0002:80043AA0 getTexture__2MRFP14ResourceHolderPCc
0002:80043D60 copyJointAnimation__2MRFP9LiveActorPC9LiveActor
0002:80043E90 syncMaterialAnimation__2MRFP9LiveActorPC9LiveActor
0002:800442B0 calcModelBoundingBox__2MRFPQ29JGeometry8TBox3<f>PC9LiveActor
0002:80044550 __ct__Q29JGeometry8TVec3<f>FRC3Vec
0002:800445A0 calcModelBoundingRadius__2MRFPfPC9LiveActor
0002:80044680 isExistCollisionResource__2MRFPC9LiveActorPCc
0002:800446E0 isExistModel__2MRFPCc
0002:80044730 isExistSubModel__2MRFPCcPCc
0002:80044860 makeMtxRotate__2MRFPA4_ffff
0002:800448C0 makeMtxRotate__2MRFPA4_fRCQ29JGeometry8TVec3<f>
0002:800448D0 makeMtxRotateY__2MRFPA4_ff
0002:80044950 makeMtxTR__2MRFPA4_fffffff
0002:80044AE0 makeMtxTR__2MRFPA4_fRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80044B00 makeMtxTransRotateY__2MRFPA4_fffff
0002:80044B60 rotateMtxLocalX__2MRFPA4_ff
0002:80044C40 rotateMtxLocalY__2MRFPA4_ff
0002:80044D20 rotateMtxLocalZ__2MRFPA4_ff
0002:80044E00 rotateMtxLocalXDegree__2MRFPA4_ff
0002:80044E10 rotateMtxLocalYDegree__2MRFPA4_ff
0002:80044E20 rotateMtxLocalZDegree__2MRFPA4_ff
0002:80044E30 preScaleMtx__2MRFPA4_ff
0002:80044E40 preScaleMtx__2MRFPA4_fRCQ29JGeometry8TVec3<f>
0002:80044E50 preScaleMtx__2MRFPA4_ffff
0002:80044FB0 setTrans__Q29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>FRCQ29JGeometry8TVec3<f>
0002:800450E0 setXYZDir__Q29JGeometry64TRotation3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>FRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80045130 zeroTrans__Q29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>Fv
0002:80045770 getXYZDir__Q29JGeometry64TRotation3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>CFRQ29JGeometry8TVec3<f>RQ29JGeometry8TVec3<f>RQ29JGeometry8TVec3<f>
0002:80045A80 makeRTFromMtxPtr__2MRFPQ29JGeometry8TVec3<f>PQ29JGeometry8TVec3<f>PA4_fb
0002:80045DB0 makeMtxUpFront__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80045E30 makeMtxUpFrontPos__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80046060 makeMtxUpNoSupport__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>RCQ29JGeometry8TVec3<f>
0002:80046120 makeMtxUpNoSupportPos__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>RCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>
0002:80046300 orthogonalize__2MRFPQ29JGeometry64TPosition3<Q29JGeometry38TMatrix34<Q29JGeometry13SMatrix34C<f>>>
0002:80046B00 setMtxTrans__2MRFPA4_ffff
0002:80046B50 addTransMtxLocal__2MRFPA4_fRCQ29JGeometry8TVec3<f>
0002:80046D30 extractMtxTrans__2MRFPA4_fPQ29JGeometry8TVec3<f>
0002:80046F30 isSameMtx__2MRFPA4_fPA4_f
0002:80047510 __ct__16MultiEventCameraFv
0002:80047580 setUp__16MultiEventCameraFPCcPC15ActorCameraInfol
0002:800475F0 setEndCameraTypeAtLanding__16MultiEventCameraFv
0002:800478D0 declareEventCamera__16MultiEventCameraFl
0002:80047A50 isStep__2MRFPC13NerveExecutorl
0002:80047A90 isFirstStep__2MRFPC13NerveExecutor
0002:80047AA0 isLessStep__2MRFPC13NerveExecutorl
0002:80047AE0 isLessEqualStep__2MRFPC13NerveExecutorl
0002:80048580 set__6Color8FUcUcUcUc
0002:80048BA0 startNPCTalkCamera__2MRFPC15TalkMessageCtrlPA4_ffl
0002:80048C00 startNPCTalkCamera__2MRFPC15TalkMessageCtrlPA4_fPA4_ffl
0002:8004A148 def_8004A068
0002:8004AA20 isJudgedToClipFrustum__2MRFRCQ29JGeometry8TVec3<f>f
0002:8004AAC0 isJudgedToClipFrustum300m__2MRFRCQ29JGeometry8TVec3<f>f
0002:8004AB10 isJudgedToNearClip__2MRFRCQ29JGeometry8TVec3<f>f
0002:8004ABD0 isInWater__2MRFRCQ29JGeometry8TVec3<f>
0002:8004AC10 isInDeath__2MRFRCQ29JGeometry8TVec3<f>
0002:8004AC20 isInDarkMatter__2MRFRCQ29JGeometry8TVec3<f>
0002:8004AC30 j_registerNameObjToExecuteHolder__2MRFP7NameObjiiii
0002:8004AC40 connectToScene__2MRFP7NameObjiiii
0002:8004AC80 connectToSceneCollisionMapObj__2MRFP9LiveActor
0002:8004ACA0 connectToSceneCollisionMapObjWeakLight__2MRFP9LiveActor
0002:8004ACC0 connectToSceneCollisionMapObjStrongLight__2MRFP9LiveActor
0002:8004AD00 connectToSceneCollisionEnemyStrongLight__2MRFP9LiveActor
0002:8004AD20 connectToSceneCollisionEnemyNoShadowedMapObjStrongLight__2MRFP9LiveActor
0002:8004AD40 connectToSceneNpc__2MRFP9LiveActor
0002:8004AD60 connectToSceneNpcMovement__2MRFP9LiveActor
0002:8004ADA0 connectToSceneEnemy__2MRFP9LiveActor
0002:8004ADC0 connectToSceneEnemyMovement__2MRFP7NameObj
0002:8004AE10 connectToSceneMapObj__2MRFP9LiveActor
0002:8004AE30 connectToSceneMapObjMovement__2MRFP7NameObj
0002:8004AE80 connectToSceneMapObjMovementCalcAnim__2MRFP7NameObj
0002:8004AED0 connectToSceneMapObjNoMovement__2MRFP9LiveActor
0002:8004AF30 connectToSceneMapObjDecoration__2MRFP9LiveActor
0002:8004AFC0 connectToSceneMapObjStrongLight__2MRFP9LiveActor
0002:8004B0B0 connectToSceneEnemyDecoration__2MRFP9LiveActor
0002:8004B0D0 connectToSceneEnemyDecorationMovement__2MRFP7NameObj
0002:8004B190 connectToSceneItemStrongLight__2MRFP9LiveActor
0002:8004B1D0 connectToSceneIndirectNpc__2MRFP9LiveActor
0002:8004B280 connectToSceneAreaObj__2MRFP7NameObj
0002:8004B2F0 connectToSceneLayout__2MRFP7NameObj
0002:8004B480 connectToSceneTalkLayout__2MRFP7NameObj
0002:8004B570 connectToSceneLayoutMovement__2MRFP7NameObj
0002:8004B5C0 connectToSceneMirrorMapObj__2MRFP9LiveActor
0002:8004B670 connectToSceneNoShadowedMapObjStrongLight__2MRFP9LiveActor
0002:8004B6B0 connectToSceneNoSilhouettedMapObjStrongLight__2MRFP9LiveActor
0002:8004B730 connectToSceneSky__2MRFP9LiveActor
0002:8004B7F0 j_requestMovementOn__15NameObjFunctionFP7NameObj
0002:8004B800 requestMovementOn__2MRFP9LiveActor
0002:8004B850 requestMovementOn__2MRFP11LayoutActor
0002:8004B860 requestMovementOff__2MRFP7NameObj
0002:8004B8C0 j_requestMovementOff__15NameObjFunctionFP7NameObj_0
0002:8004B8D0 joinToNameObjGroup__2MRFP7NameObjPCc
0002:8004B920 registerPreDrawFunction__2MRFRCQ22MR11FunctorBasei
0002:8004B9E0 createDrawAdaptor__2MRFPCcRCQ22MR11FunctorBase
0002:8004BA70 createAdaptorAndConnectToDrawBloomModel__2MRFPCcRCQ22MR11FunctorBase
0002:8004BB70 listenNameObjStageSwitchOnOffAppear__2MRFPC7NameObjPC15StageSwitchCtrlRCQ22MR11FunctorBaseRCQ22MR11FunctorBase
0002:8004BE40 createAndAddResourceHolder__2MRFPCc
0002:8004BF10 loadTexFromArc__2MRFPCcPCc
0002:8004BF20 loadTexFromArc__2MRFPCc
0002:8004C090 tryCreateCsvParserLocal__21@unnamed@ObjUtil_cpp@FPC14ResourceHolderPCcP16__va_list_struct
0002:8004C160 createCsvParser__2MRFPC14ResourceHolderPCce
0002:8004C1F0 createCsvParser__2MRFPCcPCce
0002:8004C330 tryCreateCsvParser__2MRFPC14ResourceHolderPCce
0002:8004C6D0 getCsvDataElementNum__2MRFPC8JMapInfo
0002:8004C6F0 getCsvDataStr__2MRFPPCcPC8JMapInfoPCcl
0002:8004C710 getValue<PCc>__8JMapInfoCFiPCcPPCc_Cb
0002:8004C780 getCsvDataStrOrNULL__2MRFPPCcPC8JMapInfoPCcl
0002:8004C7D0 getCsvDataS32__2MRFPlPC8JMapInfoPCcl
0002:8004C7F0 getValue<l>__8JMapInfoCFiPCcPl_Cb
0002:8004C920 getCsvDataU8__2MRFPUcPC8JMapInfoPCcl
0002:8004C970 getCsvDataF32__2MRFPfPC8JMapInfoPCcl
0002:8004C9F0 getCsvDataBool__2MRFPbPC8JMapInfoPCcl
0002:8004CA80 getCsvDataVec__2MRFP3VecPC8JMapInfoPCcl
0002:8004CB40 getCsvDataColor__2MRFP8_GXColorPC8JMapInfoPCcl
0002:8004CD00 __eq__12JMapInfoIterCFRC12JMapInfoIter
0002:8004CD50 end__8JMapInfoCFv
0002:8004CE30 findElement<l>__8JMapInfoCFPCcli_12JMapInfoIter
0002:8004D2E0 declarePowerStar__2MRFPC7NameObj
0002:8004D2F0 declarePowerStar__2MRFPC7NameObjl
0002:8004D300 declarePowerStarCoin100__2MRFv
0002:8004D430 requestAppearPowerStar__2MRFPC7NameObjPC9LiveActorf
0002:8004D500 requestAppearPowerStarCoin100__2MRFv
0002:8004D520 isEndPowerStarAppearDemo__2MRFPC7NameObj
0002:8004D5D0 declareCoin__2MRFPC7NameObjl
0002:8004D740 appearCoinPopToDirection__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>l
0002:8004D8A0 declareStarPiece__2MRFPC7NameObjl
0002:8004DA50 appearStarPiece__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>lffb
0002:8004DAD0 appearStarPieceToDirection__2MRFPC7NameObjRCQ29JGeometry8TVec3<f>RCQ29JGeometry8TVec3<f>lffb
0002:8004DCF0 __dt__9LiveActorFv
0002:8004E070 tryRumblePad__2MRFPCvPCcl
0002:8004E100 tryRumblePadStrong__2MRFPCvl
0002:8004E140 tryRumblePadMiddle__2MRFPCvl
0002:8004E180 tryRumblePadWeak__2MRFPCvl
0002:8004E1C0 tryRumblePadVeryWeak__2MRFPCvl
0002:8004E2B0 tryRumbleDefaultHit__2MRFPCvl
0002:8004E2F0 shakeCameraVeryStrong__2MRFv
0002:8004E380 shakeCameraNormal__2MRFv
0002:8004E3B0 shakeCameraNormalWeak__2MRFv
0002:8004E3E0 shakeCameraWeak__2MRFv
0002:8004E410 shakeCameraVeryWeak__2MRFv
0002:8004E440 shakeCameraInfinity__2MRFP7NameObjff
0002:8004E4B0 stopShakingCamera__2MRFP7NameObj
0002:8004E4F0 isName__2MRFPC7NameObjPCc
0002:8004E520 isSame__2MRFPC7NameObjPC7NameObj
0002:8004E530 tryRegisterNamePosLinkObj__2MRFPC7NameObjRC12JMapInfoIterPCc
0002:8004E970 receiveMsgEnemyAttack__9LiveActorFUlP9HitSensorP9HitSensor
0002:8004E980 receiveMsgPush__9LiveActorFP9HitSensorP9HitSensor
0002:8004E990 updateHitSensor__9LiveActorFP9HitSensor
0002:8004F040 isPlayerDead__2MRFv
0002:8004F0B0 isPlayerInAreaObj__2MRFPCc
0002:8004F0F0 getPlayerPos__2MRFv
0002:8004F140 getPlayerCenterPos__2MRFv
0002:8004F1D0 getPlayerRotate__2MRFv
0002:8004F320 getPlayerGravity__2MRFv
0002:8004F360 checkPlayerSwingTrigger__2MRFv
0002:8004F3D0 getPlayerUpVec__2MRFPQ29JGeometry8TVec3<f>
0002:8004F410 getPlayerFrontVec__2MRFPQ29JGeometry8TVec3<f>
0002:8004FE90 getStarPiecePlayer__2MRFv
0002:8004FEA0 notifyDirectGetStarPiecePlayer__2MRFv
0002:8004FF50 isPlayerInBind__2MRFv
0002:80050120 isPlayerElementModeIce__2MRFv
0002:80050210 isPlayerElementModeNormal__2MRFv