forked from libtcod/python-tcod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild_libtcod.py
More file actions
512 lines (424 loc) · 17 KB
/
build_libtcod.py
File metadata and controls
512 lines (424 loc) · 17 KB
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
#!/usr/bin/env python3
import glob
import os
import platform
import re
import shutil
import subprocess
import sys
import zipfile
from typing import Any, Dict, Iterable, Iterator, List, Set, Tuple, Union
try:
from urllib import urlretrieve # type: ignore
except ImportError:
from urllib.request import urlretrieve
from cffi import FFI # type: ignore
sys.path.append(os.path.dirname(__file__))
import parse_sdl2 # noqa: E402
# The SDL2 version to parse and export symbols from.
SDL2_PARSE_VERSION = os.environ.get("SDL_VERSION", "2.0.5")
# The SDL2 version to include in binary distributions.
SDL2_BUNDLE_VERSION = os.environ.get("SDL_VERSION", "2.0.14")
HEADER_PARSE_PATHS = ("tcod/", "libtcod/src/libtcod/")
HEADER_PARSE_EXCLUDES = ("gl2_ext_.h", "renderer_gl_internal.h", "event.h")
BITSIZE, LINKAGE = platform.architecture()
# Regular expressions to parse the headers for cffi.
RE_COMMENT = re.compile(r"\s*/\*.*?\*/|\s*//*?$", re.DOTALL | re.MULTILINE)
RE_CPLUSPLUS = re.compile(r"#ifdef __cplusplus.*?#endif.*?$", re.DOTALL | re.MULTILINE)
RE_PREPROCESSOR = re.compile(r"(?!#define\s+\w+\s+\d+$)#.*?(?<!\\)$", re.DOTALL | re.MULTILINE)
RE_INCLUDE = re.compile(r'#include "([^"]*)"')
RE_TAGS = re.compile(
r"TCODLIB_C?API|TCOD_PUBLIC|TCOD_NODISCARD|TCOD_DEPRECATED_NOMESSAGE"
r"|(TCOD_DEPRECATED|TCODLIB_FORMAT)\([^)]*\)|__restrict"
)
RE_VAFUNC = re.compile(r".*\(.*va_list.*\);")
RE_INLINE = re.compile(r"(^.*?inline.*?\(.*?\))\s*\{.*?\}$", re.DOTALL | re.MULTILINE)
class ParsedHeader:
"""Header manager class for parsing headers.
Holds parsed sources and keeps information needed to resolve header order.
"""
# Class dictionary of all parsed headers.
all_headers = {} # type: Dict[str, "ParsedHeader"]
def __init__(self, path: str) -> None:
self.path = path = os.path.normpath(path)
directory = os.path.dirname(path)
depends = set()
with open(self.path, "r", encoding="utf-8") as f:
header = f.read()
header = RE_COMMENT.sub("", header)
header = RE_CPLUSPLUS.sub("", header)
for dependency in RE_INCLUDE.findall(header):
depends.add(os.path.normpath(os.path.join(directory, dependency)))
header = RE_PREPROCESSOR.sub("", header)
header = RE_TAGS.sub("", header)
header = RE_VAFUNC.sub("", header)
header = RE_INLINE.sub(r"\1;", header)
self.header = header.strip()
self.depends = frozenset(depends)
self.all_headers[self.path] = self
def parsed_depends(self) -> Iterator["ParsedHeader"]:
"""Return dependencies excluding ones that were not loaded."""
for dep in self.depends:
try:
yield self.all_headers[dep]
except KeyError:
pass
def __str__(self) -> str:
return "Parsed harder at '%s'\n Depends on: %s" % (
self.path,
"\n\t".join(self.depends),
)
def __repr__(self) -> str:
return "ParsedHeader(%s)" % (self.path,)
def walk_includes(directory: str) -> Iterator[ParsedHeader]:
"""Parse all the include files in a directory and subdirectories."""
for path, dirs, files in os.walk(directory):
for file in files:
if file in HEADER_PARSE_EXCLUDES:
continue
if file.endswith(".h"):
yield ParsedHeader(os.path.join(path, file))
def resolve_dependencies(
includes: Iterable[ParsedHeader],
) -> List[ParsedHeader]:
"""Sort headers by their correct include order."""
unresolved = set(includes)
resolved = set() # type: Set[ParsedHeader]
result = []
while unresolved:
for item in unresolved:
if frozenset(item.parsed_depends()).issubset(resolved):
resolved.add(item)
result.append(item)
if not unresolved & resolved:
raise RuntimeError(
"Could not resolve header load order.\n"
"Possible cyclic dependency with the unresolved headers:\n%s" % (unresolved,)
)
unresolved -= resolved
return result
def parse_includes() -> List[ParsedHeader]:
"""Collect all parsed header files and return them.
Reads HEADER_PARSE_PATHS and HEADER_PARSE_EXCLUDES."""
includes = [] # type: List[ParsedHeader]
for dirpath in HEADER_PARSE_PATHS:
includes.extend(walk_includes(dirpath))
return resolve_dependencies(includes)
def walk_sources(directory: str) -> Iterator[str]:
for path, dirs, files in os.walk(directory):
for source in files:
if source.endswith(".c"):
yield os.path.join(path, source)
def get_sdl2_file(version: str) -> str:
if sys.platform == "win32":
sdl2_file = "SDL2-devel-%s-VC.zip" % (version,)
else:
assert sys.platform == "darwin"
sdl2_file = "SDL2-%s.dmg" % (version,)
sdl2_local_file = os.path.join("dependencies", sdl2_file)
sdl2_remote_file = "https://www.libsdl.org/release/%s" % sdl2_file
if not os.path.exists(sdl2_local_file):
print("Downloading %s" % sdl2_remote_file)
os.makedirs("dependencies/", exist_ok=True)
urlretrieve(sdl2_remote_file, sdl2_local_file)
return sdl2_local_file
def unpack_sdl2(version: str) -> str:
sdl2_path = "dependencies/SDL2-%s" % (version,)
if sys.platform == "darwin":
sdl2_dir = sdl2_path
sdl2_path += "/SDL2.framework"
if os.path.exists(sdl2_path):
return sdl2_path
sdl2_arc = get_sdl2_file(version)
print("Extracting %s" % sdl2_arc)
if sdl2_arc.endswith(".zip"):
with zipfile.ZipFile(sdl2_arc) as zf:
zf.extractall("dependencies/")
elif sys.platform == "darwin":
assert sdl2_arc.endswith(".dmg")
subprocess.check_call(["hdiutil", "mount", sdl2_arc])
subprocess.check_call(["mkdir", "-p", sdl2_dir])
subprocess.check_call(["cp", "-r", "/Volumes/SDL2/SDL2.framework", sdl2_dir])
subprocess.check_call(["hdiutil", "unmount", "/Volumes/SDL2"])
return sdl2_path
includes = parse_includes()
module_name = "tcod._libtcod"
include_dirs = [
".",
"libtcod/src/vendor/",
"libtcod/src/vendor/utf8proc",
"libtcod/src/vendor/zlib/",
]
extra_parse_args = []
extra_compile_args = []
extra_link_args = []
sources = [] # type: List[str]
libraries = []
library_dirs: List[str] = []
define_macros = [("Py_LIMITED_API", 0x03060000)] # type: List[Tuple[str, Any]]
sources += walk_sources("tcod/")
sources += walk_sources("libtcod/src/libtcod/")
sources += ["libtcod/src/vendor/stb.c"]
sources += ["libtcod/src/vendor/glad.c"]
sources += ["libtcod/src/vendor/lodepng.c"]
sources += ["libtcod/src/vendor/utf8proc/utf8proc.c"]
sources += glob.glob("libtcod/src/vendor/zlib/*.c")
if sys.platform == "win32":
libraries += ["User32"]
define_macros.append(("TCODLIB_API", ""))
define_macros.append(("_CRT_SECURE_NO_WARNINGS", None))
if sys.platform == "darwin":
extra_link_args += ["-framework", "SDL2"]
else:
libraries += ["SDL2"]
# included SDL headers are for whatever OS's don't easily come with them
if sys.platform in ["win32", "darwin"]:
SDL2_PARSE_PATH = unpack_sdl2(SDL2_PARSE_VERSION)
SDL2_BUNDLE_PATH = unpack_sdl2(SDL2_BUNDLE_VERSION)
include_dirs.append("libtcod/src/zlib/")
if sys.platform == "win32":
SDL2_INCLUDE = os.path.join(SDL2_PARSE_PATH, "include")
elif sys.platform == "darwin":
SDL2_INCLUDE = os.path.join(SDL2_PARSE_PATH, "Versions/A/Headers")
else:
matches = re.findall(
r"-I(\S+)",
subprocess.check_output(["sdl2-config", "--cflags"], universal_newlines=True),
)
assert matches
SDL2_INCLUDE = None
for match in matches:
if os.path.isfile(os.path.join(match, "SDL_stdinc.h")):
SDL2_INCLUDE = match
assert SDL2_INCLUDE
if sys.platform == "win32":
include_dirs.append(SDL2_INCLUDE)
ARCH_MAPPING = {"32bit": "x86", "64bit": "x64"}
SDL2_LIB_DIR = os.path.join(SDL2_BUNDLE_PATH, "lib/", ARCH_MAPPING[BITSIZE])
library_dirs.append(SDL2_LIB_DIR)
SDL2_LIB_DEST = os.path.join("tcod", ARCH_MAPPING[BITSIZE])
if not os.path.exists(SDL2_LIB_DEST):
os.mkdir(SDL2_LIB_DEST)
shutil.copy(os.path.join(SDL2_LIB_DIR, "SDL2.dll"), SDL2_LIB_DEST)
def fix_header(filepath: str) -> None:
"""Removes leading whitespace from a MacOS header file.
This whitespace is causing issues with directives on some platforms.
"""
with open(filepath, "r+", encoding="utf-8") as f:
current = f.read()
fixed = "\n".join(line.strip() for line in current.split("\n"))
if current == fixed:
return
f.seek(0)
f.truncate()
f.write(fixed)
if sys.platform == "darwin":
HEADER_DIR = os.path.join(SDL2_PARSE_PATH, "Headers")
fix_header(os.path.join(HEADER_DIR, "SDL_assert.h"))
fix_header(os.path.join(HEADER_DIR, "SDL_config_macosx.h"))
include_dirs.append(HEADER_DIR)
extra_link_args += ["-F%s/.." % SDL2_BUNDLE_PATH]
extra_link_args += ["-rpath", "%s/.." % SDL2_BUNDLE_PATH]
extra_link_args += ["-rpath", "/usr/local/opt/llvm/lib/"]
# Fix "implicit declaration of function 'close'" in zlib.
define_macros.append(("HAVE_UNISTD_H", 1))
if sys.platform not in ["win32", "darwin"]:
extra_parse_args += subprocess.check_output(["sdl2-config", "--cflags"], universal_newlines=True).strip().split()
extra_compile_args += extra_parse_args
extra_link_args += subprocess.check_output(["sdl2-config", "--libs"], universal_newlines=True).strip().split()
tdl_build = os.environ.get("TDL_BUILD", "RELEASE").upper()
MSVC_CFLAGS = {"DEBUG": ["/Od"], "RELEASE": ["/GL", "/O2", "/GS-", "/wd4996"]}
MSVC_LDFLAGS: Dict[str, List[str]] = {"DEBUG": [], "RELEASE": ["/LTCG"]}
GCC_CFLAGS = {
"DEBUG": ["-std=c99", "-Og", "-g", "-fPIC"],
"RELEASE": [
"-std=c99",
"-flto",
"-O3",
"-g",
"-fPIC",
"-Wno-deprecated-declarations",
"-Wno-discarded-qualifiers", # Ignore discarded restrict qualifiers.
],
}
if sys.platform == "win32" and "--compiler=mingw32" not in sys.argv:
extra_compile_args.extend(MSVC_CFLAGS[tdl_build])
extra_link_args.extend(MSVC_LDFLAGS[tdl_build])
else:
extra_compile_args.extend(GCC_CFLAGS[tdl_build])
extra_link_args.extend(GCC_CFLAGS[tdl_build])
ffi = FFI()
parse_sdl2.add_to_ffi(ffi, SDL2_INCLUDE)
for include in includes:
try:
ffi.cdef(include.header)
except Exception:
# Print the source, for debugging.
print("Error with: %s" % include.path)
for i, line in enumerate(include.header.split("\n"), 1):
print("%03i %s" % (i, line))
raise
ffi.cdef(
"""
#define TCOD_COMPILEDVERSION ...
"""
)
ffi.set_source(
module_name,
"#include <tcod/cffi.h>\n#include <SDL.h>",
include_dirs=include_dirs,
library_dirs=library_dirs,
sources=sources,
libraries=libraries,
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
define_macros=define_macros,
py_limited_api=True,
)
CONSTANT_MODULE_HEADER = '''"""Constants from the libtcod C API.
This module is auto-generated by `build_libtcod.py`.
"""
from tcod.color import Color
'''
EVENT_CONSTANT_MODULE_HEADER = '''"""Event constants from SDL's C API.
This module is auto-generated by `build_libtcod.py`.
"""
'''
def find_sdl_attrs(prefix: str) -> Iterator[Tuple[str, Union[int, str, Any]]]:
"""Return names and values from `tcod.lib`.
`prefix` is used to filter out which names to copy.
"""
from tcod._libtcod import lib # type: ignore
if prefix.startswith("SDL_"):
name_starts_at = 4
elif prefix.startswith("SDL"):
name_starts_at = 3
else:
name_starts_at = 0
for attr in dir(lib):
if attr.startswith(prefix):
yield attr[name_starts_at:], getattr(lib, attr)
def parse_sdl_attrs(prefix: str, all_names: List[str]) -> Tuple[str, str]:
"""Return the name/value pairs, and the final dictionary string for the
library attributes with `prefix`.
Append matching names to the `all_names` list.
"""
names = []
lookup = []
for name, value in sorted(find_sdl_attrs(prefix), key=lambda item: item[1]):
all_names.append(name)
names.append("%s = %s" % (name, value))
lookup.append('%s: "%s"' % (value, name))
return "\n".join(names), "{\n %s,\n}" % (",\n ".join(lookup),)
EXCLUDE_CONSTANTS = [
"TCOD_MAJOR_VERSION",
"TCOD_MINOR_VERSION",
"TCOD_PATCHLEVEL",
"TCOD_COMPILEDVERSION",
"TCOD_PATHFINDER_MAX_DIMENSIONS",
"TCOD_KEY_TEXT_SIZE",
"TCOD_NOISE_MAX_DIMENSIONS",
"TCOD_NOISE_MAX_OCTAVES",
]
EXCLUDE_CONSTANT_PREFIXES = [
"TCOD_E_",
"TCOD_HEAP_",
"TCOD_LEX_",
"TCOD_CHARMAP_",
]
def update_module_all(filename: str, new_all: str) -> None:
"""Update the __all__ of a file with the constants from new_all."""
RE_CONSTANTS_ALL = re.compile(
r"(.*# --- From constants.py ---).*(# --- End constants.py ---.*)",
re.DOTALL,
)
with open(filename, "r", encoding="utf-8") as f:
match = RE_CONSTANTS_ALL.match(f.read())
assert match, "Can't determine __all__ subsection in %s!" % (filename,)
header, footer = match.groups()
with open(filename, "w", encoding="utf-8") as f:
f.write("%s\n %s,\n %s" % (header, new_all, footer))
def generate_enums(prefix: str) -> Iterator[str]:
"""Generate attribute assignments suitable for a Python enum."""
for name, value in sorted(find_sdl_attrs(prefix), key=lambda item: item[1]):
name = name.split("_", 1)[1]
if name.isdigit():
name = f"N{name}"
if name in "IOl": # Handle Flake8 warnings.
yield f"{name} = {value} # noqa: E741"
else:
yield f"{name} = {value}"
def write_library_constants() -> None:
"""Write libtcod constants into the tcod.constants module."""
import tcod.color
from tcod._libtcod import ffi, lib
with open("tcod/constants.py", "w", encoding="utf-8") as f:
all_names = []
f.write(CONSTANT_MODULE_HEADER)
for name in dir(lib):
# To exclude specific names use either EXCLUDE_CONSTANTS or
# EXCLUDE_CONSTANT_PREFIXES before editing this.
if name.endswith("_"):
continue
if name in EXCLUDE_CONSTANTS:
continue
if any(name.startswith(prefix) for prefix in EXCLUDE_CONSTANT_PREFIXES):
continue
value = getattr(lib, name)
if name[:5] == "TCOD_":
if name.isupper(): # const names
f.write("%s = %r\n" % (name[5:], value))
all_names.append(name[5:])
elif name.startswith("FOV"): # fov const names
f.write("%s = %r\n" % (name, value))
all_names.append(name)
elif name[:6] == "TCODK_": # key name
f.write("KEY_%s = %r\n" % (name[6:], value))
all_names.append("KEY_%s" % name[6:])
f.write("\n# --- colors ---\n")
for name in dir(lib):
if name[:5] != "TCOD_":
continue
value = getattr(lib, name)
if not isinstance(value, ffi.CData):
continue
if ffi.typeof(value) != ffi.typeof("TCOD_color_t"):
continue
color = tcod.color.Color._new_from_cdata(value)
f.write("%s = %r\n" % (name[5:], color))
all_names.append(name[5:])
all_names_merged = ",\n ".join('"%s"' % name for name in all_names)
f.write("\n__all__ = [\n %s,\n]\n" % (all_names_merged,))
update_module_all("tcod/__init__.py", all_names_merged)
update_module_all("tcod/libtcodpy.py", all_names_merged)
with open("tcod/event_constants.py", "w", encoding="utf-8") as f:
all_names = []
f.write(EVENT_CONSTANT_MODULE_HEADER)
f.write("\n# --- SDL scancodes ---\n")
f.write(f"""{parse_sdl_attrs("SDL_SCANCODE", all_names)[0]}\n""")
f.write("\n# --- SDL keyboard symbols ---\n")
f.write(f"""{parse_sdl_attrs("SDLK", all_names)[0]}\n""")
f.write("\n# --- SDL keyboard modifiers ---\n")
f.write("%s\n_REVERSE_MOD_TABLE = %s\n" % parse_sdl_attrs("KMOD", all_names))
f.write("\n# --- SDL wheel ---\n")
f.write("%s\n_REVERSE_WHEEL_TABLE = %s\n" % parse_sdl_attrs("SDL_MOUSEWHEEL", all_names))
all_names_merged = ",\n ".join('"%s"' % name for name in all_names)
f.write("\n__all__ = [\n %s,\n]\n" % (all_names_merged,))
with open("tcod/event.py", "r", encoding="utf-8") as f:
event_py = f.read()
event_py = re.sub(
r"(?<=# --- SDL scancodes ---\n ).*?(?=\n # --- end ---\n)",
"\n ".join(generate_enums("SDL_SCANCODE")),
event_py,
flags=re.DOTALL,
)
event_py = re.sub(
r"(?<=# --- SDL keyboard symbols ---\n ).*?(?=\n # --- end ---\n)",
"\n ".join(generate_enums("SDLK")),
event_py,
flags=re.DOTALL,
)
with open("tcod/event.py", "w", encoding="utf-8") as f:
f.write(event_py)
if __name__ == "__main__":
write_library_constants()