-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsmcol_sav_editor.py
1078 lines (851 loc) · 48.6 KB
/
smcol_sav_editor.py
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
import os
import datetime
import sys
import json
from smcol_sav_converter import handle_metadata, read_sav_structure, dump_sav_structure, REL_VER
from smcol_sav_common import *
DEFAULT_SETTINGS = {"colonize_path": ".",
"editor": {"remove_fortifications_only_in_player_colonies": True,
"plant_forest_tools_cost": 100,
"plant_forest_hardy_pio_need": True,
"warehouse_max_level": 4,
"warehouse_level_inc_hammers_multiplier": 2,
"warehouse_level_inc_tools_multiplier": 2,
"assimilate_work_duration_thresh": 10,
"assimilate_target_state": "Indentured servant",
"REF_squad_counts": (4, 2, 1, 1),
"workers_count_caps": (3, 3, 5)}
}
FIELD_VALUES = {
"control_type": {"PLAYER": "00", "AI": "01", "WITHDRAWN": "02"},
"difficulty_type": {"Discoverer": "00", "Explorer": "01", "Conquistador": "02", "Governor": "03", "Viceroy": "04"},
"season_type": {"autumn": "01 00", "spring": "00 00"},
"nation_type": {"England": "00", "France": "01", "Spain": "02", "Netherlands": "03", "Inca": "04", "Aztec": "05",
"Awarak": "06", "Iroquois": "07", "Cherokee": "08", "Apache": "09", "Sioux": "0A", "Tupi": "0B", "None": "FF"},
"profession_type": {"expert farmer": "00", "master sugar planter": "01", "master tobacco planter": "02", "master cotton planter": "03",
"expert fur trapper": "04", "expert lumberjack": "05", "expert ore miner": "06", "expert silver miner": "07",
"expert fisherman": "08", "master distiller": "09", "master tobacconist": "0A", "master weaver": "0B",
"master fur trader": "0C", "master carpenter": "0D", "master blacksmith": "0E", "master gunsmith": "0F",
"firebrand preacher": "10", "elder statesman": "11", "*(student)": "12", "*(free colonist)": "13", "hardy pioneer": "14",
"veteran soldier": "15", "seasoned scout": "16", "veteran dragoon": "17", "jesuit missionary": "18",
"indentured servant": "19", "petty criminal": "1A", "indian convert": "1B", "free colonist": "1C"},
"unit_type": {"colonist": "00", "soldier": "01", "pioneer": "02", "missionary": "03", "dragoon": "04", "scout": "05", "tory regular": "06",
"continental cavalry": "07", "tory cavalry": "08", "continental army": "09", "treasure": "0A", "artillery": "0B",
"wagon train": "0C", "caravel": "0D", "merchantman": "0E", "galeon": "0F", "privateer": "10", "frigate": "11",
"man-o-war": "12", "brave": "13", "armed brave": "14", "mounted brave": "15", "mounted warrior": "16"}
}
IND_CONV_PROM_DATA = [{'unit_type': 'scout', 'reqs': [('horses', 50)]},
{'unit_type': 'mounted brave', 'reqs': [('horses', 50)]},
{'unit_type': 'armed brave', 'reqs': [('muskets', 50)]},
{'unit_type': 'mounted warrior', 'reqs': [('horses', 50), ('muskets', 50)]},
{'unit_type': 'pioneer', 'reqs': [('tools', 20, 100, 20)]}] # <- ('tools', min, max, step)
EF_UNIT_FIELDS_NAMES = ('regulars', 'dragoons', 'artillery', 'man-o-wars')
def read_json_sav_data(sav_filename: str, sav_structure: dict, sections_to_read=None):
try:
with open(sav_filename, mode='rb') as sf:
sav_data = sf.read()
read_metadata = handle_metadata(sav_structure['__metadata'])
json_sav_data = read_sav_structure(sav_structure, sav_data, read_metadata, ignore_compact=True, ignore_custom_type=True, sections_to_read=sections_to_read)
json_sav_data['__structure'] = sav_structure
except Exception as ex:
return None
else:
return json_sav_data, read_metadata
def save_sav_data(sav_filename: str, json_sav_data: dict):
loaded_sav_structure = json_sav_data['__structure']
loaded_metadata = handle_metadata(loaded_sav_structure['__metadata'])
# Serialize and dump JSON data to original binary SAV format
enc_sav_data = dump_sav_structure(json_sav_data, loaded_sav_structure, loaded_metadata)
for bak_num in range(100):
bak_sav_filename = sav_filename + f'.bak_{bak_num}'
try:
with open(bak_sav_filename, mode='rb') as svftenc:
continue
except:
os.rename(sav_filename, bak_sav_filename)
break
else:
bak_sav_filename = None
#saved_filename = sav_filename + '.enc'
with open(sav_filename, mode='wb') as svftenc:
svftenc.write(enc_sav_data)
return bak_sav_filename
def get_caption_data(json_sav_data: dict):
if json_sav_data is None:
return None
caption_data = {'year': json_sav_data['HEAD']['year'],
'season': FIELD_VALUES['season_type_inv'][json_sav_data['HEAD']['season']],
'difficulty': FIELD_VALUES['difficulty_type_inv'][json_sav_data['HEAD']['difficulty']]}
for i, pl in enumerate(json_sav_data['PLAYER']):
if pl['control'] == FIELD_VALUES['control_type']['PLAYER']:
caption_data['name'] = pl['name']
caption_data['country_name'] = pl['country_name']
caption_data['colonies'] = pl['founded_colonies']
caption_data['gold'] = json_sav_data['NATION'][i]['gold']
caption_data['player_nation_id'] = i
break
else:
caption_data['name'] = 'no'
caption_data['country_name'] = 'no'
caption_data['colonies'] = 0
caption_data['gold'] = 0
caption_data['player_nation_id'] = None
return caption_data
class SAVEditor:
def __init__(self, in_sav_filepath: str, sav_structure: dict):
self.sav_filepath = in_sav_filepath
self.sav_structure = sav_structure
self.json_sav_data = None
self.metadata = None
self.caption_data = None
self.is_initialized = False
self.unsaved_changes = []
self.load()
def filename(self):
return os.path.split(self.sav_filepath)[1]
def filepath(self):
return self.sav_filepath
def load(self):
self.json_sav_data, self.metadata = read_json_sav_data(self.sav_filepath, self.sav_structure)
self.is_initialized = self.json_sav_data is not None
self.caption_data = get_caption_data(self.json_sav_data)
self.unsaved_changes = []
# Если колония одна, то она не будет списком. Исправим это
if 'COLONY' not in self.json_sav_data or self.json_sav_data['COLONY'] is None:
self.json_sav_data['COLONY'] = []
elif not isinstance(self.json_sav_data['COLONY'], list):
self.json_sav_data['COLONY'] = [self.json_sav_data['COLONY']]
# Если юнит один (но этого не бывает!), то он не будет списком. Исправим это
if 'UNIT' not in self.json_sav_data or self.json_sav_data['UNIT'] is None:
self.json_sav_data['UNIT'] = []
elif not isinstance(self.json_sav_data['UNIT'], list):
self.json_sav_data['UNIT'] = [self.json_sav_data['UNIT']]
def save(self):
bak_filename = save_sav_data(self.sav_filepath, self.json_sav_data)
self.unsaved_changes = []
return bak_filename
def get_player_nation(self):
if not self.is_initialized or self.caption_data['player_nation_id'] is None:
return None
# return self.metadata['nation_type_inv'][self.caption_data['player_nation_id']]
return list(self.metadata['nation_type_inv'].values())[self.caption_data['player_nation_id']]
def __getitem__(self, item):
return self.json_sav_data[item]
def __setitem__(self, key, value):
self.json_sav_data[key] = value
def extract_coords_from_str(coords_str: str):
coords_splt = coords_str.split(',')
if len(coords_splt) != 2:
return None
try:
x = int(coords_splt[0])
y = int(coords_splt[1])
except:
return None
else:
return x, y
def run_plant_forest_routine(sav_editor: SAVEditor):
"""Run plant forest routine"""
print()
print('== Plant forest ==')
# Load corresponding settings
field_name = 'plant_forest_tools_cost'
try:
plant_forest_tools_cost = int(settings['editor'][field_name])
except:
plant_forest_tools_cost = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({plant_forest_tools_cost})")
field_name = 'plant_forest_hardy_pio_need'
try:
plant_forest_hardy_pio_need = int(settings['editor'][field_name])
except:
plant_forest_hardy_pio_need = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({plant_forest_hardy_pio_need})")
print(f"Plant forest on a tile with coordinates you enter.", end=" ")
if plant_forest_tools_cost > 0:
print(f"The player's {'HARDY ' if plant_forest_hardy_pio_need else ''}PIONEER with at least {plant_forest_tools_cost} tools must stay on the tile.")
print("(You may edit 'plant_forest_tools_cost' and 'plant_forest_hardy_pio_need' values in settings)")
else:
print()
def check_coords_str(coords_str: str):
"""Check coords_str input correctness"""
if coords_str == 'y':
return True
coords_val = extract_coords_from_str(coords_str)
if coords_val is None:
return False
return 1 <= coords_val[0] <= sav_editor['HEAD']['map_size_x'] and 1 <= coords_val[1] <= sav_editor['HEAD']['map_size_y']
while True:
#coords_str = get_input("Enter coords of a tile you want to turn to a forest (x, y) or press ENTER to quit: ", res_type=str, error_str="Wrong tile coords:", check_fun=check_coords_str)
coords_str = get_input(f"Do you want to reforest tile ({sav_editor['STUFF']['x']}, {sav_editor['STUFF']['y']})? Enter 'y' if yes or enter coords of a tile you want to reforest (x, y) or press ENTER to quit: ",
res_type=str, error_str="Wrong tile coords:", check_fun=check_coords_str)
if coords_str is None:
break
if coords_str == 'y':
tile_x, tile_y = sav_editor['STUFF']['x'], sav_editor['STUFF']['y']
else:
tile_x, tile_y = extract_coords_from_str(coords_str)
curr_tile = sav_editor['TILE'][tile_y][tile_x]['tile']
if curr_tile[0] == '1':
print('ERROR: cannot plant forest on an ocean or arctic tile!')
continue
if sav_editor['TILE'][tile_y][tile_x]['hill_river'][2] == '1':
print('ERROR: cannot plant forest on a hill or mountain!')
continue
if curr_tile[1] == '1':
print('ERROR: the tile is already forested!')
continue
if plant_forest_tools_cost > 0:
# Searching for the player's hardy pioneer on selected tile
pioneer_unit = None
for unit in sav_editor['UNIT']:
if unit['x, y'][0] == tile_x and unit['x, y'][1] == tile_y and unit['type'] == FIELD_VALUES['unit_type']['pioneer'] \
and (not plant_forest_hardy_pio_need or unit['profession_or_treasure_amount'] == FIELD_VALUES['profession_type']['hardy pioneer']) \
and unit['cargo_hold'][5] >= plant_forest_tools_cost:
pioneer_unit = unit
break
if pioneer_unit is None:
print(f"ERROR: The player's {'HARDY ' if plant_forest_hardy_pio_need else ''}PIONEER with tools quantity not less than {plant_forest_tools_cost} must stay on the tile!")
continue
pioneer_unit['cargo_hold'][5] -= plant_forest_tools_cost
pioneer_unit['orders'] = '00'
pioneer_unit['moves'] = 3
if pioneer_unit['cargo_hold'][5] == 0:
pioneer_unit['type'] = '00'
# Planting forest!
sav_editor['TILE'][tile_y][tile_x]['tile'] = curr_tile[:1] + '1' + curr_tile[2:]
sav_editor['MASK'][tile_y][tile_x]['plowed'] = '0'
res_str = f"Forest planted on tile {(tile_x, tile_y)}"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def run_reload_routine(sav_editor: SAVEditor):
if len(sav_editor.unsaved_changes) > 0:
ans = get_input("There are unsaved changes. Do you want to skip them? [y/n]: ", res_type=str, error_str="Wrong answer:", check_fun=lambda x: x[0].lower() in ['y', 'n'])
if ans is None or ans[0].lower() == 'n':
print("Reloading canceled")
return
sav_editor.load()
if sav_editor.is_initialized:
print(f"SAV file '{sav_editor.filename()}' reload SUCCESS")
def run_save_routine(sav_editor: SAVEditor):
try:
bak_filename = sav_editor.save()
except Exception as ex:
print(f"ERROR: saving FAILED!: {ex}")
else:
print(f"Saving SUCCESS!", end=' ')
if bak_filename:
print(f"Backup saved to '{bak_filename}'")
else:
print("Failed to make a backup!")
def run_show_changes_routine(sav_editor: SAVEditor):
print()
if len(sav_editor.unsaved_changes) > 0:
print('== Pending changes ==')
for uc in sav_editor.unsaved_changes:
print(f"* {uc}")
else:
print("== No changes made ==")
def run_remove_stokade_routine(sav_editor: SAVEditor):
print()
print('== Remove fortifications ==')
if settings['editor']['remove_fortifications_only_in_player_colonies']:
print(" (from player's colonies) ")
if settings['editor']['remove_fortifications_only_in_player_colonies']:
player_nation = sav_editor.get_player_nation()
else:
player_nation = None
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No colonies found!")
return
no_fort = '000'
fortifications = {no_fort: 'no', '001': 'stockade', '011': 'fort', '111': 'fortress'}
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
print(f"{i:2}. {col['name']}: {fortifications[col['buildings']['fortification']]}")
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx-1]
if curr_colony['buildings']['fortification'] == no_fort:
print(f"Colony '{curr_colony['name']}' doesn't have any fortification")
continue
ans_yn = get_input(f"Colony '{curr_colony['name']}' has fortification: {fortifications[curr_colony['buildings']['fortification']]}. Remove it? [y/n]", res_type=str, error_str="Wrong answer:", check_fun=lambda x: x[0].lower() in ['y', 'n'])
if ans_yn is None or ans_yn[0].lower() == 'n':
print(f"Fortification removing cancelled")
continue
curr_colony['buildings']['fortification'] = no_fort
res_str = f"Fortification removed in '{curr_colony['name']}'"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def get_upgrade_wh_settings_values():
field_name = 'warehouse_max_level'
try:
max_wh_level = int(settings['editor'][field_name])
except:
max_wh_level = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({max_wh_level})")
field_name = 'warehouse_level_inc_hammers_multiplier'
try:
hammers_mult_koeff = settings['editor'][field_name]
except:
hammers_mult_koeff = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({hammers_mult_koeff})")
field_name = 'warehouse_level_inc_tools_multiplier'
try:
tools_mult_koeff = settings['editor'][field_name]
except:
tools_mult_koeff = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({tools_mult_koeff})")
return max_wh_level, hammers_mult_koeff, tools_mult_koeff
def run_upgrade_warehouse_level_routine(sav_editor: SAVEditor):
"""Upgrade warehouse level above 2"""
print()
print('== Upgrade warehouse ==')
max_wh_level, hammers_mult_koeff, tools_mult_koeff = get_upgrade_wh_settings_values()
print(f"Upgrade warehouse level in player's colonies above 2. Each level costs {hammers_mult_koeff} times more hammers\n"
f"and {tools_mult_koeff} times more tools than previous. Max level is {max_wh_level}.")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No colonies found!")
return
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
print(f"{i:2}. {col['name']}: warehouse {col['warehouse_level']} lvl")
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx-1]
curr_wh_level = curr_colony['warehouse_level']
if curr_wh_level < 2:
print(f"Colony '{curr_colony['name']}' has warehouse level below 2. Build warehouse expansion first to proceed.")
continue
if curr_wh_level == max_wh_level:
print(f"Colony '{curr_colony['name']}' already has maximum warehouse level ({curr_colony['warehouse_level']}).")
continue
needed_hammers_count = 80 * (hammers_mult_koeff ** (curr_wh_level-1))
needed_tools_count = 20 * (tools_mult_koeff ** (curr_wh_level - 1))
print(f"{needed_hammers_count} HAMMERS and {needed_tools_count} TOOLS are required to upgrade warehouse to level {curr_wh_level+1}")
if curr_colony['hammers'] < needed_hammers_count:
print(f"Colony '{curr_colony['name']}' doesn't have enough HAMMERS. There are only {curr_colony['hammers']}")
continue
if curr_colony['stock']['tools'] < needed_tools_count:
print(f"Colony '{curr_colony['name']}' doesn't have enough TOOLS. There are only {curr_colony['stock']['tools']}")
continue
ans_yn = get_input(f"Colony '{curr_colony['name']}' has enough HAMMERS ({curr_colony['hammers']}) and TOOLS ({curr_colony['stock']['tools']}) for warehouse upgrade. Upgrade it? [y/n]", res_type=str, error_str="Wrong answer:", check_fun=lambda x: x[0].lower() in ['y', 'n'])
if ans_yn is None or ans_yn[0].lower() == 'n':
print("Warehouse upgrade cancelled")
continue
curr_colony['warehouse_level'] += 1
curr_colony['hammers'] -= needed_hammers_count
curr_colony['stock']['tools'] -= needed_tools_count
res_str = f"Warehouse in '{curr_colony['name']}' upgraded to level {curr_wh_level+1}"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def get_working_converts_count(colony, duration_thresh):
"""Get indian converts workers count in the colony"""
durations = []
for dur in colony['duration']:
durations.append(dur['dur_1'])
durations.append(dur['dur_2'])
total_converts_count = 0
ready_converts_count = 0
max_work_dur = 0
ready_converts_indexes = []
for colonist_index in range(colony['population']):
if colony['profession'][colonist_index] != FIELD_VALUES['profession_type']['indian convert']:
continue
total_converts_count += 1
max_work_dur = max(max_work_dur, durations[colonist_index])
if durations[colonist_index] >= duration_thresh:
ready_converts_count += 1
ready_converts_indexes.append(colonist_index)
return total_converts_count, ready_converts_count, max_work_dur, ready_converts_indexes
def get_assimilate_settings_values():
field_name = 'assimilate_work_duration_thresh'
try:
work_duration_thresh = int(settings['editor'][field_name])
except:
work_duration_thresh = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({work_duration_thresh})")
field_name = 'assimilate_target_state'
try:
convert_to_state = settings['editor'][field_name]
except:
convert_to_state = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({convert_to_state})")
return work_duration_thresh, convert_to_state
def run_assimilate_converts_routine(sav_editor: SAVEditor):
"""Assimilate indian converts working in colonies"""
work_duration_thresh, convert_to_state = get_assimilate_settings_values()
print()
print('== Assimilate Indian converts ==')
print(f"Assimilate Indian converts who WORK at player's colonies for at least {work_duration_thresh} turns as {convert_to_state}s.")
print("Converts remaining outside the colony (at gates) cannot be converted.")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No player's colonies found!")
return
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
total_conv_count, ready_conv_count, _, _ = get_working_converts_count(col, work_duration_thresh)
if total_conv_count == 0:
res_str = "-"
else:
res_str = f"{total_conv_count} converts total, {ready_conv_count} of them ready for assimilation"
print(f"{i:2}. {col['name']}: " + res_str)
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx - 1]
total_conv_count, ready_conv_count, max_work_dur, ready_converts_indexes = get_working_converts_count(curr_colony, work_duration_thresh)
if total_conv_count == 0:
print(f"No Indian converts working in {curr_colony['name']}")
continue
if ready_conv_count == 0:
print(f"No Indian converts ready for assimilation in {curr_colony['name']}. They must work for at least {work_duration_thresh - max_work_dur} turns more.")
continue
# Assimilation!
curr_colony['profession'][ready_converts_indexes[0]] = FIELD_VALUES['profession_type'][convert_to_state.lower()]
res_str = f"An Indian convert in {curr_colony['name']} was assimilated as {convert_to_state.capitalize()}"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def get_waiting_converts(colony, sav_editor):
"""Get number of Indian converts waiting at the colony's gates"""
waiting_coverts = []
for unit in sav_editor['UNIT']:
if unit['x, y'][0] == colony['x, y'][0] and unit['x, y'][1] == colony['x, y'][1] and unit['type'] == FIELD_VALUES['unit_type']['colonist'] \
and unit['profession_or_treasure_amount'] == FIELD_VALUES['profession_type']['indian convert']:
waiting_coverts.append(unit)
return waiting_coverts
def run_arm_equip_converts_routine(sav_editor: SAVEditor):
"""Arm/equip Indian converts remaining at colonies' gates and make them warriors, scouts or pioneers"""
print()
print('== Arm/Equip Indian converts ==')
print("Promote Indian converts remaining outside the colony (at gates) to:")
print("* Scouts (for 50 horses)")
print("* Mounted braves (for 50 horses)")
print("* Armed braves (for 50 muskets)")
print("* Mounted warriors (for 50 horses and 50 muskets)")
print("* Pioneers (for 100 tools)")
print("Converts working in colonies cannot be promoted.")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No player's colonies found!")
return
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
waiting_converts = get_waiting_converts(col, sav_editor)
if len(waiting_converts) == 0:
res_str = "-"
else:
res_str = f"{len(waiting_converts)} converts remaining at gates"
print(f"{i:2}. {col['name']}: " + res_str)
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx - 1]
while True:
curr_waiting_converts = get_waiting_converts(curr_colony, sav_editor)
if len(curr_waiting_converts) < 1:
print(f"No Indian converts remaining at gates in {curr_colony['name']}")
break
print()
print(f"There is/are {len(curr_waiting_converts)} Indian converts remaining at gates in {curr_colony['name']}. Promote one to:")
for i, prom in enumerate(IND_CONV_PROM_DATA, start=1):
print(f"{i}. {prom['unit_type'].capitalize()}")
promote_idx = get_input("Enter promotion index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(IND_CONV_PROM_DATA))
if promote_idx is None:
break
# Checking requirements
curr_promotion = IND_CONV_PROM_DATA[promote_idx - 1]
reqs_met = True
for req in curr_promotion['reqs']:
if curr_colony['stock'][req[0]] < req[1]:
print(f"ERROR: not enough {req[0]} to promote an Indian convert to {curr_promotion['unit_type'].capitalize()} in {curr_colony['name']}: {req[1]} is needed but only {curr_colony['stock'][req[0]]} available")
reqs_met = False
if not reqs_met:
print(f"Promotion to {curr_promotion['unit_type'].capitalize()} cancelled")
continue
# Updating stocks
tools_count = 0
for req in curr_promotion['reqs']:
if len(req) == 2:
curr_colony['stock'][req[0]] -= req[1]
elif len(req) == 4:
tools_count = req[1]
while curr_colony['stock'][req[0]] >= tools_count and tools_count <= req[2]:
tools_count += req[3]
tools_count -= req[3]
curr_colony['stock'][req[0]] -= tools_count
# Promoting!
curr_waiting_converts[0]['type'] = FIELD_VALUES['unit_type'][curr_promotion['unit_type']]
curr_waiting_converts[0]['orders'] = '00'
curr_waiting_converts[0]['moves'] = 12
if tools_count > 0:
curr_waiting_converts[0]['cargo_hold'][5] = tools_count
res_str = f"An Indian convert in {curr_colony['name']} was promoted to {curr_promotion['unit_type'].capitalize()}"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def get_damaged_artillery(colony, sav_editor):
"""Get damaged artillery units waiting at the colony's gates"""
waiting_dam_art = []
for unit in sav_editor['UNIT']:
if unit['x, y'][0] == colony['x, y'][0] and unit['x, y'][1] == colony['x, y'][1]\
and unit['type'] == FIELD_VALUES['unit_type']['artillery'] and unit['unknown15']['damaged']:
waiting_dam_art.append(unit)
return waiting_dam_art
def run_repair_damaged_artillery_routine(sav_editor: SAVEditor):
"""Repair damaged artillery"""
# Hardcoded, just half a price of building
needed_hammers_count = 96
needed_tools_count = 20
print()
print('== Repair damaged artillery ==')
print(f"Restore full power of a damaged artillery for {needed_hammers_count} hammers and {needed_tools_count} tools. Damaged artillery unit must be inside a colony.")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No player's colonies found!")
return
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
waiting_dam_art = get_damaged_artillery(col, sav_editor)
if len(waiting_dam_art) == 0:
res_str = "-"
else:
res_str = f"{len(waiting_dam_art)} damaged artillery units"
print(f"{i:2}. {col['name']}: " + res_str)
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx - 1]
curr_waiting_dam_art = get_damaged_artillery(curr_colony, sav_editor)
if len(curr_waiting_dam_art) < 1:
print(f"No damaged artillery units in {curr_colony['name']}")
continue
#print(f"{needed_hammers_count} HAMMERS and {needed_tools_count} TOOLS are required to repair a damaged artillery")
if curr_colony['hammers'] < needed_hammers_count:
print(f"Colony '{curr_colony['name']}' doesn't have enough HAMMERS: {needed_hammers_count} is needed but only {curr_colony['hammers']} available")
continue
if curr_colony['stock']['tools'] < needed_tools_count:
print(f"Colony '{curr_colony['name']}' doesn't have enough TOOLS: {needed_tools_count} is needed but only {curr_colony['stock']['tools']} available")
continue
curr_colony['hammers'] -= needed_hammers_count
curr_colony['stock']['tools'] -= needed_tools_count
curr_waiting_dam_art[0]['unknown15']['damaged'] = False
curr_waiting_dam_art[0]['moves'] = 3
res_str = f"Damaged artillery repaired in {curr_colony['name']}"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def run_clear_plow_colonies_tiles_routine(sav_editor: SAVEditor):
"""Clear away forest and plow tiles under AI's colonies"""
print()
print("== Clear & plow tiles under AI's colonies ==")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No AI's colonies found!")
return
changes_made = False
for col in colonies_list:
tile_x = col['x, y'][0]
tile_y = col['x, y'][1]
curr_tile = sav_editor['TILE'][tile_y][tile_x]['tile']
curr_tile_split = [s for s in curr_tile]
if curr_tile_split[1] == '1':
curr_tile_split[1] = '0'
sav_editor['TILE'][tile_y][tile_x]['tile'] = ''.join(curr_tile_split)
res_str = f"Forest cleared at '{col['name']}' (tile {(tile_x, tile_y)})"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
changes_made = True
if sav_editor['MASK'][tile_y][tile_x]['plowed'] == '0':
sav_editor['MASK'][tile_y][tile_x]['plowed'] = '1'
res_str = f"Land plowed at '{col['name']}' (tile {(tile_x, tile_y)})"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
changes_made = True
if not changes_made:
print("All colonies' tiles are already plowed")
def run_adjust_expeditionary_force(sav_editor: SAVEditor):
"""Adjust expeditionary force size: disband it or increase"""
# Maximum number of units of one type: regulars, cavalry, artillery or man-o-wars
exp_force_threshold = 300
print()
print("== Adjust Royal Expeditionary Force size ==")
print("Reinforce, nerf or disband it")
field_name = 'REF_squad_counts'
try:
squad_counts = tuple(settings['editor'][field_name])
if len(squad_counts) < 4:
raise
except:
squad_counts = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({squad_counts})")
while True:
print()
print("Current Royal Expeditionary Force size:")
print(f"* {sav_editor['HEAD']['expeditionary_force'][EF_UNIT_FIELDS_NAMES[0]]} regulars")
print(f"* {sav_editor['HEAD']['expeditionary_force'][EF_UNIT_FIELDS_NAMES[1]]} cavalry")
print(f"* {sav_editor['HEAD']['expeditionary_force'][EF_UNIT_FIELDS_NAMES[2]]} artillery")
print(f"* {sav_editor['HEAD']['expeditionary_force'][EF_UNIT_FIELDS_NAMES[3]]} Man-O-Wars")
print(f"Each unit count is capped by {exp_force_threshold}")
squads_count = get_input(f"Enter number of squads ({squad_counts[0]} regs + {squad_counts[1]} cav + {squad_counts[2]} art + {squad_counts[3]} m-o-w) you want to add (or subtract if < 0) to REF or 0 to disband REF or press ENTER to quit: ", res_type=int, error_str="Wrong squads number:", check_fun=lambda x: -1000 <= x <= 1000)
if squads_count is None:
break
if squads_count == 0:
# Disband EF forever
for ufname in EF_UNIT_FIELDS_NAMES:
sav_editor['HEAD']['expeditionary_force'][ufname] = 0
# Set royal_money to -Inf to prevent increasing of EF
for k in range(4):
sav_editor['NATION'][k]['royal_money'] = -2147483648
res_str = f"Royal Expeditionary Force DISBANDED forever"
else:
new_unit_counts = []
for ufname, sqc in zip(EF_UNIT_FIELDS_NAMES, squad_counts):
new_expf_unit_count = sav_editor['HEAD']['expeditionary_force'][ufname] + squads_count * sqc
new_expf_unit_count = 0 if new_expf_unit_count < 0 else exp_force_threshold if new_expf_unit_count > exp_force_threshold else new_expf_unit_count
sav_editor['HEAD']['expeditionary_force'][ufname] = new_expf_unit_count
new_unit_counts.append(new_expf_unit_count)
# Reset royal_money to allow auto increasing of EF
for k in range(4):
sav_editor['NATION'][k]['royal_money'] = 0
res_str = f"Royal Expeditionary Force size set to: {new_unit_counts[0]} regs, {new_unit_counts[1]} cav, {new_unit_counts[2]} art, {new_unit_counts[3]} m-o-w"
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def get_workers_count_caps():
field_name = 'workers_count_caps'
try:
workers_count_caps = tuple(settings['editor'][field_name])
except:
workers_count_caps = DEFAULT_SETTINGS['editor'][field_name]
print(f"WARNING: wrong '{field_name}' value! Setting it to default ({workers_count_caps})")
return workers_count_caps
def get_specialists_ready_to_switch(col, buildings_profs, workers_count_caps):
"""Get list of people ready to be sent to manufacture"""
col_pop = col['population']
ready_to_switch = []
for build_prof in buildings_profs:
curr_building_level = len(col['buildings'][build_prof['field_name']].split('1')) - 1
if curr_building_level == 0:
continue
occ_profs_count = 0
curr_ready_to_switch = []
for pop_k in range(col_pop):
if col['profession'][pop_k] != build_prof['prof']:
continue
if col['occupation'][pop_k] == build_prof['occ']:
occ_profs_count += 1
else:
curr_ready_to_switch.append(pop_k)
if occ_profs_count >= 3 and occ_profs_count < workers_count_caps[curr_building_level - 1] and len(curr_ready_to_switch) > 0:
for rts_id in curr_ready_to_switch:
ready_to_switch.append((rts_id, build_prof['occ'], occ_profs_count, workers_count_caps[curr_building_level - 1]))
return ready_to_switch
def run_add_more_workers(sav_editor: SAVEditor):
"""Add workers to industries above limit of 3"""
buildings_profs = [{"name": "Carpenters shop", "field_name": "carpenters_shop", "occ": sav_editor.metadata["occupation_type"]["carpenter"], "prof": sav_editor.metadata["profession_type"]["master carpenter"]},
{"name": "Blacksmiths house", "field_name": "blacksmiths_house", "occ": sav_editor.metadata["occupation_type"]["blacksmith"], "prof": sav_editor.metadata["profession_type"]["master blacksmith"]},
{"name": "Armory", "field_name": "armory", "occ": sav_editor.metadata["occupation_type"]["gunsmith"], "prof": sav_editor.metadata["profession_type"]["master gunsmith"]},
{"name": "Town Hall", "field_name": "town_hall", "occ": sav_editor.metadata["occupation_type"]["statesman"], "prof": sav_editor.metadata["profession_type"]["elder statesman"]},
{"name": "Weavers house", "field_name": "weavers_house", "occ": sav_editor.metadata["occupation_type"]["weaver"], "prof": sav_editor.metadata["profession_type"]["master weaver"]},
{"name": "Tobacconists house", "field_name": "tobacconists_house", "occ": sav_editor.metadata["occupation_type"]["tobacconist"], "prof": sav_editor.metadata["profession_type"]["master tobacconist"]},
{"name": "Rum distillers house", "field_name": "rum_distillers_house", "occ": sav_editor.metadata["occupation_type"]["distiller"], "prof": sav_editor.metadata["profession_type"]["master distiller"]},
{"name": "Fur traders house", "field_name": "fur_traders_house", "occ": sav_editor.metadata["occupation_type"]["fur trader"], "prof": sav_editor.metadata["profession_type"]["master fur trader"]},
{"name": "Church", "field_name": "church", "occ": sav_editor.metadata["occupation_type"]["preacher"], "prof": sav_editor.metadata["profession_type"]["firebrand preacher"]}]
workers_count_caps = get_workers_count_caps()
print()
print('== Add workers to manufactures ==')
print(f"Add workers to manufactures above builtin limit of 3. You can only add corresponding specialists to buildings where 3 or more specialists already work.")
print("The worker you want to send to a manufacture must already work somewhere inside the colony.")
print(f"Max workers number: {workers_count_caps[0]} for level 1 buildings, {workers_count_caps[1]} for level 2 buildings, {workers_count_caps[2]} for level 3 buildings.")
print("Example 1: you CAN send a master gunsmith (who works as carpenter for now) to the Arsenal with 3 or more master gunsmiths already there.")
print("Example 2: you CANNOT send a 4-th carpenter to the Lumber mill if there are no master carpenters in the colony (other than already working at Lumber mill).")
print("Example 3: you CANNOT send a 4-th master blacksmith to the Blacksmiths shop if one (or more) of the workers there is not master blacksmith.")
player_nation = sav_editor.get_player_nation()
colonies_list = []
for colony in sav_editor['COLONY']:
if player_nation is not None and FIELD_VALUES['nation_type_inv'][colony['nation_id']] not in player_nation:
continue
colonies_list.append(colony)
if len(colonies_list) == 0:
print("No player's colonies found!")
return
while True:
print()
print("Colonies list:")
for i, col in enumerate(colonies_list, start=1):
ready_to_switch = get_specialists_ready_to_switch(col, buildings_profs, workers_count_caps)
res_str = ""
if len(ready_to_switch) == 0:
res_str = "-"
else:
for rts in ready_to_switch:
if len(res_str) > 0:
res_str += ", "
res_str += sav_editor.metadata["occupation_type_inv"][rts[1]].lower() + f" (now {sav_editor.metadata['occupation_type_inv'][col['occupation'][rts[0]]].lower()})"
res_str += " ready to work in speciality"
print(f"{i:2}. {col['name']}: " + res_str)
col_idx = get_input("Enter colony index or press ENTER to quit: ", res_type=int, error_str="Wrong colony index:", check_fun=lambda x: 1 <= x <= len(colonies_list))
if col_idx is None:
break
curr_colony = colonies_list[col_idx - 1]
ready_to_switch = get_specialists_ready_to_switch(curr_colony, buildings_profs, workers_count_caps)
curr_ready_to_switch = None
if len(ready_to_switch) == 0:
print(f"No free specialists in {curr_colony['name']}")
continue
elif len(ready_to_switch) == 1:
curr_ready_to_switch = ready_to_switch[0]
else:
print(f"Specialists in {curr_colony['name']} ready to work in their specialities:")
for i, rts in enumerate(ready_to_switch, start=1):
print(f"{i:2}. {sav_editor.metadata['occupation_type_inv'][rts[1]]} (now {sav_editor.metadata['occupation_type_inv'][curr_colony['occupation'][rts[0]]].lower()})")
spec_idx = get_input("Enter specialist index or press ENTER to quit: ", res_type=int, error_str="Wrong specialist index:", check_fun=lambda x: 1 <= x <= len(ready_to_switch))
if spec_idx is None:
continue
curr_ready_to_switch = ready_to_switch[spec_idx - 1]
# Switching!
curr_colony['occupation'][curr_ready_to_switch[0]] = curr_ready_to_switch[1]
# removing him from the tile he worked on (if any)
tiles_caps = ['tile_N', 'tile_E', 'tile_S', 'tile_W', 'tile_NW', 'tile_NE', 'tile_SE', 'tile_SW']
for tile in tiles_caps:
if curr_colony['tiles'][tile] == curr_ready_to_switch[0]:
curr_colony['tiles'][tile] = -1
break
res_str = f"{curr_colony['name']}: {curr_ready_to_switch[2] + 1}-th {sav_editor.metadata['occupation_type_inv'][curr_ready_to_switch[1]].lower()} set to work in his speciality"
if curr_ready_to_switch[2] + 1 >= curr_ready_to_switch[3]:
res_str += ". NO MORE ALLOWED."
sav_editor.unsaved_changes.append(res_str)
print(res_str)
def edit_sav_file(in_sav_filename: str, sav_structure: dict):
"""Full SAV editing process"""
sav_editor = SAVEditor(in_sav_filename, sav_structure)
if not sav_editor.is_initialized:
print(f"SAV file '{os.path.split(sav_editor.filename())[1]}' loading ERROR!")
return
routines = [(run_reload_routine, "Reload SAV file"),
(run_save_routine, "Save SAV file"),
(run_show_changes_routine, "See pending changes"),
(run_plant_forest_routine, "Plant forest"),
(run_remove_stokade_routine, "Remove fortification"),
(run_upgrade_warehouse_level_routine, "Upgrade warehouse level"),
(run_clear_plow_colonies_tiles_routine, "Clear off forest and plow land under all AI's colonies"),
(run_assimilate_converts_routine, "Assimilate Indian converts"),
(run_arm_equip_converts_routine, "Arm/equip Indian converts"),
(run_repair_damaged_artillery_routine, "Repair damaged artillery"),
(run_adjust_expeditionary_force, "Adjust Expeditionary Force size"),
(run_add_more_workers, "Add workers to manufactures")]
while True:
print()
print(f"== {sav_editor.filename()}: {sav_editor.caption_data['country_name']}, {sav_editor.caption_data['season'].capitalize()} of {sav_editor.caption_data['year']}, {sav_editor.caption_data['difficulty']} {sav_editor.caption_data['name']}, {sav_editor.caption_data['gold']} gold ==")
print("Actions list:")
for num, rout in enumerate(routines, start=1):
print(f"{num:2}. {rout[1]}")
action_idx = get_input("Enter action index or press ENTER to quit: ", res_type=int, error_str="Wrong action index:", check_fun=lambda x: 1 <= x <= len(routines))
if action_idx is None:
if len(sav_editor.unsaved_changes) > 0:
ans = get_input("There are unsaved changes. Do you want to skip them? [y/n]: ", res_type=str, error_str="Wrong answer:", check_fun=lambda x: x[0].lower() in ['y', 'n'])
if ans is None or ans[0].lower() == 'n':
continue
break