forked from junebug12851/Sims4ScriptingBPProj
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fix_tuning_names.py
163 lines (130 loc) · 5.43 KB
/
fix_tuning_names.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
# 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.
import fnmatch
import os
from settings import projects_tuning_path
# For pretty progress and results
col_count = 0
suc_count = 0
fail_count = 0
skip_count = 0
count = 0
failed_filename_list = []
def loop_end() -> None:
"""
Has completed one iteration of a loop, this handles pretty progress and output
:return: Nothing
"""
global count
global col_count
count += 1
col_count += 1
if col_count >= 80:
col_count = 0
print("")
def attempt_rename(from_path: str, to_folder: str, to_file_stem: str) -> None:
"""
This attempts a rename, and if the file exists, tries to append increasing letters to the end to make the rename
happen. If the rename still cannot happen it throws an error.
:param from_path: Path to file which needs renaming
:param to_folder: Path to same folder file is in
:param to_file_stem: New name of file without extension
:return: Nothing
"""
# Suffixes to append to the filename, in order, when a rename fails
attempts = ['', '_a', '_b', '_c', '_d']
# Whether it was successful, a failed rename means we need to throw an error
success = False
# Loop through each of the suffixes, the first suffix is empty because we always try no suffix first
# and attempt the rename
for attempt in attempts:
try:
os.rename(from_path, to_folder + os.sep + to_file_stem + attempt + ".xml")
success = True
break
except:
pass
# Throw error if success is still false meaning we went through all the possible suffix options and it still didn't
# work
if not success:
raise NameError("Failed to rename file")
def begin_fix() -> None:
"""
The function that does everything, loops through a Tunings folder and renames the tuning files to be in plain
English.
:return: Nothing
"""
global suc_count
global fail_count
global skip_count
global failed_filename_list
print("Fixing filenames...")
print("")
# Go through all the files in all the folders in the Tuning folder
for folder, subs, files in os.walk(projects_tuning_path):
for filename in fnmatch.filter(files, '*.xml'):
# Break it up into pieces. The files are separated by dots
# This goes from
# "03B33DDF!00000000!0D94E80BE40B3604.sims.loan_tuning.Tuning.xml"
# to
# ["03B33DDF!00000000!0D94E80BE40B3604", "sims", "loan_tuning", "Tuning", "xml"]
new_filename = filename.split(".")
# Do a check to see if this file is already fixed
# A fixed file will only have one dot, the extension. Skip if it's already fixed
if len(new_filename) <= 2:
print("_", end="")
skip_count += 1
loop_end()
continue
# This magic mangles the split filename to go from
# "03B33DDF!00000000!0D94E80BE40B3604.sims.loan_tuning.Tuning.xml"
# to
# "sims_loan_tuning.xml"
# Much prettier don't you agree?
new_filename.pop(0)
new_filename.pop()
new_filename.pop()
new_filename = "_".join(new_filename)
# This does the renaming, if the renamer function fails after all renaming attempts then chalk it up
# to a failure and report it
try:
attempt_rename(folder + os.sep + filename, folder, new_filename)
print(".", end="")
suc_count += 1
except:
print("x", end="")
fail_count += 1
failed_filename_list.append(folder + os.sep + filename)
loop_end()
# The nice pretty results output
print("")
print("")
print("Completed")
print("S: " + str(suc_count) + " [" + str(round((suc_count/count) * 100, 2)) + "%], ", end="")
print("F: " + str(fail_count) + " [" + str(round((fail_count/count) * 100, 2)) + "%], ", end="")
print("X: " + str(skip_count) + " [" + str(round((skip_count / count) * 100, 2)) + "%], ", end="")
print("T: " + str(count))
# and the list of files that failed to rename if there are any
if len(failed_filename_list) > 0:
print("")
print("Failed to rename files:")
print("")
print("\n".join(failed_filename_list))
print("")
# A confirmation to make sure the user has done what this scripts expects them to have done
print("This requires using Sims 4 Studio to export all Tuning files using sub-folders at the currently")
print("configured location: " + projects_tuning_path)
answer = input("Have you done this? [y/n]: ")
if answer is "y":
begin_fix()