aboutsummaryrefslogtreecommitdiff
path: root/codegen/lib
diff options
context:
space:
mode:
Diffstat (limited to 'codegen/lib')
-rw-r--r--codegen/lib/download.py11
-rw-r--r--codegen/lib/utils.py4
2 files changed, 14 insertions, 1 deletions
diff --git a/codegen/lib/download.py b/codegen/lib/download.py
index fbc4f749..e9712f8d 100644
--- a/codegen/lib/download.py
+++ b/codegen/lib/download.py
@@ -5,7 +5,9 @@ import json
import os
# make sure the downloads directory exists
+print('Making downloads')
if not os.path.exists(get_dir_location('downloads')):
+ print('Made downloads directory.', get_dir_location('downloads'))
os.mkdir(get_dir_location('downloads'))
@@ -117,7 +119,16 @@ def get_yarn_data(version_id: str):
def clear_version_cache():
+ print('\033[92mClearing version cache...\033[m')
files = [
'version_manifest.json',
'yarn_versions.json'
]
+ for file in files:
+ if os.path.exists(get_dir_location(f'downloads/{file}')):
+ os.remove(get_dir_location(f'downloads/{file}'))
+
+ os.system(
+ f'cd {get_dir_location("downloads/Burger")} && git pull')
+ os.system(
+ f'cd {get_dir_location("downloads/minecraft-data-generator-server")} && git pull')
diff --git a/codegen/lib/utils.py b/codegen/lib/utils.py
index 3887bb35..c3d293c0 100644
--- a/codegen/lib/utils.py
+++ b/codegen/lib/utils.py
@@ -18,9 +18,11 @@ def to_camel_case(name: str):
s = f'_{s}'
return s
+
def upper_first_letter(name: str):
return name[0].upper() + name[1:]
+
def padded_hex(n: int):
return f'0x{n:02x}'
@@ -55,4 +57,4 @@ def group_packets(packets: list[PacketIdentifier]):
def get_dir_location(name: str):
- return os.path.join(os.path.dirname(__file__), '..', name)
+ return os.path.join(os.path.dirname(os.path.dirname(__file__)), name)