|
1
|
|
|
"""This module handles loading of the libtcod cffi API. |
|
2
|
|
|
""" |
|
3
|
|
|
from __future__ import absolute_import as _ |
|
4
|
|
|
|
|
5
|
|
|
import sys as _sys |
|
6
|
|
|
import os as _os |
|
7
|
|
|
|
|
8
|
|
|
import platform as _platform |
|
9
|
|
|
|
|
10
|
|
|
from tcod import __path__ |
|
11
|
|
|
|
|
12
|
|
|
# add Windows dll's to PATH |
|
13
|
|
|
if _sys.platform == 'win32': |
|
14
|
|
|
_bits, _linkage = _platform.architecture() |
|
15
|
|
|
_os.environ['PATH'] += (';' + |
|
16
|
|
|
_os.path.join(__path__[0], 'x86/' if _bits == '32bit' else 'x64')) |
|
17
|
|
|
|
|
18
|
|
|
|
|
19
|
|
|
def _import_library_functions(lib): |
|
|
|
|
|
|
20
|
|
|
# imports libtcod namespace into thie module |
|
21
|
|
|
# does not override existing names |
|
22
|
|
|
g = globals() |
|
23
|
|
|
for name in dir(lib): |
|
24
|
|
|
if name[:5] == 'TCOD_': |
|
25
|
|
|
if (isinstance(getattr(lib, name), ffi.CData) and |
|
|
|
|
|
|
26
|
|
|
ffi.typeof(getattr(lib, name)) == ffi.typeof('TCOD_color_t')): |
|
|
|
|
|
|
27
|
|
|
g[name[5:]] = _FrozenColor.from_cdata(getattr(lib, name)) |
|
28
|
|
|
elif name.isupper(): |
|
29
|
|
|
g[name[5:]] = getattr(lib, name) # const names |
|
30
|
|
|
#else: |
|
31
|
|
|
# g[name[5:]] = getattr(lib, name) # function names |
|
32
|
|
|
elif name[:6] == 'TCODK_': # key name |
|
33
|
|
|
g['KEY_' + name[6:]] = getattr(lib, name) |
|
34
|
|
|
|
|
35
|
|
|
NOISE_DEFAULT_HURST = 0.5 |
|
36
|
|
|
NOISE_DEFAULT_LACUNARITY = 2.0 |
|
37
|
|
|
|
|
38
|
|
|
def FOV_PERMISSIVE(p) : |
|
|
|
|
|
|
39
|
|
|
return FOV_PERMISSIVE_0+p |
|
|
|
|
|
|
40
|
|
|
|
|
41
|
|
|
def BKGND_ALPHA(a): |
|
|
|
|
|
|
42
|
|
|
return BKGND_ALPH | (int(a * 255) << 8) |
|
|
|
|
|
|
43
|
|
|
|
|
44
|
|
|
def BKGND_ADDALPHA(a): |
|
|
|
|
|
|
45
|
|
|
return BKGND_ADDA | (int(a * 255) << 8) |
|
|
|
|
|
|
46
|
|
|
|
|
47
|
|
|
class _MockFFI(object): |
|
|
|
|
|
|
48
|
|
|
def def_extern(self): |
|
|
|
|
|
|
49
|
|
|
return lambda func:func |
|
|
|
|
|
|
50
|
|
|
|
|
51
|
|
|
if _os.environ.get('READTHEDOCS'): |
|
52
|
|
|
# Mock the lib and ffi objects needed to compile docs for readthedocs.io |
|
53
|
|
|
# Allows an import without building the cffi module first. |
|
54
|
|
|
lib = object() |
|
55
|
|
|
ffi = _MockFFI() |
|
56
|
|
|
RENDERER_SDL = 2 |
|
57
|
|
|
FONT_LAYOUT_ASCII_INCOL = 1 |
|
58
|
|
|
BKGND_SET = 1 |
|
59
|
|
|
BKGND_DEFAULT = 13 |
|
60
|
|
|
KEY_RELEASED = 2 |
|
61
|
|
|
NOISE_DEFAULT = 0 |
|
62
|
|
|
else: |
|
63
|
|
|
from tcod._libtcod import lib, ffi |
|
|
|
|
|
|
64
|
|
|
|
|
65
|
|
|
from tcod.tcod import FrozenColor as _FrozenColor |
|
66
|
|
|
_import_library_functions(lib) |
|
67
|
|
|
|
|
68
|
|
|
__all__ = [_name for _name in list(globals()) if _name[0] != '_'] |
|
69
|
|
|
|
The coding style of this project requires that you add a docstring to this code element. Below, you find an example for methods:
If you would like to know more about docstrings, we recommend to read PEP-257: Docstring Conventions.