pmdsky-debug-py 10.2.19__py3-none-any.whl → 10.2.20__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.
@@ -1 +1 @@
1
- RELEASE = "v0.10.2+1ddf7e71b8"
1
+ RELEASE = "v0.10.2+0d42a2916f"
pmdsky_debug_py/eu.py CHANGED
@@ -6447,7 +6447,70 @@ class EuArm9Functions:
6447
6447
  [0x204BFE4],
6448
6448
  None,
6449
6449
  "CalcScriptVariables",
6450
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6450
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6451
+ None,
6452
+ )
6453
+
6454
+ CompareScriptVariables = Symbol(
6455
+ [0x4C0D0],
6456
+ [0x204C0D0],
6457
+ None,
6458
+ "CompareScriptVariables",
6459
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6460
+ None,
6461
+ )
6462
+
6463
+ CalcScriptVariablesVeneer = Symbol(
6464
+ [0x4C204],
6465
+ [0x204C204],
6466
+ None,
6467
+ "CalcScriptVariablesVeneer",
6468
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6469
+ None,
6470
+ )
6471
+
6472
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6473
+ [0x4C210],
6474
+ [0x204C210],
6475
+ None,
6476
+ "CalcAndUpdateScriptVarWithOtherValue",
6477
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6478
+ None,
6479
+ )
6480
+
6481
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6482
+ [0x4C248],
6483
+ [0x204C248],
6484
+ None,
6485
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6486
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6487
+ None,
6488
+ )
6489
+
6490
+ CompareScriptVariablesVeneer = Symbol(
6491
+ [0x4C294],
6492
+ [0x204C294],
6493
+ None,
6494
+ "CompareScriptVariablesVeneer",
6495
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6496
+ None,
6497
+ )
6498
+
6499
+ LoadAndCompareScriptVarAndValue = Symbol(
6500
+ [0x4C2A0],
6501
+ [0x204C2A0],
6502
+ None,
6503
+ "LoadAndCompareScriptVarAndValue",
6504
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6505
+ None,
6506
+ )
6507
+
6508
+ LoadAndCompareScriptVars = Symbol(
6509
+ [0x4C2C0],
6510
+ [0x204C2C0],
6511
+ None,
6512
+ "LoadAndCompareScriptVars",
6513
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6451
6514
  None,
6452
6515
  )
6453
6516
 
@@ -10094,15 +10157,33 @@ class EuArm9Data:
10094
10157
  "struct partner_talk_kind_table_entry[11]",
10095
10158
  )
10096
10159
 
10097
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10160
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10098
10161
  [0x9D430],
10099
10162
  [0x209D430],
10100
10163
  0x8,
10101
- "EVENT_FLAG_PROG_POS_INFO",
10164
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10102
10165
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10103
10166
  "struct prog_pos_info",
10104
10167
  )
10105
10168
 
10169
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10170
+ [0x9D438],
10171
+ [0x209D438],
10172
+ 0x8,
10173
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10174
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10175
+ "struct prog_pos_info",
10176
+ )
10177
+
10178
+ EVENT_FLAG_FILE_NAME = Symbol(
10179
+ [0x9D440],
10180
+ [0x209D440],
10181
+ 0x10,
10182
+ "EVENT_FLAG_FILE_NAME",
10183
+ "The file name 'event_flag.c', used for debug logging.",
10184
+ "",
10185
+ )
10186
+
10106
10187
  SCRIPT_VARS_LOCALS = Symbol(
10107
10188
  [0x9D450],
10108
10189
  [0x209D450],
@@ -10112,15 +10193,24 @@ class EuArm9Data:
10112
10193
  "struct script_local_var_table",
10113
10194
  )
10114
10195
 
10115
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10196
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10116
10197
  [0x9D4AC],
10117
10198
  [0x209D4AC],
10118
10199
  0x20,
10119
- "EVENT_FLAG_EXPANSION_ERROR",
10200
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10120
10201
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10121
10202
  "",
10122
10203
  )
10123
10204
 
10205
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10206
+ [0x9D4CC],
10207
+ [0x209D4CC],
10208
+ 0x1C,
10209
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10210
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10211
+ "",
10212
+ )
10213
+
10124
10214
  SCRIPT_VARS = Symbol(
10125
10215
  [0x9DDF4],
10126
10216
  [0x209DDF4],
@@ -11625,6 +11715,14 @@ class EuArm9Data:
11625
11715
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11626
11716
  )
11627
11717
 
11718
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11719
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11720
+ )
11721
+
11722
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11723
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11724
+ )
11725
+
11628
11726
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11629
11727
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11630
11728
  )
@@ -6401,7 +6401,70 @@ class EuItcmArm9Functions:
6401
6401
  None,
6402
6402
  None,
6403
6403
  "CalcScriptVariables",
6404
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6404
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6405
+ None,
6406
+ )
6407
+
6408
+ CompareScriptVariables = Symbol(
6409
+ None,
6410
+ None,
6411
+ None,
6412
+ "CompareScriptVariables",
6413
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6414
+ None,
6415
+ )
6416
+
6417
+ CalcScriptVariablesVeneer = Symbol(
6418
+ None,
6419
+ None,
6420
+ None,
6421
+ "CalcScriptVariablesVeneer",
6422
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6423
+ None,
6424
+ )
6425
+
6426
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6427
+ None,
6428
+ None,
6429
+ None,
6430
+ "CalcAndUpdateScriptVarWithOtherValue",
6431
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6432
+ None,
6433
+ )
6434
+
6435
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6436
+ None,
6437
+ None,
6438
+ None,
6439
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6440
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6441
+ None,
6442
+ )
6443
+
6444
+ CompareScriptVariablesVeneer = Symbol(
6445
+ None,
6446
+ None,
6447
+ None,
6448
+ "CompareScriptVariablesVeneer",
6449
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6450
+ None,
6451
+ )
6452
+
6453
+ LoadAndCompareScriptVarAndValue = Symbol(
6454
+ None,
6455
+ None,
6456
+ None,
6457
+ "LoadAndCompareScriptVarAndValue",
6458
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6459
+ None,
6460
+ )
6461
+
6462
+ LoadAndCompareScriptVars = Symbol(
6463
+ None,
6464
+ None,
6465
+ None,
6466
+ "LoadAndCompareScriptVars",
6467
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6405
6468
  None,
6406
6469
  )
6407
6470
 
@@ -10039,15 +10102,33 @@ class EuItcmArm9Data:
10039
10102
  "struct partner_talk_kind_table_entry[11]",
10040
10103
  )
10041
10104
 
10042
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10105
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10043
10106
  None,
10044
10107
  None,
10045
10108
  None,
10046
- "EVENT_FLAG_PROG_POS_INFO",
10109
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10047
10110
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10048
10111
  "struct prog_pos_info",
10049
10112
  )
10050
10113
 
10114
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10115
+ None,
10116
+ None,
10117
+ None,
10118
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10119
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10120
+ "struct prog_pos_info",
10121
+ )
10122
+
10123
+ EVENT_FLAG_FILE_NAME = Symbol(
10124
+ None,
10125
+ None,
10126
+ None,
10127
+ "EVENT_FLAG_FILE_NAME",
10128
+ "The file name 'event_flag.c', used for debug logging.",
10129
+ "",
10130
+ )
10131
+
10051
10132
  SCRIPT_VARS_LOCALS = Symbol(
10052
10133
  None,
10053
10134
  None,
@@ -10057,15 +10138,24 @@ class EuItcmArm9Data:
10057
10138
  "struct script_local_var_table",
10058
10139
  )
10059
10140
 
10060
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10141
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10061
10142
  None,
10062
10143
  None,
10063
10144
  None,
10064
- "EVENT_FLAG_EXPANSION_ERROR",
10145
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10065
10146
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10066
10147
  "",
10067
10148
  )
10068
10149
 
10150
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10151
+ None,
10152
+ None,
10153
+ None,
10154
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10155
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10156
+ "",
10157
+ )
10158
+
10069
10159
  SCRIPT_VARS = Symbol(
10070
10160
  None,
10071
10161
  None,
@@ -11559,6 +11649,14 @@ class EuItcmArm9Data:
11559
11649
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11560
11650
  )
11561
11651
 
11652
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11653
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11654
+ )
11655
+
11656
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11657
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11658
+ )
11659
+
11562
11660
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11563
11661
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11564
11662
  )
pmdsky_debug_py/jp.py CHANGED
@@ -6447,7 +6447,70 @@ class JpArm9Functions:
6447
6447
  [0x204C00C],
6448
6448
  None,
6449
6449
  "CalcScriptVariables",
6450
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6450
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6451
+ None,
6452
+ )
6453
+
6454
+ CompareScriptVariables = Symbol(
6455
+ [0x4C0F8],
6456
+ [0x204C0F8],
6457
+ None,
6458
+ "CompareScriptVariables",
6459
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6460
+ None,
6461
+ )
6462
+
6463
+ CalcScriptVariablesVeneer = Symbol(
6464
+ [0x4C22C],
6465
+ [0x204C22C],
6466
+ None,
6467
+ "CalcScriptVariablesVeneer",
6468
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6469
+ None,
6470
+ )
6471
+
6472
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6473
+ [0x4C238],
6474
+ [0x204C238],
6475
+ None,
6476
+ "CalcAndUpdateScriptVarWithOtherValue",
6477
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6478
+ None,
6479
+ )
6480
+
6481
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6482
+ [0x4C270],
6483
+ [0x204C270],
6484
+ None,
6485
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6486
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6487
+ None,
6488
+ )
6489
+
6490
+ CompareScriptVariablesVeneer = Symbol(
6491
+ [0x4C2BC],
6492
+ [0x204C2BC],
6493
+ None,
6494
+ "CompareScriptVariablesVeneer",
6495
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6496
+ None,
6497
+ )
6498
+
6499
+ LoadAndCompareScriptVarAndValue = Symbol(
6500
+ [0x4C2C8],
6501
+ [0x204C2C8],
6502
+ None,
6503
+ "LoadAndCompareScriptVarAndValue",
6504
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6505
+ None,
6506
+ )
6507
+
6508
+ LoadAndCompareScriptVars = Symbol(
6509
+ [0x4C2E8],
6510
+ [0x204C2E8],
6511
+ None,
6512
+ "LoadAndCompareScriptVars",
6513
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6451
6514
  None,
6452
6515
  )
6453
6516
 
@@ -10089,15 +10152,33 @@ class JpArm9Data:
10089
10152
  "struct partner_talk_kind_table_entry[11]",
10090
10153
  )
10091
10154
 
10092
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10155
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10093
10156
  [0x9E280],
10094
10157
  [0x209E280],
10095
10158
  0x8,
10096
- "EVENT_FLAG_PROG_POS_INFO",
10159
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10097
10160
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10098
10161
  "struct prog_pos_info",
10099
10162
  )
10100
10163
 
10164
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10165
+ [0x9E288],
10166
+ [0x209E288],
10167
+ 0x8,
10168
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10169
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10170
+ "struct prog_pos_info",
10171
+ )
10172
+
10173
+ EVENT_FLAG_FILE_NAME = Symbol(
10174
+ [0x9E290],
10175
+ [0x209E290],
10176
+ 0x10,
10177
+ "EVENT_FLAG_FILE_NAME",
10178
+ "The file name 'event_flag.c', used for debug logging.",
10179
+ "",
10180
+ )
10181
+
10101
10182
  SCRIPT_VARS_LOCALS = Symbol(
10102
10183
  [0x9E2A0],
10103
10184
  [0x209E2A0],
@@ -10107,15 +10188,24 @@ class JpArm9Data:
10107
10188
  "struct script_local_var_table",
10108
10189
  )
10109
10190
 
10110
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10191
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10111
10192
  [0x9E2FC],
10112
10193
  [0x209E2FC],
10113
10194
  0x20,
10114
- "EVENT_FLAG_EXPANSION_ERROR",
10195
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10115
10196
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10116
10197
  "",
10117
10198
  )
10118
10199
 
10200
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10201
+ [0x9E31C],
10202
+ [0x209E31C],
10203
+ 0x1C,
10204
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10205
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10206
+ "",
10207
+ )
10208
+
10119
10209
  SCRIPT_VARS = Symbol(
10120
10210
  [0x9EC44],
10121
10211
  [0x209EC44],
@@ -11620,6 +11710,14 @@ class JpArm9Data:
11620
11710
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11621
11711
  )
11622
11712
 
11713
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11714
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11715
+ )
11716
+
11717
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11718
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11719
+ )
11720
+
11623
11721
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11624
11722
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11625
11723
  )
@@ -6401,7 +6401,70 @@ class JpItcmArm9Functions:
6401
6401
  None,
6402
6402
  None,
6403
6403
  "CalcScriptVariables",
6404
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6404
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6405
+ None,
6406
+ )
6407
+
6408
+ CompareScriptVariables = Symbol(
6409
+ None,
6410
+ None,
6411
+ None,
6412
+ "CompareScriptVariables",
6413
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6414
+ None,
6415
+ )
6416
+
6417
+ CalcScriptVariablesVeneer = Symbol(
6418
+ None,
6419
+ None,
6420
+ None,
6421
+ "CalcScriptVariablesVeneer",
6422
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6423
+ None,
6424
+ )
6425
+
6426
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6427
+ None,
6428
+ None,
6429
+ None,
6430
+ "CalcAndUpdateScriptVarWithOtherValue",
6431
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6432
+ None,
6433
+ )
6434
+
6435
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6436
+ None,
6437
+ None,
6438
+ None,
6439
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6440
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6441
+ None,
6442
+ )
6443
+
6444
+ CompareScriptVariablesVeneer = Symbol(
6445
+ None,
6446
+ None,
6447
+ None,
6448
+ "CompareScriptVariablesVeneer",
6449
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6450
+ None,
6451
+ )
6452
+
6453
+ LoadAndCompareScriptVarAndValue = Symbol(
6454
+ None,
6455
+ None,
6456
+ None,
6457
+ "LoadAndCompareScriptVarAndValue",
6458
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6459
+ None,
6460
+ )
6461
+
6462
+ LoadAndCompareScriptVars = Symbol(
6463
+ None,
6464
+ None,
6465
+ None,
6466
+ "LoadAndCompareScriptVars",
6467
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6405
6468
  None,
6406
6469
  )
6407
6470
 
@@ -10039,15 +10102,33 @@ class JpItcmArm9Data:
10039
10102
  "struct partner_talk_kind_table_entry[11]",
10040
10103
  )
10041
10104
 
10042
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10105
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10043
10106
  None,
10044
10107
  None,
10045
10108
  None,
10046
- "EVENT_FLAG_PROG_POS_INFO",
10109
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10047
10110
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10048
10111
  "struct prog_pos_info",
10049
10112
  )
10050
10113
 
10114
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10115
+ None,
10116
+ None,
10117
+ None,
10118
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10119
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10120
+ "struct prog_pos_info",
10121
+ )
10122
+
10123
+ EVENT_FLAG_FILE_NAME = Symbol(
10124
+ None,
10125
+ None,
10126
+ None,
10127
+ "EVENT_FLAG_FILE_NAME",
10128
+ "The file name 'event_flag.c', used for debug logging.",
10129
+ "",
10130
+ )
10131
+
10051
10132
  SCRIPT_VARS_LOCALS = Symbol(
10052
10133
  None,
10053
10134
  None,
@@ -10057,15 +10138,24 @@ class JpItcmArm9Data:
10057
10138
  "struct script_local_var_table",
10058
10139
  )
10059
10140
 
10060
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10141
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10061
10142
  None,
10062
10143
  None,
10063
10144
  None,
10064
- "EVENT_FLAG_EXPANSION_ERROR",
10145
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10065
10146
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10066
10147
  "",
10067
10148
  )
10068
10149
 
10150
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10151
+ None,
10152
+ None,
10153
+ None,
10154
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10155
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10156
+ "",
10157
+ )
10158
+
10069
10159
  SCRIPT_VARS = Symbol(
10070
10160
  None,
10071
10161
  None,
@@ -11559,6 +11649,14 @@ class JpItcmArm9Data:
11559
11649
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11560
11650
  )
11561
11651
 
11652
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11653
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11654
+ )
11655
+
11656
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11657
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11658
+ )
11659
+
11562
11660
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11563
11661
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11564
11662
  )
pmdsky_debug_py/na.py CHANGED
@@ -6447,7 +6447,70 @@ class NaArm9Functions:
6447
6447
  [0x204BCAC],
6448
6448
  None,
6449
6449
  "CalcScriptVariables",
6450
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6450
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6451
+ None,
6452
+ )
6453
+
6454
+ CompareScriptVariables = Symbol(
6455
+ [0x4BD98],
6456
+ [0x204BD98],
6457
+ None,
6458
+ "CompareScriptVariables",
6459
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6460
+ None,
6461
+ )
6462
+
6463
+ CalcScriptVariablesVeneer = Symbol(
6464
+ [0x4BECC],
6465
+ [0x204BECC],
6466
+ None,
6467
+ "CalcScriptVariablesVeneer",
6468
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6469
+ None,
6470
+ )
6471
+
6472
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6473
+ [0x4BED8],
6474
+ [0x204BED8],
6475
+ None,
6476
+ "CalcAndUpdateScriptVarWithOtherValue",
6477
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6478
+ None,
6479
+ )
6480
+
6481
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6482
+ [0x4BF10],
6483
+ [0x204BF10],
6484
+ None,
6485
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6486
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6487
+ None,
6488
+ )
6489
+
6490
+ CompareScriptVariablesVeneer = Symbol(
6491
+ [0x4BF5C],
6492
+ [0x204BF5C],
6493
+ None,
6494
+ "CompareScriptVariablesVeneer",
6495
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6496
+ None,
6497
+ )
6498
+
6499
+ LoadAndCompareScriptVarAndValue = Symbol(
6500
+ [0x4BF68],
6501
+ [0x204BF68],
6502
+ None,
6503
+ "LoadAndCompareScriptVarAndValue",
6504
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6505
+ None,
6506
+ )
6507
+
6508
+ LoadAndCompareScriptVars = Symbol(
6509
+ [0x4BF88],
6510
+ [0x204BF88],
6511
+ None,
6512
+ "LoadAndCompareScriptVars",
6513
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6451
6514
  None,
6452
6515
  )
6453
6516
 
@@ -10094,15 +10157,33 @@ class NaArm9Data:
10094
10157
  "struct partner_talk_kind_table_entry[11]",
10095
10158
  )
10096
10159
 
10097
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10160
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10098
10161
  [0x9CEAC],
10099
10162
  [0x209CEAC],
10100
10163
  0x8,
10101
- "EVENT_FLAG_PROG_POS_INFO",
10164
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10102
10165
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10103
10166
  "struct prog_pos_info",
10104
10167
  )
10105
10168
 
10169
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10170
+ [0x9CEB4],
10171
+ [0x209CEB4],
10172
+ 0x8,
10173
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10174
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10175
+ "struct prog_pos_info",
10176
+ )
10177
+
10178
+ EVENT_FLAG_FILE_NAME = Symbol(
10179
+ [0x9CEBC],
10180
+ [0x209CEBC],
10181
+ 0x10,
10182
+ "EVENT_FLAG_FILE_NAME",
10183
+ "The file name 'event_flag.c', used for debug logging.",
10184
+ "",
10185
+ )
10186
+
10106
10187
  SCRIPT_VARS_LOCALS = Symbol(
10107
10188
  [0x9CECC],
10108
10189
  [0x209CECC],
@@ -10112,15 +10193,24 @@ class NaArm9Data:
10112
10193
  "struct script_local_var_table",
10113
10194
  )
10114
10195
 
10115
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10196
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10116
10197
  [0x9CF28],
10117
10198
  [0x209CF28],
10118
10199
  0x20,
10119
- "EVENT_FLAG_EXPANSION_ERROR",
10200
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10120
10201
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10121
10202
  "",
10122
10203
  )
10123
10204
 
10205
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10206
+ [0x9CF48],
10207
+ [0x209CF48],
10208
+ 0x1C,
10209
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10210
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10211
+ "",
10212
+ )
10213
+
10124
10214
  SCRIPT_VARS = Symbol(
10125
10215
  [0x9D870],
10126
10216
  [0x209D870],
@@ -11625,6 +11715,14 @@ class NaArm9Data:
11625
11715
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11626
11716
  )
11627
11717
 
11718
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11719
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11720
+ )
11721
+
11722
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11723
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11724
+ )
11725
+
11628
11726
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11629
11727
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11630
11728
  )
@@ -6401,7 +6401,70 @@ class NaItcmArm9Functions:
6401
6401
  None,
6402
6402
  None,
6403
6403
  "CalcScriptVariables",
6404
- "Performs a calculation on two loaded script variables.\n\nr0: script variable 1\nr1: script variable 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6404
+ "Performs a calculation on two loaded script variables.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6405
+ None,
6406
+ )
6407
+
6408
+ CompareScriptVariables = Symbol(
6409
+ None,
6410
+ None,
6411
+ None,
6412
+ "CompareScriptVariables",
6413
+ "Compares two loaded script variables and returns the comparison result.\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6414
+ None,
6415
+ )
6416
+
6417
+ CalcScriptVariablesVeneer = Symbol(
6418
+ None,
6419
+ None,
6420
+ None,
6421
+ "CalcScriptVariablesVeneer",
6422
+ "Likely a linker-generated veneer for CalcScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: calculation to perform on the script variables\nreturn: calculation result",
6423
+ None,
6424
+ )
6425
+
6426
+ CalcAndUpdateScriptVarWithOtherValue = Symbol(
6427
+ None,
6428
+ None,
6429
+ None,
6430
+ "CalcAndUpdateScriptVarWithOtherValue",
6431
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other value to use in the calculation\nr3: calculation to perform on the script variables",
6432
+ None,
6433
+ )
6434
+
6435
+ CalcAndUpdateScriptVarWithOtherScriptVar = Symbol(
6436
+ None,
6437
+ None,
6438
+ None,
6439
+ "CalcAndUpdateScriptVarWithOtherScriptVar",
6440
+ "Runs a calculation on a script variable, then sets the script variable to the calculation result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the calculation\nr3: calculation to perform on the script variables",
6441
+ None,
6442
+ )
6443
+
6444
+ CompareScriptVariablesVeneer = Symbol(
6445
+ None,
6446
+ None,
6447
+ None,
6448
+ "CompareScriptVariablesVeneer",
6449
+ "Likely a linker-generated veneer for CompareScriptVariables.\n\nSee https://developer.arm.com/documentation/dui0474/k/image-structure-and-generation/linker-generated-veneers/what-is-a-veneer-\n\nr0: script variable value 1\nr1: script variable value 2\nr2: comparison to perform on the script variables\nreturn: comparison result",
6450
+ None,
6451
+ )
6452
+
6453
+ LoadAndCompareScriptVarAndValue = Symbol(
6454
+ None,
6455
+ None,
6456
+ None,
6457
+ "LoadAndCompareScriptVarAndValue",
6458
+ "Runs a comparison on a script variable and another value, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6459
+ None,
6460
+ )
6461
+
6462
+ LoadAndCompareScriptVars = Symbol(
6463
+ None,
6464
+ None,
6465
+ None,
6466
+ "LoadAndCompareScriptVars",
6467
+ "Runs a comparison on two script variables, then returns the comparison result.\n\nr0: pointer to the local variable table\nr1: script variable ID\nr2: other script variable to use in the comparison\nr3: comparison to perform on the script variables\nreturn: comparison result",
6405
6468
  None,
6406
6469
  )
6407
6470
 
@@ -10039,15 +10102,33 @@ class NaItcmArm9Data:
10039
10102
  "struct partner_talk_kind_table_entry[11]",
10040
10103
  )
10041
10104
 
10042
- EVENT_FLAG_PROG_POS_INFO = Symbol(
10105
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES = Symbol(
10043
10106
  None,
10044
10107
  None,
10045
10108
  None,
10046
- "EVENT_FLAG_PROG_POS_INFO",
10109
+ "EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES",
10047
10110
  "Debug information used to log an error with an unrecognized operation in CalcScriptVariables.",
10048
10111
  "struct prog_pos_info",
10049
10112
  )
10050
10113
 
10114
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES = Symbol(
10115
+ None,
10116
+ None,
10117
+ None,
10118
+ "EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES",
10119
+ "Debug information used to log an error with an unrecognized operation in CompareScriptVariables.",
10120
+ "struct prog_pos_info",
10121
+ )
10122
+
10123
+ EVENT_FLAG_FILE_NAME = Symbol(
10124
+ None,
10125
+ None,
10126
+ None,
10127
+ "EVENT_FLAG_FILE_NAME",
10128
+ "The file name 'event_flag.c', used for debug logging.",
10129
+ "",
10130
+ )
10131
+
10051
10132
  SCRIPT_VARS_LOCALS = Symbol(
10052
10133
  None,
10053
10134
  None,
@@ -10057,15 +10138,24 @@ class NaItcmArm9Data:
10057
10138
  "struct script_local_var_table",
10058
10139
  )
10059
10140
 
10060
- EVENT_FLAG_EXPANSION_ERROR = Symbol(
10141
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR = Symbol(
10061
10142
  None,
10062
10143
  None,
10063
10144
  None,
10064
- "EVENT_FLAG_EXPANSION_ERROR",
10145
+ "EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR",
10065
10146
  "Error log message for an unrecognized operation in CalcScriptVariables.",
10066
10147
  "",
10067
10148
  )
10068
10149
 
10150
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR = Symbol(
10151
+ None,
10152
+ None,
10153
+ None,
10154
+ "EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR",
10155
+ "Error log message for an unrecognized operation in CompareScriptVariables.",
10156
+ "",
10157
+ )
10158
+
10069
10159
  SCRIPT_VARS = Symbol(
10070
10160
  None,
10071
10161
  None,
@@ -11559,6 +11649,14 @@ class NaItcmArm9Data:
11559
11649
  "EXCLUSIVE_ITEM_ATTACK_BOOSTS", EXCLUSIVE_ITEM_STAT_BOOST_DATA
11560
11650
  )
11561
11651
 
11652
+ EVENT_FLAG_PROG_POS_INFO = _Deprecated(
11653
+ "EVENT_FLAG_PROG_POS_INFO", EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES
11654
+ )
11655
+
11656
+ EVENT_FLAG_EXPANSION_ERROR = _Deprecated(
11657
+ "EVENT_FLAG_EXPANSION_ERROR", EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR
11658
+ )
11659
+
11562
11660
  DIRECTORY_FILES_EXTRACTED = _Deprecated(
11563
11661
  "DIRECTORY_FILES_EXTRACTED", PACK_FILES_OPENED
11564
11662
  )
@@ -3627,6 +3627,41 @@ class Arm9FunctionsProtocol(Protocol):
3627
3627
  None,
3628
3628
  ]
3629
3629
 
3630
+ CompareScriptVariables: Symbol[
3631
+ Optional[list[int]],
3632
+ None,
3633
+ ]
3634
+
3635
+ CalcScriptVariablesVeneer: Symbol[
3636
+ Optional[list[int]],
3637
+ None,
3638
+ ]
3639
+
3640
+ CalcAndUpdateScriptVarWithOtherValue: Symbol[
3641
+ Optional[list[int]],
3642
+ None,
3643
+ ]
3644
+
3645
+ CalcAndUpdateScriptVarWithOtherScriptVar: Symbol[
3646
+ Optional[list[int]],
3647
+ None,
3648
+ ]
3649
+
3650
+ CompareScriptVariablesVeneer: Symbol[
3651
+ Optional[list[int]],
3652
+ None,
3653
+ ]
3654
+
3655
+ LoadAndCompareScriptVarAndValue: Symbol[
3656
+ Optional[list[int]],
3657
+ None,
3658
+ ]
3659
+
3660
+ LoadAndCompareScriptVars: Symbol[
3661
+ Optional[list[int]],
3662
+ None,
3663
+ ]
3664
+
3630
3665
  EventFlagResume: Symbol[
3631
3666
  Optional[list[int]],
3632
3667
  None,
@@ -5650,7 +5685,17 @@ class Arm9DataProtocol(Protocol):
5650
5685
  Optional[int],
5651
5686
  ]
5652
5687
 
5653
- EVENT_FLAG_PROG_POS_INFO: Symbol[
5688
+ EVENT_FLAG_PROG_POS_INFO_CALC_SCRIPT_VARIABLES: Symbol[
5689
+ Optional[list[int]],
5690
+ Optional[int],
5691
+ ]
5692
+
5693
+ EVENT_FLAG_PROG_POS_INFO_COMPARE_SCRIPT_VARIABLES: Symbol[
5694
+ Optional[list[int]],
5695
+ Optional[int],
5696
+ ]
5697
+
5698
+ EVENT_FLAG_FILE_NAME: Symbol[
5654
5699
  Optional[list[int]],
5655
5700
  Optional[int],
5656
5701
  ]
@@ -5660,7 +5705,12 @@ class Arm9DataProtocol(Protocol):
5660
5705
  Optional[int],
5661
5706
  ]
5662
5707
 
5663
- EVENT_FLAG_EXPANSION_ERROR: Symbol[
5708
+ EVENT_FLAG_CALC_SCRIPT_VARIABLES_ERROR: Symbol[
5709
+ Optional[list[int]],
5710
+ Optional[int],
5711
+ ]
5712
+
5713
+ EVENT_FLAG_COMPARE_SCRIPT_VARIABLES_ERROR: Symbol[
5664
5714
  Optional[list[int]],
5665
5715
  Optional[int],
5666
5716
  ]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pmdsky-debug-py
3
- Version: 10.2.19
3
+ Version: 10.2.20
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=5nHJZZsSb5S6AzxHCleJY6TjqcXCAkK7Z-ZAidmLchM,31
3
+ pmdsky_debug_py/eu.py,sha256=TSdbaQyW-p6_yI850ukLvc8wOm-KB01x3KTVHXDTJY4,1247510
4
+ pmdsky_debug_py/eu_itcm.py,sha256=CuyLWhD-uN3g2zGnzhRmh0tqfthHHLOBGh90lCdeqoI,1192637
5
+ pmdsky_debug_py/jp.py,sha256=KfTpjm2PJNZtXrAnPb7b1W0ghEhUbLcnMMdqPOQ9s7E,1244203
6
+ pmdsky_debug_py/jp_itcm.py,sha256=BAe0laYb4XCn--NBSdU_kdRJxdt8swajG-qzGAXHDGA,1192637
7
+ pmdsky_debug_py/na.py,sha256=YNzWNc-zDeC8X7VWcIJFubXwQW95v14Uau13aKJxwgQ,1248432
8
+ pmdsky_debug_py/na_itcm.py,sha256=95jeoi3nsExvyfMzVdWy4ThhHC-xsXVEkcmIlkDtf3I,1192637
9
+ pmdsky_debug_py/protocol.py,sha256=IlWRA7sot55s1dbWE4E8pxLt3Gg_o0b6OtYMm-7m4B4,363279
10
+ pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ pmdsky_debug_py-10.2.20.dist-info/METADATA,sha256=jEMGatZDYOkxbniXpN2-humDmK__dqwPvqngjm9tqbw,1376
12
+ pmdsky_debug_py-10.2.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
+ pmdsky_debug_py-10.2.20.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
+ pmdsky_debug_py-10.2.20.dist-info/RECORD,,
@@ -1,14 +0,0 @@
1
- pmdsky_debug_py/__init__.py,sha256=xvXjdxEqeoQaaS6ssZYVI9jARzv5M4q6FNwA3Z6fOw4,1831
2
- pmdsky_debug_py/_release.py,sha256=mtMWl1sZmSqjx5kWhtU7rhC8JlGsmzdpsKvi_cImakc,31
3
- pmdsky_debug_py/eu.py,sha256=5d5LqVZQoZv2ikSxaWiOuA-1Qx-K2kJpXBBsAugynjM,1243199
4
- pmdsky_debug_py/eu_itcm.py,sha256=n52SkZIyDHE-8u-Fxme7W3M_O7NxJE9jK-hyXb2SIbo,1188445
5
- pmdsky_debug_py/jp.py,sha256=uyQ5vDiOj5tQUAsGdlglCbL30Jvwe5sLIOeNl6eBmZs,1239892
6
- pmdsky_debug_py/jp_itcm.py,sha256=6t-ulDkDP4BLV4SpXYhVhE7Kh7DPez3AQjaLRUILHUU,1188445
7
- pmdsky_debug_py/na.py,sha256=67roLcv_zCtV7ork-0ri4QKb8Qi37O5kkgf25-mB0Wk,1244121
8
- pmdsky_debug_py/na_itcm.py,sha256=avtS0EEurhGeLKFIZHZ_MQY4TfKDkdsKDh9PCTVpIzo,1188445
9
- pmdsky_debug_py/protocol.py,sha256=Hefzz8M6ctRl4wLA9JwVK0qf3Xd8TOP2R1UgiybfWXI,362262
10
- pmdsky_debug_py/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
- pmdsky_debug_py-10.2.19.dist-info/METADATA,sha256=lTv8jSPcOmx24v7m6YBk8hxjkqDyGKeW1wX4ySfdG8c,1376
12
- pmdsky_debug_py-10.2.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
13
- pmdsky_debug_py-10.2.19.dist-info/top_level.txt,sha256=cqvpcJbud2s8IyBAc1MfCySwniko_6qO5LWSSxNIoXI,16
14
- pmdsky_debug_py-10.2.19.dist-info/RECORD,,