pmdsky-debug-py 10.0.15__py3-none-any.whl → 10.0.16__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
pmdsky_debug_py/eu.py CHANGED
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class EuArm7Functions:
@@ -162,6 +177,12 @@ class EuArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class EuArm7Data:
167
188
 
@@ -8824,6 +8845,80 @@ class EuArm9Functions:
8824
8845
  None,
8825
8846
  )
8826
8847
 
8848
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8849
+
8850
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8851
+
8852
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8853
+
8854
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8855
+
8856
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8857
+
8858
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8859
+
8860
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8861
+
8862
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8863
+
8864
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8865
+
8866
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8867
+
8868
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8869
+
8870
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8871
+
8872
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8873
+
8874
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8875
+
8876
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8877
+
8878
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8879
+
8880
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8881
+
8882
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8883
+
8884
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8885
+
8886
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8887
+
8888
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8889
+
8890
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8891
+
8892
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8893
+
8894
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8895
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8896
+ )
8897
+
8898
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8899
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8900
+ )
8901
+
8902
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8903
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8904
+ )
8905
+
8906
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8907
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8908
+ )
8909
+
8910
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8911
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8912
+ )
8913
+
8914
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8915
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8916
+ )
8917
+
8918
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8919
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8920
+ )
8921
+
8827
8922
 
8828
8923
  class EuArm9Data:
8829
8924
 
@@ -10754,6 +10849,18 @@ class EuArm9Data:
10754
10849
  "struct data_processing_instruction",
10755
10850
  )
10756
10851
 
10852
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10853
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10854
+ )
10855
+
10856
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10857
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10858
+ )
10859
+
10860
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10861
+
10862
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10863
+
10757
10864
 
10758
10865
  class EuArm9Section:
10759
10866
  name = "arm9"
@@ -13248,6 +13355,32 @@ class EuLibsFunctions:
13248
13355
  None,
13249
13356
  )
13250
13357
 
13358
+ DseUtil_GetRandomNumber = _Deprecated(
13359
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13360
+ )
13361
+
13362
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13363
+
13364
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13365
+
13366
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13367
+
13368
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13369
+
13370
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13371
+
13372
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13373
+
13374
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13375
+
13376
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13377
+
13378
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13379
+
13380
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13381
+
13382
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13383
+
13251
13384
 
13252
13385
  class EuLibsData:
13253
13386
 
@@ -18830,6 +18963,8 @@ class EuOverlay11Functions:
18830
18963
  None,
18831
18964
  )
18832
18965
 
18966
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18967
+
18833
18968
 
18834
18969
  class EuOverlay11Data:
18835
18970
 
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class EuItcmArm7Functions:
@@ -162,6 +177,12 @@ class EuItcmArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class EuItcmArm7Data:
167
188
 
@@ -8778,6 +8799,80 @@ class EuItcmArm9Functions:
8778
8799
  None,
8779
8800
  )
8780
8801
 
8802
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8803
+
8804
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8805
+
8806
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8807
+
8808
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8809
+
8810
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8811
+
8812
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8813
+
8814
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8815
+
8816
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8817
+
8818
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8819
+
8820
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8821
+
8822
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8823
+
8824
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8825
+
8826
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8827
+
8828
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8829
+
8830
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8831
+
8832
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8833
+
8834
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8835
+
8836
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8837
+
8838
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8839
+
8840
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8841
+
8842
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8843
+
8844
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8845
+
8846
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8847
+
8848
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8849
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8850
+ )
8851
+
8852
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8853
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8854
+ )
8855
+
8856
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8857
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8858
+ )
8859
+
8860
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8861
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8862
+ )
8863
+
8864
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8865
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8866
+ )
8867
+
8868
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8869
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8870
+ )
8871
+
8872
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8873
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
+ )
8875
+
8781
8876
 
8782
8877
  class EuItcmArm9Data:
8783
8878
 
@@ -10686,6 +10781,18 @@ class EuItcmArm9Data:
10686
10781
  "struct data_processing_instruction",
10687
10782
  )
10688
10783
 
10784
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10785
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10786
+ )
10787
+
10788
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10789
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10790
+ )
10791
+
10792
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10793
+
10794
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10795
+
10689
10796
 
10690
10797
  class EuItcmArm9Section:
10691
10798
  name = "arm9"
@@ -13005,6 +13112,32 @@ class EuItcmLibsFunctions:
13005
13112
  None,
13006
13113
  )
13007
13114
 
13115
+ DseUtil_GetRandomNumber = _Deprecated(
13116
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13117
+ )
13118
+
13119
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13120
+
13121
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13122
+
13123
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13124
+
13125
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13126
+
13127
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13128
+
13129
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13130
+
13131
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13132
+
13133
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13134
+
13135
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13136
+
13137
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13138
+
13139
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13140
+
13008
13141
 
13009
13142
  class EuItcmLibsData:
13010
13143
 
@@ -18558,6 +18691,8 @@ class EuItcmOverlay11Functions:
18558
18691
  None,
18559
18692
  )
18560
18693
 
18694
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18695
+
18561
18696
 
18562
18697
  class EuItcmOverlay11Data:
18563
18698
 
pmdsky_debug_py/jp.py CHANGED
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class JpArm7Functions:
@@ -162,6 +177,12 @@ class JpArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class JpArm7Data:
167
188
 
@@ -8820,6 +8841,80 @@ class JpArm9Functions:
8820
8841
  None,
8821
8842
  )
8822
8843
 
8844
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8845
+
8846
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8847
+
8848
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8849
+
8850
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8851
+
8852
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8853
+
8854
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8855
+
8856
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8857
+
8858
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8859
+
8860
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8861
+
8862
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8863
+
8864
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8865
+
8866
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8867
+
8868
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8869
+
8870
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8871
+
8872
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8873
+
8874
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8875
+
8876
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8877
+
8878
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8879
+
8880
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8881
+
8882
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8883
+
8884
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8885
+
8886
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8887
+
8888
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8889
+
8890
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8891
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8892
+ )
8893
+
8894
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8895
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8896
+ )
8897
+
8898
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8899
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8900
+ )
8901
+
8902
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8903
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8904
+ )
8905
+
8906
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8907
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8908
+ )
8909
+
8910
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8911
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8912
+ )
8913
+
8914
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8915
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8916
+ )
8917
+
8823
8918
 
8824
8919
  class JpArm9Data:
8825
8920
 
@@ -10739,6 +10834,18 @@ class JpArm9Data:
10739
10834
  "struct data_processing_instruction",
10740
10835
  )
10741
10836
 
10837
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10838
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10839
+ )
10840
+
10841
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10842
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10843
+ )
10844
+
10845
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10846
+
10847
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10848
+
10742
10849
 
10743
10850
  class JpArm9Section:
10744
10851
  name = "arm9"
@@ -13219,6 +13326,32 @@ class JpLibsFunctions:
13219
13326
  None,
13220
13327
  )
13221
13328
 
13329
+ DseUtil_GetRandomNumber = _Deprecated(
13330
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13331
+ )
13332
+
13333
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13334
+
13335
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13336
+
13337
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13338
+
13339
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13340
+
13341
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13342
+
13343
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13344
+
13345
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13346
+
13347
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13348
+
13349
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13350
+
13351
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13352
+
13353
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13354
+
13222
13355
 
13223
13356
  class JpLibsData:
13224
13357
 
@@ -18796,6 +18929,8 @@ class JpOverlay11Functions:
18796
18929
  None,
18797
18930
  )
18798
18931
 
18932
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18933
+
18799
18934
 
18800
18935
  class JpOverlay11Data:
18801
18936
 
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class JpItcmArm7Functions:
@@ -162,6 +177,12 @@ class JpItcmArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class JpItcmArm7Data:
167
188
 
@@ -8778,6 +8799,80 @@ class JpItcmArm9Functions:
8778
8799
  None,
8779
8800
  )
8780
8801
 
8802
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8803
+
8804
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8805
+
8806
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8807
+
8808
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8809
+
8810
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8811
+
8812
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8813
+
8814
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8815
+
8816
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8817
+
8818
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8819
+
8820
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8821
+
8822
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8823
+
8824
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8825
+
8826
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8827
+
8828
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8829
+
8830
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8831
+
8832
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8833
+
8834
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8835
+
8836
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8837
+
8838
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8839
+
8840
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8841
+
8842
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8843
+
8844
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8845
+
8846
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8847
+
8848
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8849
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8850
+ )
8851
+
8852
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8853
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8854
+ )
8855
+
8856
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8857
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8858
+ )
8859
+
8860
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8861
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8862
+ )
8863
+
8864
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8865
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8866
+ )
8867
+
8868
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8869
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8870
+ )
8871
+
8872
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8873
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
+ )
8875
+
8781
8876
 
8782
8877
  class JpItcmArm9Data:
8783
8878
 
@@ -10686,6 +10781,18 @@ class JpItcmArm9Data:
10686
10781
  "struct data_processing_instruction",
10687
10782
  )
10688
10783
 
10784
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10785
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10786
+ )
10787
+
10788
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10789
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10790
+ )
10791
+
10792
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10793
+
10794
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10795
+
10689
10796
 
10690
10797
  class JpItcmArm9Section:
10691
10798
  name = "arm9"
@@ -13005,6 +13112,32 @@ class JpItcmLibsFunctions:
13005
13112
  None,
13006
13113
  )
13007
13114
 
13115
+ DseUtil_GetRandomNumber = _Deprecated(
13116
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13117
+ )
13118
+
13119
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13120
+
13121
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13122
+
13123
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13124
+
13125
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13126
+
13127
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13128
+
13129
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13130
+
13131
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13132
+
13133
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13134
+
13135
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13136
+
13137
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13138
+
13139
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13140
+
13008
13141
 
13009
13142
  class JpItcmLibsData:
13010
13143
 
@@ -18558,6 +18691,8 @@ class JpItcmOverlay11Functions:
18558
18691
  None,
18559
18692
  )
18560
18693
 
18694
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18695
+
18561
18696
 
18562
18697
  class JpItcmOverlay11Data:
18563
18698
 
pmdsky_debug_py/na.py CHANGED
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class NaArm7Functions:
@@ -162,6 +177,12 @@ class NaArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class NaArm7Data:
167
188
 
@@ -8824,6 +8845,80 @@ class NaArm9Functions:
8824
8845
  None,
8825
8846
  )
8826
8847
 
8848
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8849
+
8850
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8851
+
8852
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8853
+
8854
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8855
+
8856
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8857
+
8858
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8859
+
8860
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8861
+
8862
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8863
+
8864
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8865
+
8866
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8867
+
8868
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8869
+
8870
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8871
+
8872
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8873
+
8874
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8875
+
8876
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8877
+
8878
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8879
+
8880
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8881
+
8882
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8883
+
8884
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8885
+
8886
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8887
+
8888
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8889
+
8890
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8891
+
8892
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8893
+
8894
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8895
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8896
+ )
8897
+
8898
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8899
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8900
+ )
8901
+
8902
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8903
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8904
+ )
8905
+
8906
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8907
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8908
+ )
8909
+
8910
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8911
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8912
+ )
8913
+
8914
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8915
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8916
+ )
8917
+
8918
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8919
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8920
+ )
8921
+
8827
8922
 
8828
8923
  class NaArm9Data:
8829
8924
 
@@ -10754,6 +10849,18 @@ class NaArm9Data:
10754
10849
  "struct data_processing_instruction",
10755
10850
  )
10756
10851
 
10852
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10853
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10854
+ )
10855
+
10856
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10857
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10858
+ )
10859
+
10860
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10861
+
10862
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10863
+
10757
10864
 
10758
10865
  class NaArm9Section:
10759
10866
  name = "arm9"
@@ -13248,6 +13355,32 @@ class NaLibsFunctions:
13248
13355
  None,
13249
13356
  )
13250
13357
 
13358
+ DseUtil_GetRandomNumber = _Deprecated(
13359
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13360
+ )
13361
+
13362
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13363
+
13364
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13365
+
13366
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13367
+
13368
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13369
+
13370
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13371
+
13372
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13373
+
13374
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13375
+
13376
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13377
+
13378
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13379
+
13380
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13381
+
13382
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13383
+
13251
13384
 
13252
13385
  class NaLibsData:
13253
13386
 
@@ -18830,6 +18963,8 @@ class NaOverlay11Functions:
18830
18963
  None,
18831
18964
  )
18832
18965
 
18966
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18967
+
18833
18968
 
18834
18969
  class NaOverlay11Data:
18835
18970
 
@@ -1,4 +1,19 @@
1
1
  from .protocol import Symbol
2
+ import warnings
3
+
4
+
5
+ class _Deprecated:
6
+ def __init__(self, oldname, symbol):
7
+ self.oldname = oldname
8
+ self.symbol = symbol
9
+
10
+ def __get__(self, _obj, _objtype=None):
11
+ warnings.warn(
12
+ f"symbol {self.oldname} has been renamed to {self.symbol.name}",
13
+ category=DeprecationWarning,
14
+ stacklevel=2,
15
+ )
16
+ return self.symbol
2
17
 
3
18
 
4
19
  class NaItcmArm7Functions:
@@ -162,6 +177,12 @@ class NaItcmArm7Functions:
162
177
  None,
163
178
  )
164
179
 
180
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
181
+
182
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
183
+
184
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
185
+
165
186
 
166
187
  class NaItcmArm7Data:
167
188
 
@@ -8778,6 +8799,80 @@ class NaItcmArm9Functions:
8778
8799
  None,
8779
8800
  )
8780
8801
 
8802
+ FileRom_InitDataTransfer = _Deprecated("FileRom_InitDataTransfer", DataTransferInit)
8803
+
8804
+ FileRom_StopDataTransfer = _Deprecated("FileRom_StopDataTransfer", DataTransferStop)
8805
+
8806
+ FileRom_Veneer_FileInit = _Deprecated("FileRom_Veneer_FileInit", FileInitVeneer)
8807
+
8808
+ FileRom_HandleOpen = _Deprecated("FileRom_HandleOpen", FileOpen)
8809
+
8810
+ FileRom_HandleRead = _Deprecated("FileRom_HandleRead", FileRead)
8811
+
8812
+ FileRom_HandleSeek = _Deprecated("FileRom_HandleSeek", FileSeek)
8813
+
8814
+ Debug_Init = _Deprecated("Debug_Init", InitDebug)
8815
+
8816
+ Debug_InitDebugFlag = _Deprecated("Debug_InitDebugFlag", InitDebugFlag)
8817
+
8818
+ Debug_GetDebugFlag = _Deprecated("Debug_GetDebugFlag", GetDebugFlag)
8819
+
8820
+ Debug_SetDebugFlag = _Deprecated("Debug_SetDebugFlag", SetDebugFlag)
8821
+
8822
+ Debug_Stripped6 = _Deprecated("Debug_Stripped6", InitDebugStripped6)
8823
+
8824
+ Debug_Stripped5 = _Deprecated("Debug_Stripped5", InitDebugStripped5)
8825
+
8826
+ Debug_PrintTrace = _Deprecated("Debug_PrintTrace", DebugPrintTrace)
8827
+
8828
+ Debug_Print0 = _Deprecated("Debug_Print0", DebugPrint0)
8829
+
8830
+ Debug_InitLogFlag = _Deprecated("Debug_InitLogFlag", InitDebugLogFlag)
8831
+
8832
+ Debug_GetLogFlag = _Deprecated("Debug_GetLogFlag", GetDebugLogFlag)
8833
+
8834
+ Debug_SetLogFlag = _Deprecated("Debug_SetLogFlag", SetDebugLogFlag)
8835
+
8836
+ Debug_Print = _Deprecated("Debug_Print", DebugPrint)
8837
+
8838
+ Debug_Stripped4 = _Deprecated("Debug_Stripped4", InitDebugStripped4)
8839
+
8840
+ Debug_Stripped3 = _Deprecated("Debug_Stripped3", InitDebugStripped3)
8841
+
8842
+ Debug_Stripped2 = _Deprecated("Debug_Stripped2", InitDebugStripped2)
8843
+
8844
+ Debug_Stripped1 = _Deprecated("Debug_Stripped1", InitDebugStripped1)
8845
+
8846
+ Debug_FatalError = _Deprecated("Debug_FatalError", FatalError)
8847
+
8848
+ DirectoryFileMngr_ExtractAllDirectoryFiles = _Deprecated(
8849
+ "DirectoryFileMngr_ExtractAllDirectoryFiles", OpenAllPackFiles
8850
+ )
8851
+
8852
+ DirectoryFileMngr_GetDirectoryFileSize = _Deprecated(
8853
+ "DirectoryFileMngr_GetDirectoryFileSize", GetFileLengthInPackWithPackNb
8854
+ )
8855
+
8856
+ DirectoryFileMngr_LoadDirectoryFile = _Deprecated(
8857
+ "DirectoryFileMngr_LoadDirectoryFile", LoadFileInPackWithPackId
8858
+ )
8859
+
8860
+ DirectoryFileMngr_OpenDirectoryFile = _Deprecated(
8861
+ "DirectoryFileMngr_OpenDirectoryFile", AllocAndLoadFileInPack
8862
+ )
8863
+
8864
+ DirectoryFile_ExtractDirectoryFile = _Deprecated(
8865
+ "DirectoryFile_ExtractDirectoryFile", OpenPackFile
8866
+ )
8867
+
8868
+ DirectoryFile_GetDirectoryFileSize = _Deprecated(
8869
+ "DirectoryFile_GetDirectoryFileSize", GetFileLengthInPack
8870
+ )
8871
+
8872
+ DirectoryFile_LoadDirectoryFile = _Deprecated(
8873
+ "DirectoryFile_LoadDirectoryFile", LoadFileInPack
8874
+ )
8875
+
8781
8876
 
8782
8877
  class NaItcmArm9Data:
8783
8878
 
@@ -10686,6 +10781,18 @@ class NaItcmArm9Data:
10686
10781
  "struct data_processing_instruction",
10687
10782
  )
10688
10783
 
10784
+ EXCLUSIVE_ITEM_ATTACK_BOOSTS = _Deprecated(
10785
+ "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
10786
+ )
10787
+
10788
+ DIRECTORY_FILES_EXTRACTED = _Deprecated(
10789
+ "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
10790
+ )
10791
+
10792
+ DIRECTORY_FILE_TABLE = _Deprecated("DIRECTORY_FILE_TABLE", PACK_FILE_PATHS_TABLE)
10793
+
10794
+ TEXT_SPEED = _Deprecated("TEXT_SPEED", REGULAR_TEXT_SPEED)
10795
+
10689
10796
 
10690
10797
  class NaItcmArm9Section:
10691
10798
  name = "arm9"
@@ -13005,6 +13112,32 @@ class NaItcmLibsFunctions:
13005
13112
  None,
13006
13113
  )
13007
13114
 
13115
+ DseUtil_GetRandomNumber = _Deprecated(
13116
+ "DseUtil_GetRandomNumber", SoundUtil_GetRandomNumber
13117
+ )
13118
+
13119
+ __addsf3 = _Deprecated("__addsf3", _fadd)
13120
+
13121
+ __divsf3 = _Deprecated("__divsf3", _fdiv)
13122
+
13123
+ __extendsfdf2 = _Deprecated("__extendsfdf2", _f2d)
13124
+
13125
+ __fixsfsi = _Deprecated("__fixsfsi", _ffix)
13126
+
13127
+ __floatsisf = _Deprecated("__floatsisf", _fflt)
13128
+
13129
+ __floatunsisf = _Deprecated("__floatunsisf", _ffltu)
13130
+
13131
+ __mulsf3 = _Deprecated("__mulsf3", _fmul)
13132
+
13133
+ __subsf3 = _Deprecated("__subsf3", _fsub)
13134
+
13135
+ __divsi3 = _Deprecated("__divsi3", _s32_div_f)
13136
+
13137
+ __udivsi3 = _Deprecated("__udivsi3", _u32_div_f)
13138
+
13139
+ __udivsi3_no_zero_check = _Deprecated("__udivsi3_no_zero_check", _u32_div_not_0_f)
13140
+
13008
13141
 
13009
13142
  class NaItcmLibsData:
13010
13143
 
@@ -18558,6 +18691,8 @@ class NaItcmOverlay11Functions:
18558
18691
  None,
18559
18692
  )
18560
18693
 
18694
+ ProcessScriptParam = _Deprecated("ProcessScriptParam", ScriptParamToInt)
18695
+
18561
18696
 
18562
18697
  class NaItcmOverlay11Data:
18563
18698
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pmdsky-debug-py
3
- Version: 10.0.15
3
+ Version: 10.0.16
4
4
  Summary: pmdsky-debug symbols for Python.
5
5
  Author-email: Marco 'Capypara' Köpcke <hello@capypara.de>
6
6
  License: MIT
@@ -0,0 +1,14 @@
1
+ pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
+ pmdsky_debug_py/_release.py,sha256=vEnUHE50-5jFh4990dIUhYgLlhVO_OsivkLbEIAppbo,31
3
+ pmdsky_debug_py/eu.py,sha256=_hrUf0cYEnf2oBCmyAs7PVgJ-Qql7IM5F6FDUqAPU6k,1099036
4
+ pmdsky_debug_py/eu_itcm.py,sha256=BZBz0K5BEFo0_XKEtOUZKwJVzkWmahX4GRaVvlDNc2I,1049339
5
+ pmdsky_debug_py/jp.py,sha256=QyISqJ2epmkA_K8yRhdkxeXifyfJBeSH0597JjGsTaI,1086011
6
+ pmdsky_debug_py/jp_itcm.py,sha256=WPwUYFW1zI1G2k-IYzG7Z6G0rSrl61Dno2NK9OlPNP8,1049329
7
+ pmdsky_debug_py/na.py,sha256=MZIgKn2bBJCXmHtH0SX-sP8xcnpA0m0UuQ_0HBwrRZY,1100081
8
+ pmdsky_debug_py/na_itcm.py,sha256=EYJya7qeAnV7VTTY-kUDCaf-qFTVyT3d8iVztD-8jCI,1049359
9
+ pmdsky_debug_py/protocol.py,sha256=fWgUsCEZyh5XoNpzad0zNmuRozcQq7rElUEuVN3_WTM,324780
10
+ pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pmdsky_debug_py-10.0.16.dist-info/METADATA,sha256=cloHn7j826g5DqTVYtCQaNJt9qvOKgD6lTdL2KmkHKs,1374
12
+ pmdsky_debug_py-10.0.16.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
13
+ pmdsky_debug_py-10.0.16.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
+ pmdsky_debug_py-10.0.16.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
- pmdsky_debug_py/_release.py,sha256=vEnUHE50-5jFh4990dIUhYgLlhVO_OsivkLbEIAppbo,31
3
- pmdsky_debug_py/eu.py,sha256=yk5mwFSNpZqxQRweC4Xo41IB_-kws6SUbNUxuopGuzk,1094688
4
- pmdsky_debug_py/eu_itcm.py,sha256=VZRNaC-x7dDG3tPdjtO2NqjkhoIJTYuPafNk1NFPJ4w,1044991
5
- pmdsky_debug_py/jp.py,sha256=x5RgBymQTSKLDJV4-8_WNLA0wRTVxgJTM6qiTdwiRGw,1081663
6
- pmdsky_debug_py/jp_itcm.py,sha256=Oown-Bp2H-HO7SksrI2KTB9RSeN0mlRC5TVtWWoOo6A,1044981
7
- pmdsky_debug_py/na.py,sha256=o5lohKmv09J6TrXWqhzGjrJL7wj8wnYIhO8Yfmw-OPk,1095733
8
- pmdsky_debug_py/na_itcm.py,sha256=eM_IgXikOK1KlLwVQDolkebkxuJBonhB8hXa-due3ek,1045011
9
- pmdsky_debug_py/protocol.py,sha256=fWgUsCEZyh5XoNpzad0zNmuRozcQq7rElUEuVN3_WTM,324780
10
- pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- pmdsky_debug_py-10.0.15.dist-info/METADATA,sha256=THVk7ofabBvjZMOXEbyoT1LUjROmx7t3DrVGSPsFT0I,1374
12
- pmdsky_debug_py-10.0.15.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
13
- pmdsky_debug_py-10.0.15.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
- pmdsky_debug_py-10.0.15.dist-info/RECORD,,