-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathRSPE_r1.map
12451 lines (12451 loc) · 650 KB
/
RSPE_r1.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
80004000 000050 80004000 4 memcpy Global
80004050 0000b4 80004050 4 __fill_mem Global
80004104 000030 80004104 4 memset Global
80004134 000030 80004134 4 TRK_memset Global
80004164 000024 80004164 4 TRK_memcpy Global
800060bc 00002c 800060bc 4 __TRK_reset Global
800060e8 000024 800060e8 4 __check_pad3 Global
80006110 00000c 80006110 4 __set_debug_bba Global
8000611c 000008 8000611c 4 __get_debug_bba Global
80006124 00016c 80006124 4 __start Global
80006290 000090 80006290 4 __init_registers Global
80006320 0000a8 80006320 4 __init_data Global
800063c8 000024 800063c8 4 __init_hardware Global
800063ec 000034 800063ec 4 __flush_cache Global
800076e0 000018 800076e0 4 List_Init ut
800076f8 000070 800076f8 4 List_Append ut
80007768 000120 80007768 4 List_Insert ut
80007888 00006c 80007888 4 List_Remove ut
800078f4 000020 800078f4 4 List_GetNext ut
80007914 00001c 80007914 4 List_GetPrev ut
80007930 00004c 80007930 4 List_GetNth ut
8000797c 000084 8000797c 4 ~LinkListImpl LinkListImpl
80007a00 000048 80007a00 4 Erase LinkListImpl
80007a48 000044 80007a48 4 Clear LinkListImpl
80007a8c 00002c 80007a8c 4 Insert LinkListImpl
80007ab8 000030 80007ab8 4 Erase LinkListImpl
80007ae8 000074 80007ae8 4 IsValidBinaryFile ut
80007b5c 000078 80007b5c 4 ReadNextCharUTF8 CharStrmReader
80007bd4 00001c 80007bd4 4 ReadNextCharUTF16 CharStrmReader
80007bf0 00001c 80007bf0 4 ReadNextCharCP1252 CharStrmReader
80007c0c 000060 80007c0c 4 ReadNextCharSJIS CharStrmReader
80007c6c 000010 80007c6c 4 TagProcessorBase TagProcessorBase<char>
80007c7c 000040 80007c7c 4 ~TagProcessorBase TagProcessorBase<char>
80007cbc 000130 80007cbc 4 Process TagProcessorBase<char>
80007dec 0001e8 80007dec 4 CalcRect TagProcessorBase<char>
80007fd4 000010 80007fd4 4 TagProcessorBase TagProcessorBase<wchar_t>
80007fe4 000040 80007fe4 4 ~TagProcessorBase TagProcessorBase<wchar_t>
80008024 000130 80008024 4 Process TagProcessorBase<wchar_t>
80008154 0001e8 80008154 4 CalcRect TagProcessorBase<wchar_t>
8000833c 000008 8000833c 4 ReadAsync IOStream
80008344 000004 80008344 4 Write IOStream
80008348 000008 80008348 4 WriteAsync IOStream
80008350 000008 80008350 4 IsBusy IOStream
80008358 000008 80008358 4 GetBufferAlign IOStream
80008360 000008 80008360 4 GetSizeAlign IOStream
80008368 000008 80008368 4 GetOffsetAlign IOStream
80008370 00000c 80008370 4 __sinit_\ut_IOStream_cpp Global
8000837c 000004 8000837c 4 Cancel FileStream
80008380 000008 80008380 4 CancelAsync FileStream
80008388 000064 80008388 4 Skip FilePosition
800083ec 000050 800083ec 4 Append FilePosition
8000843c 000098 8000843c 4 Seek FilePosition
800084d4 000008 800084d4 4 GetRuntimeTypeInfo FileStream
800084dc 00000c 800084dc 4 __sinit_\ut_FileStream_cpp Global
800084e8 000028 800084e8 4 DvdAsyncCallback_ DvdFileStream
80008514 000024 80008514 4 DvdCBAsyncCallback_ DvdFileStream
8000853c 0000bc 8000853c 4 DvdFileStream DvdFileStream
800085f8 000130 800085f8 4 DvdFileStream DvdFileStream
80008728 000078 80008728 4 ~DvdFileStream DvdFileStream
800087a0 000050 800087a0 4 Close DvdFileStream
800087f0 000088 800087f0 4 Read DvdFileStream
80008878 0000f4 80008878 4 ReadAsync DvdFileStream
8000896c 00003c 8000896c 4 Peek DvdFileStream
800089a8 000080 800089a8 4 PeekAsync DvdFileStream
80008a28 000008 80008a28 4 Seek DvdFileStream
80008a30 000008 80008a30 4 Cancel DvdFileStream
80008a38 00005c 80008a38 4 CancelAsync DvdFileStream
80008a94 000008 80008a94 4 GetBufferAlign DvdFileStream
80008a9c 000008 80008a9c 4 GetSizeAlign DvdFileStream
80008aa4 000008 80008aa4 4 GetOffsetAlign DvdFileStream
80008aac 000008 80008aac 4 CanCancel DvdFileStream
80008ab4 000008 80008ab4 4 CanWrite DvdFileStream
80008abc 000008 80008abc 4 CanRead DvdFileStream
80008ac4 000008 80008ac4 4 CanSeek DvdFileStream
80008acc 000008 80008acc 4 CanAsync DvdFileStream
80008ad4 000008 80008ad4 4 GetSize DvdFileStream
80008adc 000008 80008adc 4 Tell DvdFileStream
80008ae4 000008 80008ae4 4 IsBusy DvdFileStream
80008aec 000008 80008aec 4 GetRuntimeTypeInfo DvdFileStream
80008af4 00000c 80008af4 4 __sinit_\ut_DvdFileStream_cpp Global
80008b00 000074 80008b00 4 DvdLockedFileStream DvdLockedFileStream
80008b74 000074 80008b74 4 DvdLockedFileStream DvdLockedFileStream
80008be8 000058 80008be8 4 ~DvdLockedFileStream DvdLockedFileStream
80008c40 000074 80008c40 4 Read DvdLockedFileStream
80008cb4 000074 80008cb4 4 Peek DvdLockedFileStream
80008d28 000008 80008d28 4 CanAsync DvdLockedFileStream
80008d30 000008 80008d30 4 PeekAsync DvdLockedFileStream
80008d38 000008 80008d38 4 ReadAsync DvdLockedFileStream
80008d40 000008 80008d40 4 GetRuntimeTypeInfo DvdLockedFileStream
80008d48 00000c 80008d48 4 __sinit_\ut_DvdLockedFileStream_cpp Global
80008d54 000028 80008d54 4 NandAsyncCallback_ NandFileStream
80008d80 000070 80008d80 4 NandFileStream NandFileStream
80008df0 000070 80008df0 4 NandFileStream NandFileStream
80008e60 000078 80008e60 4 ~NandFileStream NandFileStream
80008ed8 0000e8 80008ed8 4 Open NandFileStream
80008fc0 000774 80008fc0 4 Open NandFileStream
80009734 000050 80009734 4 Close NandFileStream
80009784 00007c 80009784 4 Read NandFileStream
80009800 0000a4 80009800 4 ReadAsync NandFileStream
800098a4 00006c 800098a4 4 Write NandFileStream
80009910 0000a8 80009910 4 WriteAsync NandFileStream
800099b8 000008 800099b8 4 Seek NandFileStream
800099c0 000008 800099c0 4 GetBufferAlign NandFileStream
800099c8 000008 800099c8 4 GetSizeAlign NandFileStream
800099d0 000008 800099d0 4 GetOffsetAlign NandFileStream
800099d8 000008 800099d8 4 CanCancel FileStream
800099e0 000008 800099e0 4 CanWrite NandFileStream
800099e8 000008 800099e8 4 CanRead NandFileStream
800099f0 000008 800099f0 4 CanSeek NandFileStream
800099f8 000008 800099f8 4 CanAsync NandFileStream
80009a00 000008 80009a00 4 GetSize NandFileStream
80009a08 000008 80009a08 4 Tell NandFileStream
80009a10 000008 80009a10 4 IsBusy NandFileStream
80009a18 000008 80009a18 4 GetRuntimeTypeInfo NandFileStream
80009a20 00000c 80009a20 4 __sinit_\ut_NandFileStream_cpp Global
80009a2c 000060 80009a2c 4 Enable LC
80009a8c 000078 80009a8c 4 Disable LC
80009b04 000070 80009b04 4 Lock LC
80009b74 000040 80009b74 4 Unlock LC
80009bb4 000004 80009bb4 4 LoadBlocks LC
80009bb8 000004 80009bb8 4 StoreBlocks LC
80009bbc 000004 80009bbc 4 StoreData LC
80009bc0 000018 80009bc0 4 __sinit_\ut_LockedCache_cpp Global
80009bd8 0000a8 80009bd8 4 InitReaderFunc Font
80009c80 000054 80009c80 4 RomFont RomFont
80009cd4 000040 80009cd4 4 ~Font Font
80009d14 000040 80009d14 4 ~RomFont RomFont
80009d54 0000d4 80009d54 4 Load RomFont
80009e28 000058 80009e28 4 GetRequireBufferSize RomFont
80009e80 00000c 80009e80 4 GetWidth RomFont
80009e8c 00005c 80009e8c 4 GetHeight RomFont
80009ee8 00000c 80009ee8 4 GetAscent RomFont
80009ef4 00000c 80009ef4 4 GetDescent RomFont
80009f00 00000c 80009f00 4 GetBaselinePos RomFont
80009f0c 00000c 80009f0c 4 GetCellHeight RomFont
80009f18 00000c 80009f18 4 GetCellWidth RomFont
80009f24 00000c 80009f24 4 GetMaxCharWidth RomFont
80009f30 000008 80009f30 4 GetType RomFont
80009f38 000008 80009f38 4 GetTextureFormat RomFont
80009f40 00000c 80009f40 4 GetLineFeed RomFont
80009f4c 000018 80009f4c 4 GetDefaultCharWidths RomFont
80009f64 00001c 80009f64 4 SetDefaultCharWidth RomFont
80009f80 000100 80009f80 4 SetAlternateChar RomFont
8000a080 00000c 8000a080 4 SetLineFeed RomFont
8000a08c 00011c 8000a08c 4 GetCharWidth RomFont
8000a1a8 00004c 8000a1a8 4 GetCharWidths RomFont
8000a1f4 00018c 8000a1f4 4 GetGlyph RomFont
8000a380 000034 8000a380 4 GetEncoding RomFont
8000a3b4 000044 8000a3b4 4 ResFontBase ResFontBase
8000a3f8 000040 8000a3f8 4 ~ResFontBase ResFontBase
8000a438 00000c 8000a438 4 SetResourceBuffer ResFontBase
8000a444 00000c 8000a444 4 GetWidth ResFontBase
8000a450 00000c 8000a450 4 GetHeight ResFontBase
8000a45c 00000c 8000a45c 4 GetAscent ResFontBase
8000a468 000014 8000a468 4 GetDescent ResFontBase
8000a47c 000014 8000a47c 4 GetBaselinePos ResFontBase
8000a490 000010 8000a490 4 GetCellHeight ResFontBase
8000a4a0 000010 8000a4a0 4 GetCellWidth ResFontBase
8000a4b0 000010 8000a4b0 4 GetMaxCharWidth ResFontBase
8000a4c0 000008 8000a4c0 4 GetType ResFontBase
8000a4c8 000010 8000a4c8 4 GetTextureFormat ResFontBase
8000a4d8 000010 8000a4d8 4 GetLineFeed ResFontBase
8000a4e8 000018 8000a4e8 4 GetDefaultCharWidths ResFontBase
8000a500 000020 8000a500 4 SetDefaultCharWidths ResFontBase
8000a520 000098 8000a520 4 SetAlternateChar ResFontBase
8000a5b8 00000c 8000a5b8 4 SetLineFeed ResFontBase
8000a5c4 00004c 8000a5c4 4 GetCharWidth ResFontBase
8000a610 0000ec 8000a610 4 GetCharWidths ResFontBase
8000a6fc 0000a4 8000a6fc 4 GetGlyph ResFontBase
8000a7a0 00000c 8000a7a0 4 GetEncoding ResFontBase
8000a7ac 0000d4 8000a7ac 4 FindGlyphIndex ResFontBase
8000a880 000104 8000a880 4 GetGlyphFromIndex ResFontBase
8000a984 00003c 8000a984 4 ResFont ResFont
8000a9c0 000058 8000a9c0 4 ~ResFont ResFont
8000aa18 000144 8000aa18 4 SetResource ResFont
8000ab5c 00012c 8000ab5c 4 Rebuild ResFont
8000ac88 000040 8000ac88 4 ~Color Color
8000acc8 000220 8000acc8 4 CharWriter CharWriter
8000aee8 000044 8000aee8 4 SetColorMapping CharWriter
8000af2c 000160 8000af2c 4 SetTextColor CharWriter
8000b08c 000040 8000b08c 4 ~CharWriter CharWriter
8000b0cc 000a58 8000b0cc 4 SetupGX CharWriter
8000bb24 0000c4 8000bb24 4 SetFontSize CharWriter
8000bbe8 000060 8000bbe8 4 GetFontWidth CharWriter
8000bc48 000060 8000bc48 4 GetFontHeight CharWriter
8000bca8 000060 8000bca8 4 GetFontAscent CharWriter
8000bd08 000060 8000bd08 4 GetFontDescent CharWriter
8000bd68 000024 8000bd68 4 EnableLinearFilter CharWriter
8000bd8c 000130 8000bd8c 4 Print CharWriter
8000bebc 00027c 8000bebc 4 PrintGlyph CharWriter
8000c138 000150 8000c138 4 UpdateVertexColor CharWriter
8000c288 00034c 8000c288 4 SetupGXWithColorMapping CharWriter
8000c5d4 00005c 8000c5d4 4 TextWriterBase<char> TextWriterBase<char>
8000c630 000058 8000c630 4 ~TextWriterBase<char> TextWriterBase<char>
8000c688 00007c 8000c688 4 GetLineHeight TextWriterBase<char>
8000c704 000268 8000c704 4 Printf TextWriterBase<char>
8000c96c 000204 8000c96c 4 Print TextWriterBase<char>
8000cb70 000688 8000cb70 4 CalcLineRectImpl TextWriterBase<char>
8000d1f8 000038 8000d1f8 4 GetCharStrmReader Font
8000d230 000110 8000d230 4 CalcStringRectImpl TextWriterBase<char>
8000d340 000a38 8000d340 4 PrintImpl TextWriterBase<char>
8000dd78 00074c 8000dd78 4 AdjustCursor TextWriterBase<char>
8000e4c4 00005c 8000e4c4 4 TextWriterBase<wchar_t> TextWriterBase<wchar_t>
8000e520 000058 8000e520 4 ~TextWriterBase<wchar_t> TextWriterBase<wchar_t>
8000e578 00007c 8000e578 4 GetLineHeight TextWriterBase<wchar_t>
8000e5f4 0002a4 8000e5f4 4 CalcStringWidth TextWriterBase<wchar_t>
8000e898 000288 8000e898 4 CalcStringRect TextWriterBase<wchar_t>
8000eb20 000204 8000eb20 4 Print TextWriterBase<wchar_t>
8000ed24 000688 8000ed24 4 CalcLineRectImpl TextWriterBase<wchar_t>
8000f3ac 000120 8000f3ac 4 CalcStringRectImpl TextWriterBase<wchar_t>
8000f4cc 000a5c 8000f4cc 4 PrintImpl TextWriterBase<wchar_t>
8000ff28 00074c 8000ff28 4 AdjustCursor TextWriterBase<wchar_t>
80010674 000084 80010674 4 __sinit_\ut_TextWriterBase_cpp Global
800106f8 000084 800106f8 4 Draw DrawOrder
8001077c 000078 8001077c 4 Add DrawOrder
800107f4 000010 800107f4 4 Remove DrawOrder
80010804 000064 80010804 4 Effect Effect
80010868 000060 80010868 4 ~Effect Effect
800108c8 000134 800108c8 4 Initialize Effect
800109fc 00000c 800109fc 4 SendClosing Effect
80010a08 000004 80010a08 4 DestroyFunc Effect
80010a0c 000104 80010a0c 4 Closing Effect
80010b10 0000e0 80010b10 4 CreateEmitter Effect
80010bf0 000088 80010bf0 4 RetireEmitter Effect
80010c78 0000d8 80010c78 4 RetireEmitterAll Effect
80010d50 000084 80010d50 4 RetireParticleAll Effect
80010dd4 0003ec 80010dd4 4 Calc Effect
800111c0 00002c 800111c0 4 Draw Effect
800111f0 000008 800111f0 4 GetNumEmitter Effect
800111f8 000008 800111f8 4 GetEmitter Effect
80011200 000090 80011200 4 ForeachParticleManager Effect
80011290 0000d8 80011290 4 ForeachEmitterFrom Effect
80011368 000070 80011368 4 SetRootMtx Effect
800113d8 0000e0 800113d8 4 CreateEmitter Effect
800114b8 000060 800114b8 4 EffectSystem EffectSystem
80011518 00007c 80011518 4 ~EffectSystem EffectSystem
80011594 00000c 80011594 4 GetInstance EffectSystem
800115a0 000100 800115a0 4 Initialize EffectSystem
800116a0 000048 800116a0 4 SetOffset ActivityList
800116e8 000060 800116e8 4 Closing EffectSystem
80011748 00011c 80011748 4 CreateEffect EffectSystem
80011864 0000f0 80011864 4 RetireEffectAll EffectSystem
80011954 00008c 80011954 4 RetireEmitterAll EffectSystem
800119e0 00008c 800119e0 4 RetireParticleAll EffectSystem
80011a6c 00009c 80011a6c 4 Calc EffectSystem
80011b08 000084 80011b08 4 Draw EffectSystem
80011b8c 000098 80011b8c 4 __sinit_\ef_effectsystem_cpp Global
80011c24 000058 80011c24 4 Emitter Emitter
80011c7c 000040 80011c7c 4 ~Emitter Emitter
80011cbc 000084 80011cbc 4 RetireParticleAll Emitter
80011d40 00000c 80011d40 4 SendClosing Emitter
80011d4c 0000e8 80011d4c 4 DestroyFunc Emitter
80011e34 0000a8 80011e34 4 Closing Emitter
80011edc 0000d8 80011edc 4 RetireParticleManagerAll Emitter
80011fb4 0002c0 80011fb4 4 InitializeDatas Emitter
80012274 000158 80012274 4 Initialize Emitter
800123cc 0002a0 800123cc 4 CreateEmitter Emitter
8001266c 000680 8001266c 4 CreateEmitterTmp Emitter
80012cec 0000d4 80012cec 4 GetLODratio ef
80012dc0 000428 80012dc0 4 Emission Emitter
800131e8 0002dc 800131e8 4 CalcEmitter Emitter
800134c4 000088 800134c4 4 CalcParticle Emitter
8001354c 000114 8001354c 4 CalcEmission Emitter
80013660 000290 80013660 4 CalcBillboard Emitter
800138f0 0001a0 800138f0 4 RestructMatrix Emitter
80013a90 00015c 80013a90 4 CalcGlobalMtx Emitter
80013bec 0000e8 80013bec 4 SetMtxDirty Emitter
80013cd4 000008 80013cd4 4 GetNumParticleManager Emitter
80013cdc 000008 80013cdc 4 GetParticleManager Emitter
80013ce4 000048 80013ce4 4 foreachParticleManagerSub ef
80013d2c 0000e4 80013d2c 4 ForeachParticleManager Emitter
80013e10 001298 80013e10 4 AnimCurveExecuteU8 ef
800150a8 000f9c 800150a8 4 AnimCurveExecuteF32 ef
80016044 001088 80016044 4 AnimCurveExecuteRotate ef
800170cc 0005d4 800170cc 4 AnimCurveExecuteTexture ef
800176a0 000154 800176a0 4 createChild ef
800177f4 000da0 800177f4 4 AnimCurveExecuteChild ef
80018594 000010 80018594 4 Particle Particle
800185a4 000040 800185a4 4 ~Particle Particle
800185e4 00000c 800185e4 4 SendClosing Particle
800185f0 000004 800185f0 4 DestroyFunc Particle
800185f4 000310 800185f4 4 Initialize ParticleParameter
80018904 000770 80018904 4 Initialize Particle
80019074 0002b8 80019074 4 Draw_GetColor Particle
8001932c 000058 8001932c 4 ParticleManager ParticleManager
80019384 00000c 80019384 4 SendClosing ParticleManager
80019390 000004 80019390 4 DestroyFunc ParticleManager
80019394 00008c 80019394 4 Closing ParticleManager
80019420 0000c0 80019420 4 RetireParticleAll ParticleManager
800194e0 000138 800194e0 4 Initialize ParticleManager
80019618 000040 80019618 4 ~ParticleManager ParticleManager
80019658 00012c 80019658 4 CreateParticle ParticleManager
80019784 001598 80019784 4 Calc ParticleManager
8001ad1c 00003c 8001ad1c 4 Draw ParticleManager
8001ad5c 0000d8 8001ad5c 4 CalcGlobalMtx ParticleManager
8001ae34 00006c 8001ae34 4 BeginCalc ParticleManager
8001aea0 000040 8001aea0 4 EndCalc ParticleManager
8001aee0 0000f4 8001aee0 4 BeginDraw ParticleManager
8001afd4 000004 8001afd4 4 EndDraw ParticleManager
8001afd8 000420 8001afd8 4 Draw_ModifyColor ParticleManager
8001b3f8 000004 8001b3f8 4 __sinit_\ef_particlemanager_cpp Global
8001b3fc 00000c 8001b3fc 4 GetInstance Resource
8001b408 000048 8001b408 4 Initialize Resource
8001b450 000164 8001b450 4 breffRelocate ef
8001b5b4 0000b8 8001b5b4 4 breffSearchName ef
8001b66c 000094 8001b66c 4 breffIndexOf ef
8001b700 00008c 8001b700 4 breftRelocate ef
8001b78c 0000b8 8001b78c 4 breftSearchName ef
8001b844 00007c 8001b844 4 Add Resource
8001b8c0 0000b4 8001b8c0 4 FindEmitter Resource
8001b974 0000a4 8001b974 4 _FindEmitter Resource
8001ba18 0000c8 8001ba18 4 _FindTexture Resource
8001bae0 00007c 8001bae0 4 AddTexture Resource
8001bb5c 00010c 8001bb5c 4 relocateCurveTexture Resource
8001bc68 0000e8 8001bc68 4 relocateCurveChild Resource
8001bd50 000208 8001bd50 4 RelocateCommand Resource
8001bf58 0000a0 8001bf58 4 RemoveEffectProject Resource
8001bff8 0000a0 8001bff8 4 RemoveTextureProject Resource
8001c098 000050 8001c098 4 __sinit_\ef_resource_cpp Global
8001c0e8 000084 8001c0e8 4 UtlistToArray ef
8001c16c 000110 8001c16c 4 Rotation2VecY ef
8001c27c 0000f4 8001c27c 4 GetDirMtxY ef
8001c370 000144 8001c370 4 MtxGetRotationMtx ef
8001c4b4 000194 8001c4b4 4 MtxGetRotation ef
8001c648 00001c 8001c648 4 MtxGetTranslate ef
8001c664 000468 8001c664 4 MtxGetScale ef
8001cacc 000010 8001cacc 4 HandleBase HandleBase
8001cadc 000014 8001cadc 4 operator_= HandleBase
8001caf0 000028 8001caf0 4 operator_= HandleBase
8001cb18 00002c 8001cb18 4 IsValid HandleBase
8001cb44 000040 8001cb44 4 GetPtr HandleBase
8001cb84 00051c 8001cb84 4 CalcVelocity EmitterForm
8001d0a0 0000d4 8001d0a0 4 CalcLife EmitterForm
8001d174 00000c 8001d174 4 CreationQueue CreationQueue
8001d180 0000c4 8001d180 4 AddParticleCreation CreationQueue
8001d244 0000c4 8001d244 4 AddEmitterCreation CreationQueue
8001d308 000124 8001d308 4 Execute CreationQueue
8001d42c 000060 8001d42c 4 Create EmitFormBuilder
8001d48c 000058 8001d48c 4 __sinit_\ef_emform_cpp Global
8001d4e4 000354 8001d4e4 4 Emission EmitterFormPoint
8001d838 00039c 8001d838 4 Emission EmitterFormLine
8001dbd4 000528 8001dbd4 4 Emission EmitterFormDisc
8001e0fc 0008f4 8001e0fc 4 Emission EmitterFormSphere
8001e9f0 00046c 8001e9f0 4 EmissionSub EmitterFormCylinder
8001ee5c 000348 8001ee5c 4 Emission EmitterFormCylinder
8001f1a4 0006a0 8001f1a4 4 Emission EmitterFormTorus
8001f844 0003b8 8001f844 4 EmissionSub EmitterFormCube
8001fbfc 001788 8001fbfc 4 Emission EmitterFormCube
80021384 0001e4 80021384 4 Create DrawStrategyBuilder
80021568 000040 80021568 4 ~DrawBillboardStrategy DrawBillboardStrategy
800215a8 000040 800215a8 4 ~DrawDirectionalStrategy DrawDirectionalStrategy
800215e8 000040 800215e8 4 ~DrawFreeStrategy DrawFreeStrategy
80021628 000040 80021628 4 ~DrawLineStrategy DrawLineStrategy
80021668 000040 80021668 4 ~DrawPointStrategy DrawPointStrategy
800216a8 000040 800216a8 4 ~DrawStripeStrategy DrawStripeStrategy
800216e8 000040 800216e8 4 ~DrawSmoothStripeStrategy DrawSmoothStripeStrategy
80021728 000310 80021728 4 DrawStrategyImpl DrawStrategyImpl
80021a38 000070 80021a38 4 InitTexture DrawStrategyImpl
80021aa8 0002e0 80021aa8 4 InitTev DrawStrategyImpl
80021d88 0002b0 80021d88 4 InitColor DrawStrategyImpl
80022038 0004d8 80022038 4 SetupGP DrawStrategyImpl
80022510 00036c 80022510 4 _SetupTevReg DrawStrategyImpl
8002287c 0006d8 8002287c 4 _SetupTexture DrawStrategyImpl
80022f54 000024 80022f54 4 GetGetFirstDrawParticleFunc DrawStrategyImpl
80022f78 000024 80022f78 4 GetGetNextDrawParticleFunc DrawStrategyImpl
80022f9c 000030 80022f9c 4 GetFirstDrawParticle_EldersFirst DrawStrategyImpl
80022fcc 000048 80022fcc 4 GetFirstDrawParticle_YoungersFirst DrawStrategyImpl
80023014 000030 80023014 4 GetNextDrawParticle_EldersFirst DrawStrategyImpl
80023044 000028 80023044 4 GetNextDrawParticle_YoungersFirst DrawStrategyImpl
8002306c 000260 8002306c 4 AheadContext AheadContext
800232cc 000040 800232cc 4 ~DrawStrategyImpl DrawStrategyImpl
8002330c 000088 8002330c 4 __sinit_\ef_drawstrategyimpl_cpp Global
80023394 00003c 80023394 4 DrawBillboardStrategy DrawBillboardStrategy
800233d0 000038 800233d0 4 Draw DrawBillboardStrategy
8002340c 0007b0 8002340c 4 DrawNormalBillboard DrawBillboardStrategy
80023bbc 000758 80023bbc 4 DrawYBillboard DrawBillboardStrategy
80024314 000690 80024314 4 DrawDirectionalBillboard DrawBillboardStrategy
800249a4 0001dc 800249a4 4 CalcZOffset DrawBillboardStrategy
80024b80 000110 80024b80 4 InitGraphics DrawBillboardStrategy
80024c90 00007c 80024c90 4 GetCalcAheadFunc DrawBillboardStrategy
80024d0c 000108 80024d0c 4 CalcAhead_Speed DrawStrategyImpl
80024e14 0000f0 80024e14 4 CalcAhead_EmitterCenter DrawStrategyImpl
80024f04 00001c 80024f04 4 CalcAhead_EmitterDesign DrawStrategyImpl
80024f20 000144 80024f20 4 CalcAhead_Particle DrawStrategyImpl
80025064 0002dc 80025064 4 CalcAhead_ParticleBoth DrawStrategyImpl
80025340 00003c 80025340 4 DrawDirectionalStrategy DrawDirectionalStrategy
8002537c 000138 8002537c 4 DrawQuad ef
800254b4 000004 800254b4 4 VEC3 VEC3
800254b8 00003c 800254b8 4 VEC3Transform math
800254f4 000004 800254f4 4 __opPA4_Cf MTX34
800254f8 00018c 800254f8 4 DrawQuad ef
80025684 000134 80025684 4 Draw DrawDirectionalStrategy
800257b8 000008 800257b8 4 GetEmitterDrawSetting EmitterResource
800257c0 000bac 800257c0 4 DrawDirectional DrawDirectionalStrategy
8002636c 000004 8002636c 4 GetViewMtx DrawInfo
80026370 000004 80026370 4 MTX34 MTX34
80026374 00003c 80026374 4 MTX34Mult math
800263b0 00001c 800263b0 4 operator_= VEC3
800263cc 000010 800263cc 4 VEC3 VEC3
800263dc 0000a4 800263dc 4 Normalize DrawStrategyImpl
80026480 000020 80026480 4 VEC3Dot math
800264a0 000050 800264a0 4 FSqrt math
800264f0 000008 800264f0 4 GetYoungestParticle DrawStrategyImpl
800264f8 00000c 800264f8 4 GetElderParticle DrawStrategyImpl
80026504 00001c 80026504 4 Draw_GetSizeX Particle
80026520 00007c 80026520 4 Draw_GetSizeY Particle
8002659c 000048 8002659c 4 GetMoveDir Particle
800265e4 0003b0 800265e4 4 CalcRotate ef
80026994 000044 80026994 4 MTX34 MTX34
800269d8 000208 800269d8 4 CalcLocalTransform ef
80026be0 00003c 80026be0 4 VEC3Cross math
80026c1c 000680 80026c1c 4 DrawDirectionalBillboard DrawDirectionalStrategy
8002729c 0000fc 8002729c 4 InitGraphics DrawDirectionalStrategy
80027398 00007c 80027398 4 GetCalcAheadFunc DrawDirectionalStrategy
80027414 000030 80027414 4 CalcAhead_NoDesign DrawStrategyImpl
80027444 00003c 80027444 4 DrawFreeStrategy DrawFreeStrategy
80027480 000138 80027480 4 DrawQuad ef
800275b8 000618 800275b8 4 Draw DrawFreeStrategy
80027bd0 00003c 80027bd0 4 DrawLineStrategy DrawLineStrategy
80027c0c 0004a0 80027c0c 4 Draw DrawLineStrategy
800280ac 00003c 800280ac 4 DrawPointStrategy DrawPointStrategy
800280e8 0002b8 800280e8 4 Draw DrawPointStrategy
800283a0 00003c 800283a0 4 DrawStripeStrategy DrawStripeStrategy
800283dc 000350 800283dc 4 DrawStripe DrawStripeStrategy
8002872c 000008 8002872c 4 GetNumDrawParticle DrawStrategyImpl
80028734 00000c 80028734 4 GetStripeTexmapType DrawStripeStrategy
80028740 000494 80028740 4 DrawParticle DrawStripeStrategy
80028bd4 000004 80028bd4 4 GXEnd Global
80028bd8 0004b8 80028bd8 4 CalcVertexTube DrawStripeStrategy
80029090 00039c 80029090 4 DrawTubeSegment DrawStripeStrategy
8002942c 0002bc 8002942c 4 DrawStripeTube_ConnectNone DrawStripeStrategy
800296e8 000340 800296e8 4 DrawStripeTube_ConnectRing DrawStripeStrategy
80029a28 0003b8 80029a28 4 DrawStripeTube_ConnectEmitter DrawStripeStrategy
80029de0 0001fc 80029de0 4 DrawStripeTube DrawStripeStrategy
80029fdc 0005ec 80029fdc 4 Draw DrawStripeStrategy
8002a5c8 000188 8002a5c8 4 GetInitialPrevAxis DrawStripeStrategy
8002a750 0000b4 8002a750 4 GetCalcAheadFunc DrawStripeStrategy
8002a804 00014c 8002a804 4 CalcAhead_Particle_Stripe DrawStripeStrategy
8002a950 0002dc 8002a950 4 CalcAhead_ParticleBoth_Stripe DrawStripeStrategy
8002ac2c 00032c 8002ac2c 4 CalcAhead_ParticleBoth_Ring DrawStripeStrategy
8002af58 000294 8002af58 4 CalcAhead_ParticleBoth_Origin DrawStripeStrategy
8002b1ec 00003c 8002b1ec 4 DrawSmoothStripeStrategy DrawSmoothStripeStrategy
8002b228 0003f0 8002b228 4 CalcVertex DrawSmoothStripeStrategy
8002b618 0004b8 8002b618 4 CalcVertexTube DrawSmoothStripeStrategy
8002bad0 000288 8002bad0 4 DrawSection_BSpline DrawSmoothStripeStrategy
8002bd58 000024 8002bd58 4 operator_+ VEC3
8002bd7c 0001e4 8002bd7c 4 DrawSectionEnd_BSpline DrawSmoothStripeStrategy
8002bf60 0008d4 8002bf60 4 DrawSectionTube_BSpline DrawSmoothStripeStrategy
8002c834 000004 8002c834 4 GXEnd Global
8002c838 00034c 8002c838 4 DrawSmoothStripe_BSpline_ConnectNone DrawSmoothStripeStrategy
8002cb84 00000c 8002cb84 4 GetDrawOrder DrawSmoothStripeStrategy
8002cb90 00000c 8002cb90 4 GetStripeTexmapType DrawSmoothStripeStrategy
8002cb9c 000004 8002cb9c 4 Vertex Vertex
8002cba0 000420 8002cba0 4 DrawSmoothStripe_BSpline_ConnectRing DrawSmoothStripeStrategy
8002cfc0 0004a4 8002cfc0 4 DrawSmoothStripe_BSpline_ConnectEmitter DrawSmoothStripeStrategy
8002d464 000048 8002d464 4 GetYoungestDrawParticle DrawStrategyImpl
8002d4ac 000024 8002d4ac 4 operator_- VEC3
8002d4d0 000024 8002d4d0 4 operator_+= VEC3
8002d4f4 000038 8002d4f4 4 Vertex Vertex
8002d52c 00003c 8002d52c 4 operator_= Vertex
8002d568 0002f8 8002d568 4 DrawSmoothStripeTube_BSpline_ConnectNone DrawSmoothStripeStrategy
8002d860 0003b4 8002d860 4 DrawSmoothStripeTube_BSpline_ConnectRing DrawSmoothStripeStrategy
8002dc14 000568 8002dc14 4 DrawSmoothStripeTube_BSpline_ConnectEmitter DrawSmoothStripeStrategy
8002e17c 000218 8002e17c 4 DrawSmoothStripeTube DrawSmoothStripeStrategy
8002e394 000748 8002e394 4 Draw DrawSmoothStripeStrategy
8002eadc 000188 8002eadc 4 GetInitialPrevAxis DrawSmoothStripeStrategy
8002ec64 0000b4 8002ec64 4 GetCalcAheadFunc DrawSmoothStripeStrategy
8002ed18 00014c 8002ed18 4 CalcAhead_Particle_Stripe DrawSmoothStripeStrategy
8002ee64 0002dc 8002ee64 4 CalcAhead_ParticleBoth_Stripe DrawSmoothStripeStrategy
8002f140 00032c 8002f140 4 CalcAhead_ParticleBoth_Ring DrawSmoothStripeStrategy
8002f46c 000294 8002f46c 4 CalcAhead_ParticleBoth_Origin DrawSmoothStripeStrategy
8002f700 000030 8002f700 4 FUN_8002f700 Global
8002f730 00002c 8002f730 4 FUN_8002f730 Global
8002f75c 00008c 8002f75c 4 FExp detail
8002f7e8 00008c 8002f7e8 4 FLog detail
8002f874 000024 8002f874 4 FrSqrt math
8002f898 00006c 8002f898 4 SinFIdx math
8002f904 00005c 8002f904 4 CosFIdx math
8002f960 000084 8002f960 4 SinCosFIdx math
8002f9e4 000150 8002f9e4 4 AtanFIdx math
8002fb34 0001a8 8002fb34 4 Atan2FIdx math
8002fcdc 000040 8002fcdc 4 VEC3Maximize math
8002fd1c 000040 8002fd1c 4 VEC3Minimize Global
8002fd5c 000024 8002fd5c 4 MTX33Identity Global
8002fd80 000034 8002fd80 4 MTX34ToMTX33 math
8002fdb4 0000c8 8002fdb4 4 MTX34InvTranspose math
8002fe7c 000020 8002fe7c 4 MTX34Zero math
8002fe9c 000054 8002fe9c 4 MTX34Scale math
8002fef0 00006c 8002fef0 4 MTX34Trans math
8002ff5c 000038 8002ff5c 4 MTX34RotAxisFIdx math
8002ff94 00014c 8002ff94 4 MTX34RotXYZFIdx math
800300e0 000090 800300e0 4 VEC3TransformNormal math
80030170 000034 80030170 4 MTX44Identity math
800301a4 000044 800301a4 4 MTX44Copy math
800301e8 0000bc 800301e8 4 Set AABB
800302a4 0001d8 800302a4 4 Set AABB
8003047c 0000b4 8003047c 4 Set FRUSTUM
80030530 0006a8 80030530 4 Set FRUSTUM
80030bd8 0001a4 80030bd8 4 IntersectAABB_Ex FRUSTUM
80030d7c 000054 80030d7c 4 ~SoundHandle SoundHandle
80030dd0 0004a0 80030dd0 4 AxManager AxManager
80031290 000058 80031290 4 ~LinkList LinkList<nw4r::snd::FxBase,4>
800312e8 000064 800312e8 4 GetInstance AxManager
8003134c 000078 8003134c 4 ~AxManager AxManager
800313c4 0000d4 800313c4 4 Init AxManager
80031498 0000a8 80031498 4 Shutdown AxManager
80031540 00006c 80031540 4 GetOutputVolume AxManager
800315ac 000424 800315ac 4 Update AxManager
800319d0 000008 800319d0 4 GetZeroBufferAddress AxManager
800319d8 00006c 800319d8 4 RegisterCallback AxManager
80031a44 000058 80031a44 4 UnregisterCallback AxManager
80031a9c 000080 80031a9c 4 SetOutputMode AxManager
80031b1c 000008 80031b1c 4 GetOutputMode AxManager
80031b24 0000e0 80031b24 4 SetMasterVolume AxManager
80031c04 000158 80031c04 4 AxCallbackFunc AxManager
80031d5c 000204 80031d5c 4 AppendEffect AxManager
80031f60 0000c8 80031f60 4 ClearEffect AxManager
80032028 0000e8 80032028 4 ShutdownEffect AxManager
80032110 0002d8 80032110 4 AuxCallbackFunc AxManager
800323e8 0000c8 800323e8 4 PrepareReset AxManager
800324b0 000128 800324b0 4 AiDmaCallbackFunc AxManager
800325d8 000044 800325d8 4 AxVoice AxVoice
8003261c 000040 8003261c 4 ~AxVoice AxVoice
8003265c 000080 8003265c 4 Setup AxVoice
800326dc 000140 800326dc 4 IsPlayFinished AxVoice
8003281c 000124 8003281c 4 SetLoopStart AxVoice
80032940 000130 80032940 4 SetLoopEnd AxVoice
80032a70 000098 80032a70 4 SetLoopFlag AxVoice
80032b08 000204 80032b08 4 StopAtPoint AxVoice
80032d0c 000098 80032d0c 4 IsDataAddressCoverd AxVoice
80032da4 0001b4 80032da4 4 GetCurrentPlayingSample AxVoice
80032f58 00005c 80032f58 4 VoiceCallback AxVoice
80032fb4 00006c 80032fb4 4 GetSampleByDspAddress AxVoice
80033020 00005c 80033020 4 GetSampleByByte AxVoice
8003307c 0d18e0 8003307c 4 AXSetVoicePriority Global
80033090 000060 80033090 4 SetVoiceType AxVoice
800330f0 000060 800330f0 4 EnableRemote AxVoice
80033150 000150 80033150 4 ResetDelta AxVoice
800332a0 0003b4 800332a0 4 SetAddr AxVoice
80033654 0000e0 80033654 4 SetSrcType AxVoice
80033734 000150 80033734 4 SetAdpcm AxVoice
80033884 0000d8 80033884 4 SetAdpcmLoop AxVoice
8003395c 0005ec 8003395c 4 SetMix AxVoice
80033f48 000088 80033f48 4 SetRmtMix AxVoice
80033fd0 0001a8 80033fd0 4 SetSrc AxVoice
80034178 0000dc 80034178 4 SetVe AxVoice
80034254 000190 80034254 4 SetLpf AxVoice
800343e4 000190 800343e4 4 SetRemoteFilter AxVoice
80034574 00013c 80034574 4 CalcOffsetAdpcmParam AxVoice
800346b0 0001a4 800346b0 4 Sync AxVoiceParamBlock
80034854 00002c 80034854 4 Set AxVoiceParamBlock
80034880 000278 80034880 4 SetVoiceMix AxVoiceParamBlock
80034af8 0000e0 80034af8 4 SetVoiceSrcType AxVoiceParamBlock
80034bd8 0001ec 80034bd8 4 SetVoiceRmtMix AxVoiceParamBlock
80034dc4 000184 80034dc4 4 SetVoiceRmtIIRCoefs AxVoiceParamBlock
80034f48 0000a4 80034f48 4 GetInstance AxVoiceManager
80034fec 000084 80034fec 4 ~AxVoiceManager AxVoiceManager
80035070 000028 80035070 4 GetRequiredMemSize AxVoiceManager
80035098 0000a4 80035098 4 Setup AxVoiceManager
8003513c 000294 8003513c 4 Shutdown AxVoiceManager
800353d0 0002d0 800353d0 4 AcquireAxVoice AxVoiceManager
800356a0 0000cc 800356a0 4 FreeAxVoice AxVoiceManager
8003576c 000094 8003576c 4 ReserveForFreeAxVoice AxVoiceManager
80035800 000180 80035800 4 FreeAllReservedAxVoice AxVoiceManager
80035980 000048 80035980 4 CreateHeap AxfxImpl
800359c8 000010 800359c8 4 DestroyHeap AxfxImpl
800359dc 00004c 800359dc 4 HookAlloc AxfxImpl
80035a28 000030 80035a28 4 RestoreAlloc AxfxImpl
80035a58 000060 80035a58 4 Alloc AxfxImpl
80035ab8 000034 80035ab8 4 Free AxfxImpl
80035af0 000038 80035af0 4 Bank Bank
80035b28 000040 80035b28 4 ~Bank Bank
80035b68 0001b0 80035b68 4 NoteOn Bank
80035d18 00007c 80035d18 4 BankFileReader BankFileReader
80035d94 0001ac 80035d94 4 ReadInstInfo BankFileReader
80035f40 000128 80035f40 4 GetReferenceToSubRegion BankFileReader
80036068 0000b8 80036068 4 ReadWaveParam BankFileReader
80036120 000044 80036120 4 BasicPlayer BasicPlayer
80036164 00007c 80036164 4 InitParam BasicPlayer
800361e0 000010 800361e0 4 SetFxSend BasicPlayer
800361f0 000010 800361f0 4 GetFxSend BasicPlayer
80036200 000010 80036200 4 SetRemoteOutVolume BasicPlayer
80036210 000010 80036210 4 GetRemoteOutVolume BasicPlayer
80036220 000010 80036220 4 GetRemoteSend BasicPlayer
80036230 000010 80036230 4 GetRemoteFxSend BasicPlayer
80036240 000040 80036240 4 ~BasicPlayer BasicPlayer
80036280 000094 80036280 4 BasicSound BasicSound
80036314 000118 80036314 4 InitParam BasicSound
8003642c 000018 8003642c 4 StartPrepared BasicSound
80036444 0001d0 80036444 4 Stop BasicSound
80036614 000284 80036614 4 Pause BasicSound
80036898 000018 80036898 4 SetAutoStopCounter BasicSound
800368b0 000104 800368b0 4 FadeIn BasicSound
800369b4 000008 800369b4 4 IsPause BasicSound
800369bc 00055c 800369bc 4 Update BasicSound
80036f18 000170 80036f18 4 Shutdown BasicSound
80037088 000050 80037088 4 SetPlayerPriority BasicSound
800370d8 00002c 800370d8 4 SetInitialVolume BasicSound
80037104 0000a4 80037104 4 SetVolume BasicSound
800371a8 000008 800371a8 4 SetPitch BasicSound
800371b0 000008 800371b0 4 SetPan BasicSound
800371b8 000008 800371b8 4 SetSurroundPan BasicSound
800371c0 00003c 800371c0 4 SetLpfFreq BasicSound
800371fc 000010 800371fc 4 SetOutputLine BasicSound
8003720c 00002c 8003720c 4 SetMainOutVolume BasicSound
80037238 000034 80037238 4 SetRemoteOutVolume BasicSound
8003726c 000050 8003726c 4 SetFxSend BasicSound
800372bc 000054 800372bc 4 SetRemoteFilter BasicSound
80037310 00003c 80037310 4 SetPanMode BasicSound
8003734c 00003c 8003734c 4 SetPanCurve BasicSound
80037388 000014 80037388 4 SetAmbientParamCallback BasicSound
8003739c 000014 8003739c 4 IsAttachedGeneralHandle BasicSound
800373b0 000014 800373b0 4 IsAttachedTempGeneralHandle BasicSound
800373c4 000008 800373c4 4 DetachGeneralHandle BasicSound
800373cc 000008 800373cc 4 DetachTempGeneralHandle BasicSound
800373d4 000040 800373d4 4 SetId BasicSound
80037414 000040 80037414 4 ~BasicSound BasicSound
80037454 000008 80037454 4 GetRuntimeTypeInfo BasicSound
8003745c 00000c 8003745c 4 __sinit_\snd_BasicSound_cpp Global
80037468 00007c 80037468 4 GetInstance ChannelManager
800374e4 000060 800374e4 4 ~ChannelManager ChannelManager
80037544 000028 80037544 4 GetRequiredMemSize ChannelManager
8003756c 000094 8003756c 4 Setup ChannelManager
80037600 00015c 80037600 4 Shutdown ChannelManager
8003775c 000054 8003775c 4 UpdateAllChannel ChannelManager
800377b0 000118 800377b0 4 InitParam Channel
800378c8 000754 800378c8 4 Update Channel
8003801c 000080 8003801c 4 Start Channel
8003809c 000068 8003809c 4 Release Channel
80038104 000108 80038104 4 Stop Channel
8003820c 000020 8003820c 4 UpdateSweep Channel
8003822c 000018 8003822c 4 SetSweepParam Channel
80038244 00012c 80038244 4 VoiceCallbackFunc Channel
80038370 0001fc 80038370 4 AllocChannel Channel
8003856c 000018 8003856c 4 FreeChannel Channel
80038584 000088 80038584 4 GetInstance DisposeCallbackManager
8003860c 00005c 8003860c 4 ~DisposeCallbackManager DisposeCallbackManager
80038668 000030 80038668 4 RegisterDisposeCallback DisposeCallbackManager
80038698 000004 80038698 4 UnregisterDisposeCallback DisposeCallbackManager
8003869c 000124 8003869c 4 Dispose DisposeCallbackManager
800387c0 000124 800387c0 4 DisposeWave DisposeCallbackManager
800388e4 00004c 800388e4 4 DvdSoundArchive DvdSoundArchive
80038930 000080 80038930 4 ~DvdSoundArchive DvdSoundArchive
800389b0 000160 800389b0 4 Open DvdSoundArchive
80038b10 000040 80038b10 4 Close DvdSoundArchive
80038b50 0000b8 80038b50 4 OpenStream DvdSoundArchive
80038c08 0000c8 80038c08 4 OpenExtStream DvdSoundArchive
80038cd0 000008 80038cd0 4 detail_GetRequiredStreamBufferSize DvdSoundArchive
80038cd8 000088 80038cd8 4 LoadHeader DvdSoundArchive
80038d60 000088 80038d60 4 LoadLabelStringData DvdSoundArchive
80038de8 00002c 80038de8 4 Read DvdFileStream
80038e14 000084 80038e14 4 Seek DvdFileStream
80038e9c 000008 80038e9c 4 GetSize DvdFileStream
80038ea4 000010 80038ea4 4 Tell DvdFileStream
80038eb4 000008 80038eb4 4 detail_GetWaveDataFileAddress DvdSoundArchive
80038ebc 000008 80038ebc 4 detail_GetFileAddress DvdSoundArchive
80038ec4 000058 80038ec4 4 ~DvdFileStream DvdFileStream
80038f1c 000040 80038f1c 4 EnvGenerator EnvGenerator
80038f5c 00003c 80038f5c 4 Init EnvGenerator
80038f98 000018 80038f98 4 Reset EnvGenerator
80038fb0 00002c 80038fb0 4 GetValue EnvGenerator
80038fdc 000124 80038fdc 4 Update EnvGenerator
80039100 000018 80039100 4 SetAttack EnvGenerator
80039118 0000a0 80039118 4 SetDecay EnvGenerator
800391b8 000008 800391b8 4 SetSustain EnvGenerator
800391c0 0000a0 800391c0 4 SetRelease EnvGenerator
80039260 000030 80039260 4 ExternalSoundPlayer ExternalSoundPlayer
80039290 000088 80039290 4 ~ExternalSoundPlayer ExternalSoundPlayer
80039318 0000c0 80039318 4 SetPlayableSoundCount ExternalSoundPlayer
800393d8 00004c 800393d8 4 InsertSoundList ExternalSoundPlayer
80039424 000038 80039424 4 RemoveSoundList ExternalSoundPlayer
8003945c 00005c 8003945c 4 GetLowestPrioritySound ExternalSoundPlayer
800394b8 000024 800394b8 4 FrameHeap FrameHeap
800394dc 000114 800394dc 4 ~FrameHeap FrameHeap
800395f0 00019c 800395f0 4 Create FrameHeap
8003978c 0000f0 8003978c 4 Destroy FrameHeap
8003987c 00012c 8003987c 4 Clear FrameHeap
800399a8 0000a4 800399a8 4 Alloc FrameHeap
80039a4c 0000cc 80039a4c 4 SaveState FrameHeap
80039b18 000224 80039b18 4 LoadState FrameHeap
80039d3c 00000c 80039d3c 4 GetCurrentLevel FrameHeap
80039d48 000040 80039d48 4 GetFreeSize FrameHeap
80039d88 000074 80039d88 4 FxChorus FxChorus
80039dfc 00002c 80039dfc 4 GetRequiredMemSize FxChorus
80039e28 000008 80039e28 4 AssignWorkBuffer FxChorus
80039e30 000008 80039e30 4 ReleaseWorkBuffer FxChorus
80039e38 0000bc 80039e38 4 StartUp FxChorus
80039ef4 000060 80039ef4 4 Shutdown FxChorus
80039f54 00016c 80039f54 4 SetParam FxChorus
8003a0c0 000044 8003a0c0 4 UpdateBuffer FxChorus
8003a104 00007c 8003a104 4 ~FxChorus FxChorus
8003a180 000174 8003a180 4 FxDelay FxDelay
8003a2f4 00002c 8003a2f4 4 GetRequiredMemSize FxDelay
8003a320 000008 8003a320 4 AssignWorkBuffer FxDelay
8003a328 000008 8003a328 4 ReleaseWorkBuffer FxDelay
8003a330 0000bc 8003a330 4 StartUp FxDelay
8003a3ec 000060 8003a3ec 4 Shutdown FxDelay
8003a44c 00015c 8003a44c 4 SetParam FxDelay
8003a5a8 000044 8003a5a8 4 UpdateBuffer FxDelay
8003a5ec 00007c 8003a5ec 4 ~FxDelay FxDelay
8003a668 00008c 8003a668 4 FxReverbHi FxReverbHi
8003a6f4 00002c 8003a6f4 4 GetRequiredMemSize FxReverbHi
8003a720 000008 8003a720 4 AssignWorkBuffer FxReverbHi
8003a728 000008 8003a728 4 ReleaseWorkBuffer FxReverbHi
8003a730 0000bc 8003a730 4 StartUp FxReverbHi
8003a7ec 000060 8003a7ec 4 Shutdown FxReverbHi
8003a84c 0001ec 8003a84c 4 SetParam FxReverbHi
8003aa38 000044 8003aa38 4 UpdateBuffer FxReverbHi
8003aa7c 00007c 8003aa7c 4 ~FxReverbHi FxReverbHi
8003aaf8 00008c 8003aaf8 4 FxReverbHiDpl2 FxReverbHiDpl2
8003ab84 00002c 8003ab84 4 GetRequiredMemSize FxReverbHiDpl2
8003abb0 000008 8003abb0 4 AssignWorkBuffer FxReverbHiDpl2
8003abb8 000008 8003abb8 4 ReleaseWorkBuffer FxReverbHiDpl2
8003abc0 0000bc 8003abc0 4 StartUp FxReverbHiDpl2
8003ac7c 000060 8003ac7c 4 Shutdown FxReverbHiDpl2
8003acdc 0001ec 8003acdc 4 SetParam FxReverbHiDpl2
8003aec8 00004c 8003aec8 4 UpdateBuffer FxReverbHiDpl2
8003af14 00007c 8003af14 4 ~FxReverbHiDpl2 FxReverbHiDpl2
8003af90 000144 8003af90 4 CreateImpl PoolImpl
8003b0d4 000080 8003b0d4 4 DestroyImpl PoolImpl
8003b154 000050 8003b154 4 CountImpl PoolImpl
8003b1a4 00005c 8003b1a4 4 AllocImpl PoolImpl
8003b200 000048 8003b200 4 FreeImpl PoolImpl
8003b248 000024 8003b248 4 Init LfoParam
8003b26c 000014 8003b26c 4 Reset Lfo
8003b280 00009c 8003b280 4 Update Lfo
8003b31c 00011c 8003b31c 4 GetValue Lfo
8003b438 00004c 8003b438 4 MemorySoundArchive MemorySoundArchive
8003b484 000058 8003b484 4 ~MemorySoundArchive MemorySoundArchive
8003b4dc 000078 8003b4dc 4 Setup MemorySoundArchive
8003b554 00000c 8003b554 4 Shutdown MemorySoundArchive
8003b560 0000b0 8003b560 4 detail_GetFileAddress MemorySoundArchive
8003b610 0000b0 8003b610 4 detail_GetWaveDataFileAddress MemorySoundArchive
8003b6c0 000060 8003b6c0 4 OpenStream MemorySoundArchive
8003b720 000008 8003b720 4 OpenExtStream MemorySoundArchive
8003b728 000008 8003b728 4 detail_GetRequiredStreamBufferSize MemorySoundArchive
8003b730 000014 8003b730 4 Close MemoryFileStream
8003b744 000058 8003b744 4 Read MemoryFileStream
8003b79c 00004c 8003b79c 4 Seek MemoryFileStream
8003b7ec 000008 8003b7ec 4 GetSize MemoryFileStream
8003b7f4 000008 8003b7f4 4 Tell MemoryFileStream
8003b7fc 000008 8003b7fc 4 CanWrite MemoryFileStream
8003b804 000008 8003b804 4 CanRead MemoryFileStream
8003b80c 000008 8003b80c 4 CanAsync MemoryFileStream
8003b814 000008 8003b814 4 CanCancel MemoryFileStream
8003b81c 000008 8003b81c 4 CanSeek MemoryFileStream
8003b824 000040 8003b824 4 ~MemoryFileStream MemoryFileStream
8003b864 000004 8003b864 4 OnUpdateFrameSoundThread SeqPlayer
8003b868 000010 8003b868 4 OnShutdownSoundThread SeqPlayer
8003b878 000004 8003b878 4 InvalidateWaveData SeqPlayer
8003b87c 000004 8003b87c 4 OnUpdateSoundThread PlayerCallback
8003b880 000008 8003b880 4 IsPause SeqPlayer
8003b888 000008 8003b888 4 IsStarted SeqPlayer
8003b890 000008 8003b890 4 IsActive SeqPlayer
8003b898 000008 8003b898 4 InvalidateWaveData SeqPlayer
8003b8a0 000008 8003b8a0 4 InvalidateData SeqPlayer
8003b8a8 000008 8003b8a8 4 OnShutdownSoundThread SeqPlayer
8003b8b0 000008 8003b8b0 4 OnUpdateFrameSoundThread SeqPlayer
8003b8b8 000630 8003b8b8 4 Parse MmlParser
8003bee8 000738 8003bee8 4 CommandProc MmlParser
8003c620 000018 8003c620 4 NoteOnCommandProc MmlParser
8003c638 00016c 8003c638 4 ReadArg MmlParser
8003c7a4 000054 8003c7a4 4 MmlSeqTrack MmlSeqTrack
8003c7f8 000014 8003c7f8 4 Parse MmlSeqTrack
8003c80c 000058 8003c80c 4 ~MmlSeqTrack MmlSeqTrack
8003c864 000068 8003c864 4 AllocTrack MmlSeqTrackAllocator
8003c8cc 000068 8003c8cc 4 FreeTrack MmlSeqTrackAllocator
8003c934 00000c 8003c934 4 Create MmlSeqTrackAllocator
8003c940 000008 8003c940 4 Destroy MmlSeqTrackAllocator
8003c948 000008 8003c948 4 GetAllocatableTrackCount MmlSeqTrackAllocator
8003c950 000040 8003c950 4 ~MmlSeqTrackAllocator MmlSeqTrackAllocator
8003c990 00004c 8003c990 4 NandSoundArchive NandSoundArchive
8003c9dc 00008c 8003c9dc 4 ~NandSoundArchive NandSoundArchive
8003ca68 000144 8003ca68 4 Open NandSoundArchive
8003cbac 00004c 8003cbac 4 Close NandSoundArchive
8003cbf8 0000c8 8003cbf8 4 OpenStream NandSoundArchive
8003ccc0 0000ec 8003ccc0 4 OpenExtStream NandSoundArchive
8003cdac 000058 8003cdac 4 ~NandFileStream NandSoundArchive
8003ce04 000008 8003ce04 4 detail_GetRequiredStreamBufferSize NandSoundArchive
8003ce0c 0000bc 8003ce0c 4 LoadFileHeader NandSoundArchive
8003cec8 0000b0 8003cec8 4 LoadHeader NandSoundArchive
8003cf78 0000b0 8003cf78 4 LoadLabelStringData NandSoundArchive
8003d028 000084 8003d028 4 Read NandFileStream
8003d0ac 000084 8003d0ac 4 Seek NandFileStream
8003d134 000008 8003d134 4 GetSize NandFileStream
8003d13c 000010 8003d13c 4 Tell NandFileStream
8003d14c 000008 8003d14c 4 detail_GetWaveDataFileAddress NandSoundArchive
8003d154 000008 8003d154 4 detail_GetFileAddress NandSoundArchive
8003d15c 000084 8003d15c 4 RemoteSpeaker RemoteSpeaker
8003d1e0 0000c4 8003d1e0 4 Setup RemoteSpeaker
8003d2a4 0000ac 8003d2a4 4 Shutdown RemoteSpeaker
8003d350 000014 8003d350 4 EnableOutput RemoteSpeaker
8003d370 00001c 8003d370 4 IsEnabledOutput RemoteSpeaker
8003d38c 0000d0 8003d38c 4 ExecCommand RemoteSpeaker
8003d460 000314 8003d460 4 UpdateStreamData RemoteSpeaker
8003d774 00010c 8003d774 4 SpeakerOnCallback RemoteSpeaker
8003d880 0000e8 8003d880 4 SpeakerPlayCallback RemoteSpeaker
8003d968 0000e8 8003d968 4 SpeakerOffCallback RemoteSpeaker
8003da50 000058 8003da50 4 ContinueAlarmHandler RemoteSpeaker
8003daa8 000074 8003daa8 4 IntervalAlarmHandler RemoteSpeaker
8003db1c 000098 8003db1c 4 GetInstance RemoteSpeakerManager
8003dbb4 000010 8003dbb4 4 GetRemoteSpeaker RemoteSpeakerManager
8003dbc4 00009c 8003dbc4 4 Setup RemoteSpeakerManager
8003dc60 000044 8003dc60 4 Shutdown RemoteSpeakerManager
8003dca4 0000f8 8003dca4 4 RemoteSpeakerAlarmProc RemoteSpeakerManager
8003dd9c 00006c 8003dd9c 4 SeqFileReader SeqFileReader
8003de08 000010 8003de08 4 GetBaseAddress SeqFileReader
8003de18 000140 8003de18 4 SeqPlayer SeqPlayer
8003df58 00017c 8003df58 4 ~SeqPlayer SeqPlayer
8003e0d4 000120 8003e0d4 4 InitParam SeqPlayer
8003e1f4 000294 8003e1f4 4 Setup SeqPlayer
8003e488 00007c 8003e488 4 SetSeqData SeqPlayer
8003e504 000070 8003e504 4 Start SeqPlayer
8003e574 000150 8003e574 4 Stop SeqPlayer
8003e6c4 000090 8003e6c4 4 Pause SeqPlayer
8003e754 0000c4 8003e754 4 Skip SeqPlayer
8003e818 000008 8003e818 4 SetTempoRatio SeqPlayer
8003e820 000008 8003e820 4 SetChannelPriority SeqPlayer
8003e828 000008 8003e828 4 SetReleasePriorityFix SeqPlayer
8003e830 000010 8003e830 4 SetLocalVariable SeqPlayer
8003e840 000070 8003e840 4 SetGlobalVariable SeqPlayer
8003e8b0 0000d4 8003e8b0 4 SetTrackVolume SeqPlayer
8003e984 0000d4 8003e984 4 SetTrackPitch SeqPlayer
8003ea58 0001cc 8003ea58 4 InvalidateData SeqPlayer
8003ec24 000020 8003ec24 4 GetPlayerTrack SeqPlayer
8003ec44 000138 8003ec44 4 ParseNextTick SeqPlayer
8003ed7c 00003c 8003ed7c 4 GetVariablePtr SeqPlayer
8003edb8 00010c 8003edb8 4 Update SeqPlayer
8003eec4 000264 8003eec4 4 UpdateTick SeqPlayer
8003f128 0002a0 8003f128 4 UpdateTick SeqPlayer
8003f3c8 000028 8003f3c8 4 NoteOn SeqPlayer
8003f3f0 000004 8003f3f0 4 ChannelCallback SeqPlayer
8003f3f4 000008 8003f3f4 4 @74@~SeqPlayer SeqPlayer
8003f3fc 000008 8003f3fc 4 @80@~SeqPlayer SeqPlayer
8003f404 00009c 8003f404 4 SeqSound SeqSound
8003f4a0 000058 8003f4a0 4 ~SeqLoadTask SeqLoadTask
8003f4f8 000034 8003f4f8 4 InitParam SeqSound
8003f52c 000068 8003f52c 4 Setup SeqSound
8003f594 000068 8003f594 4 Prepare SeqSound
8003f5fc 0000f4 8003f5fc 4 Prepare SeqSound
8003f6f0 000080 8003f6f0 4 NotifyLoadAsyncEndSeqData SeqSound
8003f770 0000dc 8003f770 4 Shutdown SeqSound
8003f84c 00006c 8003f84c 4 ~SeqSound SeqSound
8003f8b8 000008 8003f8b8 4 SetTempoRatio SeqSound
8003f8c0 000008 8003f8c0 4 SetChannelPriority SeqSound
8003f8c8 000008 8003f8c8 4 SetReleasePriorityFix SeqSound
8003f8d0 0000e8 8003f8d0 4 SetPlayerPriority SeqSound
8003f9b8 000008 8003f9b8 4 SetTrackVolume SeqSound
8003f9c0 000008 8003f9c0 4 SetTrackPitch SeqSound
8003f9c8 00002c 8003f9c8 4 WriteVariable SeqSound
8003f9f4 000028 8003f9f4 4 WriteGlobalVariable SeqSound
8003fa1c 000014 8003fa1c 4 IsAttachedTempSpecialHandle SeqSound
8003fa30 000008 8003fa30 4 DetachTempSpecialHandle SeqSound
8003fa38 0000f8 8003fa38 4 Execute SeqLoadTask
8003fb30 000020 8003fb30 4 Cancel SeqLoadTask
8003fb54 000028 8003fb54 4 OnCancel SeqLoadTask
8003fb80 000008 8003fb80 4 GetBasicPlayer SeqSound
8003fb88 000008 8003fb88 4 GetBasicPlayer SeqSound
8003fb90 000008 8003fb90 4 IsPrepared SeqSound
8003fb98 000008 8003fb98 4 GetRuntimeTypeInfo SeqSound
8003fba0 00000c 8003fba0 4 __sinit_\snd_SeqSound_cpp Global
8003fbac 000108 8003fbac 4 SeqSoundHandle SeqSoundHandle
8003fcb4 000038 8003fcb4 4 DetachSound SeqSoundHandle
8003fcec 000008 8003fcec 4 SetPlayerTrackNo SeqTrack
8003fcf4 000060 8003fcf4 4 SeqTrack SeqTrack
8003fd54 000104 8003fd54 4 ~SeqTrack SeqTrack
8003fe58 000164 8003fe58 4 InitParam SeqTrack
8003ffbc 000010 8003ffbc 4 SetSeqData SeqTrack
8003ffcc 00000c 8003ffcc 4 Open SeqTrack
8003ffd8 0000d0 8003ffd8 4 Close SeqTrack
800400a8 0000e8 800400a8 4 UpdateChannelLength SeqTrack
80040190 00012c 80040190 4 ParseNextTick SeqTrack
800402bc 000090 800402bc 4 ReleaseAllChannel SeqTrack
8004034c 000094 8004034c 4 PauseAllChannel SeqTrack
800403e0 0004e4 800403e0 4 UpdateChannelParam SeqTrack
800408c4 00006c 800408c4 4 FreeAllChannel SeqTrack
80040930 0000f8 80040930 4 ChannelCallbackFunc SeqTrack
80040a28 000168 80040a28 4 SetMute SeqTrack
80040b90 000008 80040b90 4 SetVolume SeqTrack
80040b98 000008 80040b98 4 SetPitch SeqTrack
80040ba0 000020 80040ba0 4 GetVariablePtr SeqTrack
80040bc0 000344 80040bc0 4 NoteOn SeqTrack
80040f04 0000a4 80040f04 4 FUN_80040f04 Global
80040fa8 000068 80040fa8 4 FUN_80040fa8 Global
80041010 0000e4 80041010 4 FUN_80041010 Global
800410f4 000158 800410f4 4 FUN_800410f4 Global
8004124c 00001c 8004124c 4 FUN_8004124c Global
80041268 000024 80041268 4 detail_Update Sound3DActor
8004128c 000014 8004128c 4 FUN_8004128c Global
800412a0 000008 800412a0 4 @168@detail_Update Sound3DActor
800412a8 000014 800412a8 4 Sound3DListener Sound3DListener
800412bc 000050 800412bc 4 Sound3DManager Sound3DManager
8004130c 000054 8004130c 4 GetRequiredMemSize Sound3DManager
80041360 000034 80041360 4 Setup Sound3DManager
80041394 0000a0 80041394 4 detail_Update Sound3DManager
80041434 00080c 80041434 4 Update Sound3DManager
80041c40 000068 80041c40 4 detail_AllocAmbientArg Sound3DManager
80041ca8 000010 80041ca8 4 detail_FreeAmbientArg Sound3DManager
80041cbc 000024 80041cbc 4 FUN_80041cbc Global
80041ce0 000008 80041ce0 4 @4@detail_FreeAmbientArg Sound3DManager
80041ce8 000008 80041ce8 4 @4@detail_AllocAmbientArg Sound3DManager
80041cf0 000020 80041cf0 4 FUN_80041cf0 Global
80041d10 000024 80041d10 4 SoundArchive SoundArchive
80041d34 000040 80041d34 4 ~SoundArchive SoundArchive
80041d74 000014 80041d74 4 IsAvailable SoundArchive
80041d88 000008 80041d88 4 Setup SoundArchive
80041d90 000018 80041d90 4 Shutdown SoundArchive
80041da8 000008 80041da8 4 GetPlayerCount SoundArchive
80041db0 000008 80041db0 4 GetGroupCount SoundArchive
80041db8 000008 80041db8 4 GetSoundLabelString SoundArchive
80041dc0 000010 80041dc0 4 ConvertLabelStringToSoundId SoundArchive
80041dd0 000010 80041dd0 4 ConvertLabelStringToPlayerId SoundArchive
80041de0 000010 80041de0 4 ConvertLabelStringToGroupId SoundArchive
80041df0 000008 80041df0 4 GetSoundUserParam SoundArchive
80041df8 000008 80041df8 4 GetSoundType SoundArchive
80041e00 000008 80041e00 4 ReadSoundInfo SoundArchive
80041e08 000008 80041e08 4 detail_ReadSeqSoundInfo SoundArchive
80041e10 000008 80041e10 4 detail_ReadStrmSoundInfo SoundArchive
80041e18 000008 80041e18 4 detail_ReadWaveSoundInfo SoundArchive
80041e20 000008 80041e20 4 ReadPlayerInfo SoundArchive
80041e28 000008 80041e28 4 ReadSoundArchivePlayerInfo SoundArchive
80041e30 000008 80041e30 4 detail_ReadSound3DParam SoundArchive
80041e38 000008 80041e38 4 detail_ReadBankInfo SoundArchive
80041e40 000008 80041e40 4 detail_ReadGroupInfo SoundArchive
80041e48 000008 80041e48 4 detail_ReadGroupItemInfo SoundArchive
80041e50 000008 80041e50 4 detail_ReadFileInfo SoundArchive
80041e58 000008 80041e58 4 detail_ReadFilePos SoundArchive
80041e60 000224 80041e60 4 detail_OpenFileStream SoundArchive
80042084 000118 80042084 4 detail_OpenGroupStream SoundArchive
8004219c 000118 8004219c 4 detail_OpenGroupWaveDataStream SoundArchive
800422b4 00007c 800422b4 4 SetExternalFileRoot SoundArchive
80042330 000024 80042330 4 SoundArchiveFileReader SoundArchiveFileReader
80042354 0000b0 80042354 4 Init SoundArchiveFileReader
80042404 0000a8 80042404 4 SetStringChunk SoundArchiveFileReader
800424ac 00000c 800424ac 4 SetInfoChunk SoundArchiveFileReader
800424b8 0000f0 800424b8 4 GetSoundType SoundArchiveFileReader
800425a8 000120 800425a8 4 ReadSoundInfo SoundArchiveFileReader
800426c8 000104 800426c8 4 ReadSound3DParam SoundArchiveFileReader
800427cc 0000ac 800427cc 4 ReadSeqSoundInfo SoundArchiveFileReader
80042878 00004c 80042878 4 ReadStrmSoundInfo SoundArchiveFileReader
800428c4 00009c 800428c4 4 ReadWaveSoundInfo SoundArchiveFileReader
80042960 0000ac 80042960 4 ReadBankInfo SoundArchiveFileReader
80042a0c 0000b8 80042a0c 4 ReadPlayerInfo SoundArchiveFileReader
80042ac4 000110 80042ac4 4 ReadGroupInfo SoundArchiveFileReader
80042bd4 000138 80042bd4 4 ReadGroupItemInfo SoundArchiveFileReader
80042d0c 000084 80042d0c 4 ReadSoundArchivePlayerInfo SoundArchiveFileReader
80042d90 000040 80042d90 4 GetPlayerCount SoundArchiveFileReader
80042dd0 000044 80042dd0 4 GetGroupCount SoundArchiveFileReader
80042e14 000104 80042e14 4 GetSoundLabelString SoundArchiveFileReader
80042f18 0000b8 80042f18 4 GetSoundUserParam SoundArchiveFileReader
80042fd0 000100 80042fd0 4 ReadFileInfo SoundArchiveFileReader
800430d0 000120 800430d0 4 ReadFilePos SoundArchiveFileReader
800431f0 000148 800431f0 4 ConvertLabelStringToId SoundArchiveFileReader
80043338 0000f4 80043338 4 impl_GetSoundInfoOffset SoundArchiveFileReader
8004342c 00003c 8004342c 4 SoundArchiveLoader SoundArchiveLoader
80043468 000040 80043468 4 ~SoundArchiveLoader SoundArchiveLoader
800434a8 0005d4 800434a8 4 LoadGroup SoundArchiveLoader
80043a7c 00012c 80043a7c 4 SoundArchivePlayer SoundArchivePlayer
80043ba8 000040 80043ba8 4 ~SeqNoteOnCallback SeqNoteOnCallback
80043be8 000040 80043be8 4 ~WsdCallback WsdCallback
80043c28 000020 80043c28 4 LinkList LinkList<nw4r::snd::detail::SeqSound,184>
80043c48 000058 80043c48 4 ~LinkList LinkList<nw4r::snd::detail::SeqSound,184>
80043ca0 000020 80043ca0 4 LinkList LinkList<nw4r::snd::detail::StrmSound,184>
80043cc0 000058 80043cc0 4 ~LinkList LinkList<nw4r::snd::detail::StrmSound,184>
80043d18 000020 80043d18 4 LinkList LinkList<nw4r::snd::detail::WaveSound,184>
80043d38 000058 80043d38 4 ~LinkList LinkList<nw4r::snd::detail::WaveSound,184>
80043d90 0000b8 80043d90 4 ~SoundArchivePlayer SoundArchivePlayer
80043e48 000018 80043e48 4 IsAvailable SoundArchivePlayer
80043e64 0000d8 80043e64 4 Setup SoundArchivePlayer
80043f3c 000124 80043f3c 4 Shutdown SoundArchivePlayer
80044060 000130 80044060 4 GetRequiredMemSize SoundArchivePlayer
80044190 00004c 80044190 4 GetRequiredStrmBufferSize SoundArchivePlayer
800441dc 000298 800441dc 4 SetupMram SoundArchivePlayer
80044474 000198 80044474 4 SetupSoundPlayer SoundArchivePlayer
8004460c 000398 8004460c 4 Update SoundArchivePlayer
800449a4 000008 800449a4 4 GetSoundArchive SoundArchivePlayer
800449ac 000010 800449ac 4 GetSoundPlayer SoundArchivePlayer
800449bc 00014c 800449bc 4 detail_GetFileAddress SoundArchivePlayer
80044b08 00014c 80044b08 4 detail_GetFileWaveDataAddress SoundArchivePlayer
80044c54 000348 80044c54 4 detail_SetupSound SoundArchivePlayer
80044f9c 000304 80044f9c 4 PrepareSeqImpl SoundArchivePlayer
800452a0 000160 800452a0 4 PrepareStrmImpl SoundArchivePlayer
80045400 000178 80045400 4 PrepareWaveSoundImpl SoundArchivePlayer
80045578 000168 80045578 4 LoadGroup SoundArchivePlayer
800456e0 000070 800456e0 4 LoadGroup SoundArchivePlayer
80045750 000054 80045750 4 InvalidateData SoundArchivePlayer
800457a4 000054 800457a4 4 InvalidateWaveData SoundArchivePlayer
800457f8 000128 800457f8 4 NoteOn SeqNoteOnCallback
80045920 0000fc 80045920 4 GetWaveSoundData WsdCallback
80045a1c 000008 80045a1c 4 detail_ConvertLabelStringToSoundId SoundArchivePlayer
80045a24 000058 80045a24 4 ~PlayerHeap PlayerHeap
80045a7c 000008 80045a7c 4 detail_ConvertLabelStringToSoundId SoundArchivePlayer
80045a84 000008 80045a84 4 detail_SetupSound SoundArchivePlayer
80045a8c 000008 80045a8c 4 ~SoundArchivePlayer SoundArchivePlayer
80045a94 00007c 80045a94 4 detail_AttachSoundAsTempHandle SoundHandle
80045b10 00004c 80045b10 4 detail_AttachSound SoundHandle
80045b5c 000050 80045b5c 4 DetachSound SoundHandle
80045bac 000048 80045bac 4 SoundHeap SoundHeap
80045bf4 000070 80045bf4 4 ~SoundHeap SoundHeap
80045c64 000008 80045c64 4 Create SoundHeap