forked from junebug12851/Sims4ScriptingBPProj
-
Notifications
You must be signed in to change notification settings - Fork 1
/
sync_packages.py
79 lines (60 loc) · 2.45 KB
/
sync_packages.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
# Copyright 2020 June Hanabi
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This installs, updates, and removes package files in the projects folder to match the assets folder
import fnmatch
import os
import shutil
from settings import assets_path, mods_folder, creator_name, project_name, build_path
from Utility.helpers_path import ensure_path_created, remove_file
mod_name_folder_path = mods_folder + os.sep + creator_name + "_" + project_name
ensure_path_created(mod_name_folder_path)
file_list_failed = []
def remove_tl_packages(path: str) -> int:
count = 0
# Remove existing package files
for root, dirs, files in os.walk(path):
for filename in fnmatch.filter(files, "*.package"):
remove_file(root + os.sep + filename)
count += 1
# Only cover the top-level folder
break
return count
def copy_tl_packages(src: str, dest: str) -> int:
count = 0
# Copy new assets
for root, dirs, files in os.walk(src):
for filename in files:
try:
shutil.copy(root + os.sep + filename,
dest + os.sep + filename)
count += 1
except Exception:
file_list_failed.append(root + os.sep + filename)
# Only cover the top-level folder
break
return count
files_removed = remove_tl_packages(mod_name_folder_path)
remove_tl_packages(build_path)
files_added = copy_tl_packages(assets_path, mod_name_folder_path)
copy_tl_packages(assets_path, build_path)
file_difference = files_added - files_removed
print("Synced packages:" +
" +" + str(files_added) +
" -" + str(files_removed) +
" ~" + str(file_difference))
if len(file_list_failed) > 0:
print("")
print("Failed to copy these files, make sure the packages are named uniquely")
print("")
print("\n".join(file_list_failed))