forked from OoTRandomizer/OoT-Randomizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Utils.py
240 lines (189 loc) · 8.74 KB
/
Utils.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
from __future__ import annotations
import io
import json
import logging
import os
import re
import subprocess
import sys
import urllib.request
from collections.abc import Sequence
from itertools import chain, combinations
from typing import AnyStr, Optional, Any
from urllib.error import URLError, HTTPError
from version import __version__, base_version, supplementary_version, branch_url
def is_bundled() -> bool:
return getattr(sys, 'frozen', False)
def local_path(path: str = '') -> str:
if not hasattr(local_path, "cached_path"):
local_path.cached_path = None
if local_path.cached_path is not None:
return os.path.join(local_path.cached_path, path)
if is_bundled():
# we are running in a bundle
local_path.cached_path = os.path.dirname(os.path.realpath(sys.executable))
else:
# we are running in a normal Python environment
local_path.cached_path = os.path.dirname(os.path.realpath(__file__))
return os.path.join(local_path.cached_path, path)
def data_path(path: str = '') -> str:
if not hasattr(data_path, "cached_path"):
data_path.cached_path = None
if data_path.cached_path is not None:
return os.path.join(data_path.cached_path, path)
# Even if it's bundled we use __file__
# if it's not bundled, then we want to use the source.py dir + Data
# if it's bundled, then we want to use the extraction dir + Data
data_path.cached_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), "data")
return os.path.join(data_path.cached_path, path)
def default_output_path(path: str) -> str:
if path == '':
path = local_path('Output')
if not os.path.exists(path):
os.mkdir(path)
return path
def read_logic_file(file_path: str):
json_string = ""
with io.open(file_path, 'r') as file:
for line in file.readlines():
json_string += line.split('#')[0].replace('\n', ' ')
json_string = re.sub(' +', ' ', json_string)
try:
return json.loads(json_string)
except json.JSONDecodeError as error:
raise Exception("JSON parse error around text:\n" + \
json_string[error.pos-35:error.pos+35] + "\n" + \
" ^^\n")
def open_file(filename: str) -> None:
if sys.platform == 'win32':
os.startfile(filename)
else:
open_command = 'open' if sys.platform == 'darwin' else 'xdg-open'
subprocess.call([open_command, filename])
def get_version_bytes(a: str, b: int = 0x00, c: int = 0x00) -> list[int]:
version_bytes = [0x00, 0x00, 0x00, b, c]
if not a:
return version_bytes
sa = a.replace('v', '').replace(' ', '.').split('.')
for i in range(0, 3):
try:
version_byte = int(sa[i])
except ValueError:
break
version_bytes[i] = version_byte
return version_bytes
def compare_version(a: str, b: str) -> int:
if not a and not b:
return 0
elif a and not b:
return 1
elif not a and b:
return -1
sa = get_version_bytes(a)
sb = get_version_bytes(b)
for i in range(0, 3):
if sa[i] > sb[i]:
return 1
if sa[i] < sb[i]:
return -1
return 0
class VersionError(Exception):
pass
def check_version(checked_version: str) -> None:
if not hasattr(check_version, "base_regex"):
check_version.base_regex = re.compile("""^[ \t]*__version__ = ['"](.+)['"]""", flags=re.MULTILINE)
check_version.supplementary_regex = re.compile(r"^[ \t]*supplementary_version = (\d+)$", flags=re.MULTILINE)
check_version.full_regex = re.compile("""^[ \t]*__version__ = f['"]*(.+)['"]""", flags=re.MULTILINE)
check_version.url_regex = re.compile("""^[ \t]*branch_url = ['"](.+)['"]""", flags=re.MULTILINE)
if compare_version(checked_version, __version__) < 0:
try:
with urllib.request.urlopen(f'{branch_url.replace("https://github.com", "https://raw.githubusercontent.com").replace("tree/", "")}/version.py') as versionurl:
version_file = versionurl.read().decode("utf-8")
base_match = check_version.base_regex.search(version_file, re.MULTILINE)
supplementary_match = check_version.supplementary_regex.search(version_file, re.MULTILINE)
full_match = check_version.full_regex.search(version_file, re.MULTILINE)
url_match = check_version.url_regex.search(version_file, re.MULTILINE)
remote_base_version = base_match.group(1) if base_match else ""
remote_supplementary_version = int(supplementary_match.group(1)) if supplementary_match else 0
remote_full_version = full_match.group(1) if full_match else remote_base_version
remote_full_version = remote_full_version \
.replace('{base_version}', remote_base_version) \
.replace('{supplementary_version}', str(remote_supplementary_version))
remote_branch_url = url_match.group(1) if url_match else ""
upgrade_available = False
if compare_version(remote_base_version, base_version) > 0:
upgrade_available = True
elif compare_version(remote_base_version, base_version) == 0 and remote_supplementary_version > supplementary_version:
upgrade_available = True
if upgrade_available:
raise VersionError("You are on version " + __version__ + ", and the latest is version " + remote_full_version + ".")
except (URLError, HTTPError) as e:
logger = logging.getLogger('')
logger.warning("Could not fetch latest version: " + str(e))
# From the pyinstaller Wiki: https://github.com/pyinstaller/pyinstaller/wiki/Recipe-subprocess
# Create a set of arguments which make a ``subprocess.Popen`` (and
# variants) call work with or without Pyinstaller, ``--noconsole`` or
# not, on Windows and Linux. Typical use::
# subprocess.call(['program_to_run', 'arg_1'], **subprocess_args())
def subprocess_args(include_stdout: bool = True) -> dict[str, Any]:
# The following is true only on Windows.
if hasattr(subprocess, 'STARTUPINFO'):
# On Windows, subprocess calls will pop up a command window by default
# when run from Pyinstaller with the ``--noconsole`` option. Avoid this
# distraction.
si = subprocess.STARTUPINFO()
si.dwFlags |= subprocess.STARTF_USESHOWWINDOW
# Windows doesn't search the path by default. Pass it an environment so
# it will.
env = os.environ
else:
si = None
env = None
# ``subprocess.check_output`` doesn't allow specifying ``stdout``::
# So, add it only if it's needed.
if include_stdout:
ret = {'stdout': subprocess.PIPE}
else:
ret = {}
# On Windows, running this from the binary produced by Pyinstaller
# with the ``--noconsole`` option requires redirecting everything
# (stdin, stdout, stderr) to avoid an OSError exception
# "[Error 6] the handle is invalid."
ret.update({'stdin': subprocess.PIPE,
'stderr': subprocess.PIPE,
'startupinfo': si,
'env': env})
return ret
def run_process(logger: logging.Logger, args: Sequence[str], stdin: Optional[AnyStr] = None) -> None:
process = subprocess.Popen(args, bufsize=1, stdout=subprocess.PIPE, stdin=subprocess.PIPE)
filecount = None
if stdin is not None:
process.communicate(input=stdin)
else:
while True:
line = process.stdout.readline()
if line != b'':
find_index = line.find(b'files remaining')
if find_index > -1:
files = int(line[:find_index].strip())
if filecount is None:
filecount = files
logger.info(line.decode('utf-8').strip('\n'))
else:
break
# https://stackoverflow.com/a/23146126
def try_find_last(source_list: Sequence[Any], sought_element: Any) -> Optional[int]:
for reverse_index, element in enumerate(reversed(source_list)):
if element == sought_element:
return len(source_list) - 1 - reverse_index
return None
def find_last(source_list: Sequence[Any], sought_element: Any) -> int:
last = try_find_last(source_list, sought_element)
if last is None:
raise Exception(f"Element {sought_element} not found in sequence {source_list}.")
return last
# https://docs.python.org/3.8/library/itertools.html#itertools-recipes
def powerset(iterable):
"powerset([1,2,3]) --> () (1,) (2,) (3,) (1,2) (1,3) (2,3) (1,2,3)"
s = list(iterable)
return chain.from_iterable(combinations(s, r) for r in range(len(s)+1))