-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathopenttdlab.py
1076 lines (912 loc) · 42.8 KB
/
openttdlab.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
# This file is part of OpenTTDLab.
# Copyright © Patric Stout: initial implementation of OpenTTD savegame parsing and converting to link graph
# Copyright © Michal Charemza: additions and changes to run OpenTTD to generate savegames, and to process parsed savegames further
# OpenTTDLab is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
# OpenTTDLab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTDLab. If not, see <http://www.gnu.org/licenses/>.
import contextlib
import enum
import hashlib
import itertools
import io
import json
import lzma
import os
import os.path
import platform
import re
import shutil
import stat
import struct
import subprocess
import socket
import sys
import tarfile
import tempfile
import textwrap
import uuid
import zipfile
import zlib
from collections import defaultdict, deque
from datetime import date, timedelta
from functools import partial
from multiprocessing import Pool
from pathlib import Path
from urllib.parse import urlparse
from rich.progress import MofNCompleteColumn, BarColumn, SpinnerColumn, TextColumn, Progress
import httpx
import yaml
from dill import dumps, loads
from platformdirs import user_cache_dir
# On release this is replaced by the release's corresponding git tag
__version__ = '0.0.0.dev0'
CONTENT_TYPE_BASE_GRAPHICS = 1
CONTENT_TYPE_NEWGRF = 2
CONTENT_TYPE_AI = 3
CONTENT_TYPE_AI_LIBRARY = 4
CONTENT_TYPE_SCENARIO = 5
CONTENT_TYPE_HEIGHTMAP = 6
CONTENT_TYPE_BASE_SOUNDS = 7
CONTENT_TYPE_BASE_MUSIC = 8
CONTENT_TYPE_GAME = 9
CONTENT_TYPE_GAME_LIBRARY = 10
CONTENT_TYPES = (
(CONTENT_TYPE_BASE_GRAPHICS, 'base-graphics', ('baseset',)),
(CONTENT_TYPE_NEWGRF, 'newgrf', ('newgrf',)),
(CONTENT_TYPE_AI, 'ai', ('ai',)),
(CONTENT_TYPE_AI_LIBRARY, 'ai-library', ('ai', 'library')),
(CONTENT_TYPE_SCENARIO, 'scenario', ('scenario')),
(CONTENT_TYPE_HEIGHTMAP, 'heightmap', ('scenario', 'heightmap')),
(CONTENT_TYPE_BASE_SOUNDS, 'base-sounds', ('baseset',)),
(CONTENT_TYPE_BASE_MUSIC, 'base-music', ('baseset',)),
(CONTENT_TYPE_GAME, 'game-script', ('game',)),
(CONTENT_TYPE_GAME_LIBRARY, 'game-script-library', ('game', 'library')),
)
LICENSES_THAT_ALLOW_EXACT_VERSION_DOWNLOAD = {
'GPL v2',
'GPL v3',
'LGPL v2.1',
'CC-0 v1.0',
'CC-BY v3.0',
'CC-BY-SA v3.0',
'CC-BY-NC-SA v3.0',
'CC-BY-NC-ND v3.0',
}
def run_experiments(
experiments=(),
ai_libraries=(),
final_screenshot_directory=None,
max_workers=None,
openttd_version=None,
opengfx_version=None,
openttd_cdn_url='https://cdn.openttd.org/',
result_processor=lambda x: (x,),
get_http_client=lambda: httpx.Client(transport=httpx.HTTPTransport(retries=3)),
get_cache_dir=lambda: user_cache_dir(appname='OpenTTDLab', version=__version__, ensure_exists=True),
):
def get(client, url):
response = client.get(url)
response.raise_for_status()
return response.content
def get_yaml(client, url):
return yaml.safe_load(get(client, url))
def stream_to_file_if_necessary(client, source_url, target_location):
file_exists = os.path.exists(target_location)
if os.path.exists(target_location):
return
with client.stream("GET", source_url) as r:
r.raise_for_status()
with open(target_location, 'wb') as f:
for chunk in r.iter_bytes():
f.write(chunk)
def find_details(manifest, filename):
files_by_id = {
file['id']: file
for file in manifest['files']
}
try:
return files_by_id[filename]
except KeyError:
raise Exception("Unable to fine platform-specific file", filename)
def check_sha_256(location, expected_sha_256):
sha256 = hashlib.sha256()
with open(location, 'rb') as f:
for chunk in iter(lambda: f.read(65536), b''):
sha256.update(chunk)
digest = sha256.hexdigest()
if digest != expected_sha_256:
raise Exception(f"SHA256 of {location} does not match its published value")
def extract_7z(archive_location, output_dir):
subprocess.check_output(('7z', 'x', '-y', f'-o{output_dir}', f'{archive_location}'))
def extract_tar_xz(archive_location, output_dir):
with tarfile.open(archive_location, 'r:xz') as f_tar:
for name in f_tar.getnames():
if '..' in name or name.strip().startswith('/'):
raise Exception('Unsafe', archive_location)
f_tar.extractall(output_dir)
def extract_zip(archive_location, output_dir):
with zipfile.ZipFile(archive_location, 'r') as f_zip:
for name in f_zip.namelist():
if '..' in name or name.strip().startswith('/'):
raise Exception('Unsafe', archive_location)
f_zip.extractall(output_dir)
content_types_by_str = {
type_str: (type_id, path)
for (type_id, type_str, path) in CONTENT_TYPES
}
with get_http_client() as client:
# Choose platform-specific details
extractors = {
'dmg': extract_7z,
'tar.xz': extract_tar_xz,
'zip': extract_zip,
}
system_machine_to_release_params = {
('Darwin', 'arm64'): ('macos', 'universal', 'dmg', '{binary_dir}/openttd-{version}-macos-universal/OpenTTD.app/Contents/MacOS/openttd'),
('Darwin', 'x86_64'): ('macos', 'universal', 'dmg', '{binary_dir}/openttd-{version}-macos-universal/OpenTTD.app/Contents/MacOS/openttd'),
('Linux', 'x86_64'): ('linux-generic', 'amd64', 'tar.xz', '{binary_dir}/openttd-{version}-linux-generic-amd64/openttd'),
('Windows', 'AMD64'): ('windows', 'win64', 'zip', '{binary_dir}/openttd-{version}-windows-win64/openttd.exe'),
}
uname = platform.uname()
try:
operating_system, architecture, openttd_extension, openttd_binary_template = system_machine_to_release_params[(uname.system, uname.machine)]
except KeyError:
raise Exception("Unable to map platform to OpenTTD release", uname.system, uname.machine)
# Find version and coresponding manifest
if openttd_version is None:
openttd_version = str(get_yaml(client, openttd_cdn_url + 'openttd-releases/latest.yaml')['latest'][0]['version'])
if opengfx_version is None:
opengfx_version = str(get_yaml(client, openttd_cdn_url + 'opengfx-releases/latest.yaml')['latest'][0]['version'])
is_nightly = re.match(r'\d{8}-', openttd_version)
major_version = \
None if is_nightly else \
int(openttd_version.split('.')[0])
openttd_path = \
'openttd-nightlies/' + openttd_version[:4] + '/' + openttd_version + '/' if is_nightly else \
'openttd-releases/' + openttd_version + '/'
opengfx_path = \
'opengfx-nightlies/' + opengfx_version + '/' if re.match(r'\d{8}-', opengfx_version) else \
'opengfx-releases/' + opengfx_version + '/'
openttd_manifest = get_yaml(client, openttd_cdn_url + openttd_path + 'manifest.yaml')
opengfx_manifest = get_yaml(client, openttd_cdn_url + opengfx_path + 'manifest.yaml')
# From version we are either 'unsupported', 'autosave', or 'console-script' data extraction mode
data_extraction_mode = \
'console-script' if is_nightly and openttd_version.split('-')[0] >= '20240602' else \
'autosave' if is_nightly and openttd_version.split('-')[0] <= '20230323' else \
'console-script' if major_version >= 15 else \
'autosave' if 12 <= major_version < 14 else \
'unsupported'
if data_extraction_mode == 'unsupported':
raise Exception(f'OpenTTD version {openttd_version} is not supported')
# Find file details in manifest
openttd_filename = f"{openttd_manifest['base']}{operating_system}-{architecture}.{openttd_extension}"
opengfx_filename = f"{opengfx_manifest['base']}all.zip"
openttd_file_details = find_details(openttd_manifest, openttd_filename)
opengfx_file_details = find_details(opengfx_manifest, opengfx_filename)
# Download archives if necessary
cache_dir = get_cache_dir()
openttd_archive_location = os.path.join(cache_dir, openttd_filename)
opengfx_archive_location = os.path.join(cache_dir, opengfx_filename)
stream_to_file_if_necessary(client, openttd_cdn_url + openttd_path + openttd_filename, openttd_archive_location)
stream_to_file_if_necessary(client, openttd_cdn_url + opengfx_path + opengfx_filename, opengfx_archive_location)
check_sha_256(openttd_archive_location, openttd_file_details['sha256sum'])
check_sha_256(opengfx_archive_location, opengfx_file_details['sha256sum'])
# Check if we can use xvfb_run to avoid windows popping up when taking a screenshot
xvfb_run_available = subprocess.call("type xvfb-run", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0
def run_done(progress, task, _):
progress.update(task, advance=1)
progress.refresh()
run_id = str(uuid.uuid4())
experiments_list = list(experiments)
with tempfile.TemporaryDirectory(prefix=f'OpenTTDLab-{run_id}-') as run_dir:
# Extract the binaries into the run dir
openttd_binary_dir = os.path.join(run_dir, f'{openttd_filename}')
opengfx_binary_dir = os.path.join(run_dir, f'{opengfx_filename}')
Path(openttd_binary_dir).mkdir(parents=True, exist_ok=True)
Path(opengfx_binary_dir).mkdir(parents=True, exist_ok=True)
extractors[openttd_extension](openttd_archive_location, openttd_binary_dir)
extractors['zip'](opengfx_archive_location, opengfx_binary_dir)
# Construct the location of the binaries
openttd_binary = os.path.join(openttd_binary_dir, openttd_binary_template.format_map({
'binary_dir': openttd_binary_dir,
'version': openttd_version,
}))
opengfx_binary = os.path.join(opengfx_binary_dir, f'opengfx-{opengfx_version}.tar')
# Ensure the OpenTTD binary is executable
os.chmod(openttd_binary, os.stat(openttd_binary).st_mode | stat.S_IEXEC)
# Make sure to only make fetch remote AIs at most once for each, even if referenced
# in multiple experiments
ai_copy_functions = {
ai_name: ai_copy
for experiment in experiments_list
for ai_name, ai_params, ai_copy in experiment.get('ais', [])
}
ai_and_library_filenames = [
ai_copy
for ai_copy in ai_copy_functions.values()
] + [
ai_library_copy
for _, ai_library_copy in ai_libraries
]
def copy_ai_or_library_to_run_dir():
for copy_func in ai_and_library_filenames:
with copy_func(get_http_client=lambda: contextlib.nullcontext(client), get_cache_dir=lambda: cache_dir) as filenames_and_data:
for content_id, filename, license, md5sum, get_data in filenames_and_data:
path = content_types_by_str[content_id.split('/')[0]][1]
with \
get_data() as data, \
open(os.path.join(run_dir, filename), 'wb') as f:
for chunk in data:
f.write(chunk)
yield path, filename
ai_and_library_filenames = tuple(copy_ai_or_library_to_run_dir())
max_workers = \
max_workers if max_workers is not None else \
(os.cpu_count() or 1)
with \
Progress(
SpinnerColumn(finished_text='[green]✔'),
TextColumn("[progress.description]{task.description}"),
BarColumn(),
MofNCompleteColumn(),
) as progress:
pool = Pool(processes=max_workers)
try:
task = progress.add_task("Running experiments...", total=len(experiments_list))
async_results = [
pool.apply_async(
_run_experiment,
args=(
opengfx_binary, openttd_binary, final_screenshot_directory,
openttd_version, opengfx_version, dumps(result_processor),
run_dir, i, dumps(experiment), ai_and_library_filenames,
xvfb_run_available, data_extraction_mode,
),
callback=partial(run_done, progress, task),
)
for i, experiment in enumerate(experiments_list)
]
return [
savegame_row
for savegame_rows_async_result in async_results
for savegame_row in loads(savegame_rows_async_result.get())
]
finally:
# Not calling these explicitly can result in code coverage not measuring
# subprocesses. Even using Pool as a context manager doesn't call these
pool.close()
pool.join()
def _run_experiment(
opengfx_binary, openttd_binary, final_screenshot_directory,
openttd_version, opengfx_version, result_processor,
run_dir, i, experiment, ai_and_library_filenames,
xvfb_run_available, data_extraction_mode,
):
result_processor = loads(result_processor)
experiment = loads(experiment)
def get_savegame_row(openttd_version, opengfx_version, experiment, filename, output):
with open(filename, 'rb') as f:
game = parse_savegame(iter(lambda: f.read(65536), b''))
# Python (and indeed, the gregorian calendar) doesn't have a year zero,
# and according to the OpenTTD source, year 1 was a leap year
days_since_year_zero = game['chunks']['DATE']['records']['0']['date']
days_since_year_one = days_since_year_zero - 366
return result_processor({
'openttd_version': openttd_version,
'opengfx_version': opengfx_version,
'savegame_version': game['savegame_version'],
'experiment': experiment,
'date': date(1, 1 , 1) + timedelta(days_since_year_one),
'error': 'The script died unexpectedly' in output,
'output': output,
'chunks': {
tag: chunk['records'] for tag, chunk in game['chunks'].items()
},
})
experiment_dir = os.path.join(run_dir, str(i))
experiment_baseset_dir = os.path.join(experiment_dir, 'baseset')
Path(experiment_baseset_dir).mkdir(parents=True)
experiment_ai_dir = os.path.join(experiment_dir, 'ai')
Path(experiment_ai_dir).mkdir(parents=True)
experiment_ai_library_dir = os.path.join(experiment_dir, 'ai/library')
Path(experiment_ai_library_dir).mkdir(parents=True)
experiment_script_dir = os.path.join(experiment_dir, 'scripts')
Path(experiment_script_dir).mkdir(parents=True)
openttd_config = experiment.get('openttd_config', '')
days = experiment['days']
seed = experiment['seed']
# Populate run directory
shutil.copy(opengfx_binary, experiment_baseset_dir)
for path, ai_or_library_filename in ai_and_library_filenames:
shutil.copy(
os.path.join(run_dir, ai_or_library_filename),
os.path.join(experiment_dir, *path, ai_or_library_filename),
)
config_file = os.path.join(experiment_dir, 'openttdlab.cfg')
with open(os.path.join(experiment_script_dir, 'game_start.scr'), 'w') as f:
f.write(''.join(
f'start_ai {ai_name}' + (' ' + ','.join(f'{key}={value}' for key, value in ai_params) if ai_params else '') + '\n'
for ai_name, ai_params, _ in experiment.get('ais', [])
))
with open(config_file, 'w') as f:
f.write(textwrap.dedent(openttd_config) + textwrap.dedent('''
[gui]
threaded_saves = false
''') + (textwrap.dedent('''
autosave = monthly
keep_all_autosave = true
''') if data_extraction_mode == 'autosave' else textwrap.dedent('''
autosave = off
'''))
)
if data_extraction_mode == 'console-script':
months = days // 28
with open(os.path.join(experiment_script_dir, 'game_start.scr'), 'a') as f:
f.write(f'schedule on-next-calendar-month {0:09}.scr\n')
f.write(f'save 0')
for month in range(0, months):
with open(os.path.join(experiment_dir, f'{month:09}.scr'), 'w') as f:
f.write(f'save {month:09}\n')
if month < months - 1:
f.write(f'schedule on-next-calendar-month {month+1:09}.scr\n')
# Run the experiment
ticks_per_day = 74
ticks = str(ticks_per_day * days)
output = subprocess.check_output(
(openttd_binary,) + (
'-g', # Start game immediately
'-G', str(seed), # Seed for random number generator
'-snull', # No sound
'-mnull', # No music
'-vnull:ticks=' + ticks, # No video, with fixed number of "ticks" and then exit
'-c', config_file, # Config file
),
cwd=experiment_dir, # OpenTTD looks in the current working directory for files
stderr=subprocess.STDOUT,
text=True,
)
save_dir = \
os.path.join(experiment_dir, 'save', 'autosave') if data_extraction_mode == 'autosave' else \
os.path.join(experiment_dir, 'save')
save_filenames = sorted(list(
direntry.name
for direntry in os.scandir(save_dir)
if direntry.is_file()
))
if final_screenshot_directory is not None:
with open(os.path.join(experiment_script_dir, 'game_start.scr'), 'w') as f:
f.write('screenshot giant\n')
f.write('quit\n')
subprocess.check_output(
(('xvfb-run', '-a',) if xvfb_run_available else ()) + (openttd_binary,) + (
'-g', os.path.join(save_dir, save_filenames[-1]),
'-G', str(seed), # Seed for random number generator
'-snull', # No sound
'-mnull', # No music
'-c', config_file, # Config file
),
cwd=experiment_dir, # OpenTTD looks in the current working directory for files
)
screenshot_file = os.listdir(os.path.join(experiment_dir, 'screenshot'))[0]
shutil.copyfile(
os.path.join(experiment_dir, 'screenshot', screenshot_file),
os.path.join(final_screenshot_directory, str(seed) + '.png'),
)
return dumps([
result_row
for filename in save_filenames
for result_row in get_savegame_row(openttd_version, opengfx_version, experiment, os.path.join(save_dir, filename), output)
])
@contextlib.contextmanager
def _file_contents(filename):
with open(filename, 'rb') as f:
yield iter(lambda: f.read(65536), b'')
def _gz_decompress(compressed_chunks):
dec = zlib.decompressobj(32 + zlib.MAX_WBITS)
for compressed_chunk in compressed_chunks:
chunk = dec.decompress(compressed_chunk)
if chunk:
yield chunk
chunk = dec.flush()
if chunk:
yield chunk
def local_file(file_path, ai_name, ai_params=()):
@contextlib.contextmanager
def _copy(get_http_client, get_cache_dir):
yield (
('ai/', ai_name + '.tar', None, None, lambda: _file_contents(file_path)),
)
return ai_name, ai_params, _copy
def local_folder(folder_path, ai_name, ai_params=()):
@contextlib.contextmanager
def _copy(get_http_client, get_cache_dir):
# Manual cleanup of temporary file for Windows. See https://stackoverflow.com/q/23212435/1319998
# Maybe would be better to not have a temporary file at all, and stream-construct the tar file?
file = None
try:
with tempfile.NamedTemporaryFile(delete=False) as file:
with tarfile.open(file.name, 'w') as tar:
# Arcname adds the folder to a folder in the root of the tar. Because of how
# OpenTTD uses tars, it must, in order to find all the files in all the tars,
# each must have a unique folder name. Because we can only have a single AI
# of each name anyway, the name of the AI is suitable
tar.add(folder_path, arcname=ai_name)
yield (
('ai/', ai_name + '.tar', None, None, lambda: _file_contents(file.name)),
)
finally:
if file is not None:
try:
os.unlink(file.name)
except FileNotFoundError:
pass
return ai_name, ai_params, _copy
def remote_file(url, ai_name, ai_params=()):
@contextlib.contextmanager
def _gz_download(get_http_client, url):
with \
get_http_client() as client, \
client.stream("GET", url, follow_redirects=True) as r:
r.raise_for_status()
yield _gz_decompress(r.iter_bytes())
@contextlib.contextmanager
def _download(get_http_client, get_cache_dir):
yield (
('ai/', ai_name + '.tar', None, None, lambda: _gz_download(get_http_client, url)),
)
return ai_name, ai_params, _download
@contextlib.contextmanager
def download_from_bananas(
content_id,
md5=None,
get_http_client=lambda: httpx.Client(transport=httpx.HTTPTransport(retries=3)),
get_cache_dir=lambda: user_cache_dir(appname='OpenTTDLab', version=__version__, ensure_exists=True),
):
@contextlib.contextmanager
def tcp_connection(address):
def recv_iter(length):
while length:
chunk = s.recv(length)
if not chunk:
raise Exception("Connection ended")
length -= len(chunk)
yield chunk
def recv_bytes(length):
return b''.join(recv_iter(length))
def send_bytes(bytes_to_send):
s.sendall(bytes_to_send)
with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
try:
s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
s.settimeout(10.0)
s.connect(address)
yield recv_bytes, send_bytes
finally:
try:
s.shutdown(socket.SHUT_RDWR)
except OSError:
pass
def get_tcp_content_ids(recv_bytes, send_bytes, bananas_type_id, unique_id, md5sum=None):
def reader(b):
i = 0
def read_num(num):
nonlocal i
i += num
return b[i-num:i]
def _next_null():
j = i
while b[j] != 0:
j += 1
return j
def read_until_null():
nonlocal i
start = i
end = _next_null()
i = end + 1
return b[start:end]
return read_num, read_until_null
# Convert unique ID to content ID from the Bananas TCP server, and get its expected filesize
PACKET_CONTENT_CLIENT_INFO_EXTID = 2
PACKET_CONTENT_CLIENT_INFO_EXTID_MD5 = 3
request_type = \
PACKET_CONTENT_CLIENT_INFO_EXTID if md5sum is None else\
PACKET_CONTENT_CLIENT_INFO_EXTID_MD5
packet_body = \
struct.pack("<B", request_type) + \
struct.pack("<B", 1) + \
struct.pack("<B", bananas_type_id) + \
struct.pack("4s", bytes.fromhex(unique_id)) + \
(struct.pack("16s", bytes.fromhex(md5sum)) if md5sum is not None else b'')
send_bytes(struct.pack("<H", len(packet_body) + 2) + packet_body)
PACKET_CONTENT_SERVER_INFO = 4
packet_size = struct.unpack("<H", recv_bytes(2))[0]
if packet_size < 12:
raise Exception('Response is too small')
packet_read_num, packet_read_until_null = reader(recv_bytes(packet_size - 2))
tcp_packet_type = struct.unpack("<B", packet_read_num(1))[0]
tcp_content_type = struct.unpack("<B", packet_read_num(1))[0]
tcp_content_id = struct.unpack("<I", packet_read_num(4))[0]
tcp_file_size = struct.unpack("<I", packet_read_num(4))[0]
tcp_name = packet_read_until_null()
tcp_version = packet_read_until_null()
tcp_url = packet_read_until_null()
tcp_description = packet_read_until_null()
tcp_unique_id = packet_read_num(4)
tcp_md5sum = packet_read_num(16)
tcp_num_dependencies = packet_read_num(1)[0]
tcp_dependency_content_ids = tuple(
struct.unpack("<I", packet_read_num(4))[0]
for _ in range(0, tcp_num_dependencies)
)
return tcp_content_id, tcp_dependency_content_ids
@contextlib.contextmanager
def url_contents_while_writing(url, write_filename, expected_size):
# Fetches from url while to write_filename. Although it actually writes to a temporary
# file first to make sure that the write_filename only ever has the full file, or no file
nonlocal total_iterated
total_bytes = 0
temp_filename = write_filename + '_temp_' + str(uuid.uuid4())[:8]
if os.path.isfile(write_filename):
with open(write_filename, 'rb') as f:
yield iter(lambda: f.read(65536), b'')
return
try:
with open(temp_filename, 'wb') as f:
with client.stream("GET", url) as response:
response.raise_for_status()
if response.headers['content-length'] != expected_size:
raise Exception('Mismatched filesize')
def counted():
nonlocal total_bytes
for chunk in response.iter_bytes():
yield chunk
total_bytes += len(chunk)
def while_writing():
for chunk in _gz_decompress(counted()):
yield chunk
f.write(chunk)
yield while_writing()
if total_bytes == int(expected_size):
os.rename(temp_filename, write_filename)
total_iterated += 1
finally:
try:
os.unlink(temp_filename)
except FileNotFoundError:
pass
content_types_by_id = {
type_id: (type_str, path)
for (type_id, type_str, path) in CONTENT_TYPES
}
content_types_by_str = {
type_str: (type_id, path)
for (type_id, type_str, path) in CONTENT_TYPES
}
with get_http_client() as client:
bananas_type_str, unique_id = content_id.split('/')
bananas_type_id = content_types_by_str[bananas_type_str][0]
# Confirm via HTTPs that this name/unique ID pair exists
api_resp = client.get(f'https://bananas-api.openttd.org/package/{bananas_type_str}/{unique_id}')
api_resp.raise_for_status()
api_dict = api_resp.json()
api_dict_latest_version = max(api_dict['versions'], key=lambda version: version['version'].split('.'))
# Check if we already have this version cached, and all its dependencies
content_cache_dir = os.path.join(get_cache_dir(), 'bananas')
Path(content_cache_dir).mkdir(parents=True, exist_ok=True)
filename = f'{unique_id}-{api_dict["name"]}-{api_dict_latest_version["version"]}.tar'
cached_file = os.path.join(content_cache_dir, filename)
cached_dependency_file = cached_file + '_dependencies'
if os.path.exists(cached_file) and os.path.exists(cached_dependency_file):
with open(cached_dependency_file, 'r', encoding='utf-8') as f:
contents = f.read()
dependency_filenames = [
line.split(',')
for line in contents.splitlines()
] if contents else []
yield [
(content_id, filename, license, md5sum, partial(_file_contents, os.path.join(content_cache_dir, filename)))
for content_id, filename, license, md5sum in dependency_filenames
]
return
# Check unique_id is what's expected
if api_dict['unique-id'] != unique_id:
raise Exception("Mismatched name")
# Get TCP content ID of the primary content requested from client code, and the TCP content IDs
# of all its dependencies. We treat them slightly differently below because we get the
# dependencies of the primary content immediately, but will still need make more TCP queries to
# find the dependencies of the dependencies
with tcp_connection(("content.openttd.org", 3978)) as (recv_bytes, send_bytes):
get_tcp_content_ids_from_conn = partial(get_tcp_content_ids, recv_bytes, send_bytes)
primary_tcp_content_id, dependency_tcp_content_ids = get_tcp_content_ids_from_conn(bananas_type_id, unique_id, md5sum=md5)
# Find URLs to download the primary content, and all of its dependencies and transitve
# dependencies. Note that dependencies can be specified by exact version, and to download those
# we need the MD5 sum of the dependency, which we only know by finding the link to it
urls = []
tcp_content_ids = deque()
tcp_content_ids.append((False, primary_tcp_content_id))
for tcp_content_id in dependency_tcp_content_ids:
tcp_content_ids.append((True, tcp_content_id))
while tcp_content_ids:
find_transitive, tcp_content_id = tcp_content_ids.popleft()
response = client.post('https://binaries.openttd.org/bananas', content=str(tcp_content_id).encode() + b'\n')
response.raise_for_status()
binaries_content_id, binaries_content_type, binaries_filesize, binaries_link = response.text.strip().split(',')
binaries_md5sum = urlparse(binaries_link).path.split('/')[3]
binaries_unique_id = urlparse(binaries_link).path.split('/')[2]
binaries_filename = urlparse(binaries_link).path.split('/')[-1][:-3] # Withouth .gz extension
version = binaries_filename.split('-')[2].split('.')[-0] # {unique-iq}-{name}-{version}.{extension}
binaries_content_type_str = content_types_by_id[int(binaries_content_type)][0]
api_resp = client.get(f'https://bananas-api.openttd.org/package/{binaries_content_type_str}/{binaries_unique_id}')
api_resp.raise_for_status()
api_dict = api_resp.json()
license = next((api_version['license'] for api_version in api_dict['versions'] if api_version['version'] == version))
urls.append((binaries_content_id, binaries_content_type, binaries_filesize, binaries_link, binaries_md5sum, binaries_unique_id, binaries_filename, license))
if find_transitive:
_, transitive_tcp_content_ids = get_tcp_content_ids_from_conn(
int(binaries_content_type), binaries_unique_id, md5sum=binaries_md5sum,
)
for transitive_tcp_content_id in transitive_tcp_content_ids:
tcp_content_ids.append((True, transitive_tcp_content_id))
filenames = []
total_iterated = 0
for binaries_content_id, binaries_content_type, binaries_filesize, binaries_link, binaries_md5sum, binaries_unique_id, binaries_filename, license in urls:
public_md5 = binaries_md5sum if license in LICENSES_THAT_ALLOW_EXACT_VERSION_DOWNLOAD else binaries_md5sum[:8]
filenames.append((
content_types_by_id[int(binaries_content_type)][0] + '/' + binaries_unique_id,
binaries_filename,
license,
public_md5,
partial(url_contents_while_writing, binaries_link, os.path.join(content_cache_dir, binaries_filename), binaries_filesize),
))
yield filenames
# Write dependency file (simple text file) only if we have iterated everything
if total_iterated == len(filenames):
with open(cached_dependency_file, 'w', encoding='utf-8') as f:
for content_id, filename, license, md5sum, _ in filenames:
f.write(f'{content_id},{filename},{license},{md5sum}\n')
def bananas_ai(unique_id, ai_name, ai_params=(), md5=None):
return ai_name, ai_params, partial(download_from_bananas, 'ai/' + unique_id, md5=md5)
def bananas_ai_library(unique_id, ai_library_name, md5=None):
return ai_library_name, partial(download_from_bananas, 'ai-library/' + unique_id, md5=md5)
def parse_savegame(chunks, chunk_size=65536):
def get_readers(iterable):
chunk = b''
chunk_offset = 0
offset = 0
it = iter(iterable)
def _num_iter(num):
nonlocal chunk, chunk_offset, offset
while num:
if chunk_offset == len(chunk):
try:
chunk = next(it)
except StopIteration:
raise ValidationException("Unexpected end-of-file.")
chunk_offset = 0
to_yield = min(num, len(chunk) - chunk_offset, chunk_size)
num -= to_yield
chunk_offset += to_yield
offset += to_yield
yield chunk[chunk_offset - to_yield:chunk_offset]
def _read_iter():
try:
yield from _num_iter(float('inf'))
except ValidationException:
pass
def _read(num):
return b''.join(_num_iter(num))
def _offset():
return offset
return _read, _read_iter, _offset
def decompress_zlib(compressed_chunks):
dobj = zlib.decompressobj()
for compressed_chunk in compressed_chunks:
if chunk := dobj.decompress(compressed_chunk, max_length=chunk_size):
yield chunk
while dobj.unconsumed_tail and not dobj.eof and (chunk := dobj.decompress(dobj.unconsumed_tail, max_length=chunk_size)):
yield chunk
def decompress_lzma(compressed_chunks):
dobj = lzma.LZMADecompressor()
for compressed_chunk in compressed_chunks:
if chunk := dobj.decompress(compressed_chunk, max_length=chunk_size):
yield chunk
while not dobj.eof and (chunk := dobj.decompress(b'', max_length=chunk_size)):
yield chunk
def decompress_none(compressed_chunks):
yield from compressed_chunks
decompressors = {
b"OTTN": decompress_none,
b"OTTZ": decompress_zlib,
b"OTTX": decompress_lzma,
# According to https://github.com/OpenTTD/OpenTTD/blob/master/docs/savegame_format.md
# only very old savegames will use OTTD by default. However from testing you _can_
# configure current OpenTTD by specifing savegame_format=lzo in config, but then it seems
# very tricky to decompress this from Python, especially in a streaming way. Maybe one day...
# b"OTTD": lzo2,
}
class FieldType(enum.IntEnum):
END = 0
I8 = 1
U8 = 2
I16 = 3
U16 = 4
I32 = 5
U32 = 6
I64 = 7
U64 = 8
STRINGID = 9
STRING = 10
STRUCT = 11
def _raise(e):
raise e
def gamma(read):
"""
Read OTTD-savegame-style gamma value.
"""
b = uint8(read)
return \
(b & 0x7F) if (b & 0x80) == 0 else \
(b & 0x3F) << 8 | uint8(read) if (b & 0xC0) == 0x80 else \
(b & 0x1F) << 16 | uint16(read) if (b & 0xE0) == 0xC0 else \
(b & 0x0F) << 24 | uint24(read) if (b & 0xF0) == 0xE0 else \
(b & 0x07) << 32 | uint32(read) if (b & 0xF8) == 0xF0 else \
_raise(ValidationException("Invalid gamma encoding."))
def gamma_str(read):
"""
Read OTTD-savegame-style gamma string (SLE_STR).
"""
return read(gamma(read)).decode()
def int8(read):
return struct.unpack(">b", read(1))[0]
def uint8(read):
return struct.unpack(">B", read(1))[0]
def int16(read):
return struct.unpack(">h", read(2))[0]
def uint16(read):
return struct.unpack(">H", read(2))[0]
def uint24(read):
return (uint16(read) << 8) | uint8(read)
def int32(read):
return struct.unpack(">l", read(4))[0]
def uint32(read):
return struct.unpack(">L", read(4))[0]
def int64(read):
return struct.unpack(">q", read(8))[0]
def uint64(read):
return struct.unpack(">Q", read(8))[0]
readers = {
FieldType.I8: int8,
FieldType.U8: uint8,
FieldType.I16: int16,
FieldType.U16: uint16,
FieldType.I32: int32,
FieldType.U32: uint32,
FieldType.I64: int64,
FieldType.U64: uint64,
FieldType.STRINGID: uint16,
FieldType.STRING: gamma_str,
}
def read_table_headers(read):
"""Reads the headers for a chunk."""
def read_fields():
while type := int8(read):
yield (
FieldType(type & 0xf), # Field type
bool(type & 0x10), # Has length
gamma_str(read), # Key
)
def read_substruct(header, parent_key):
for field_type, has_length, sub_key in header:
if field_type == FieldType.STRUCT:
sub_header = list(read_fields())
full_sub_key = f'{parent_key}.{sub_key}'
yield full_sub_key, sub_header
yield from read_substruct(sub_header, full_sub_key)
root_header = list(read_fields())
sub_headers = list(read_substruct(root_header, "root"))
return {
"root": root_header,
**dict(sub_headers),
}
def read_table_record(read, headers):
"""Reads a record for a chunk."""
def read_using_header_key(key):
return {
sub_key: \
read_list_of_fields(field_type, f'{key}.{sub_key}') if has_length and field_type != FieldType.STRING else \
read_field(field_type, f'{key}.{sub_key}')
for field_type, has_length, sub_key in headers[key]
}
def read_list_of_fields(field_type, field_name):
length = gamma(read)
return [
read_field(field_type, field_name)
for _ in range(length)
]
def read_field(field_type, field_name):
return \
read_using_header_key(field_name) if field_type == FieldType.STRUCT else \
readers[field_type](read)
return read_using_header_key("root")
def read_table_records(read, offset, headers, tag, chunk_type):
counter = iter(itertools.count())
while size_plus_one := gamma(read):
start_offset = offset()
index = \
gamma(read) if chunk_type == 4 else \
next(counter)
end_offset = offset()
size = size_plus_one - 1 - (end_offset - start_offset)
if size == 0:
continue
start_offset = offset()
record = read_table_record(read, headers)
end_offset = offset()
# GSDT and AIPL are known chunk with garbage at the end
if tag not in ("GSDT", "AIPL") and size != (end_offset - start_offset):
raise ValidationException(f"Junk at end of chunk {tag}")
read(size - (end_offset - start_offset))
yield str(index), record
def read_chunks(read, offset):
def read_riff_chunk():
size = (m >> 4) << 24 | uint24(read)