Update format_contents_repo.py
This commit is contained in:
@@ -10,16 +10,132 @@ import unicodedata
|
||||
def sanitize_name(name):
|
||||
"""Normalize game names: remove symbols, accents, and replace ' - ' with space."""
|
||||
n = unicodedata.normalize('NFKD', name).encode('ascii','ignore').decode('ascii')
|
||||
n = n.replace("'", "").replace("’", "").replace("`", "").replace('"', '')
|
||||
n = n.replace("'", "").replace("’", "").replace("`", "").replace('"', "")
|
||||
n = n.replace(" - ", " ") # Replace problematic ' - ' only in the game name
|
||||
return ' '.join(n.split()).strip()
|
||||
|
||||
def capitalize_hyphenated(word):
|
||||
"""
|
||||
Capitalize both parts of a hyphenated word. E.g. "yooka-laylee" → "Yooka-Laylee".
|
||||
"""
|
||||
parts = word.split('-')
|
||||
capitalized = []
|
||||
for part in parts:
|
||||
if part:
|
||||
capitalized.append(part[0].upper() + part[1:].lower() if len(part) > 1 else part.upper())
|
||||
else:
|
||||
capitalized.append('')
|
||||
return '-'.join(capitalized)
|
||||
|
||||
# Regex for Roman numerals (supports up to 3999): I, II, III, IV, V, VI, VII, VIII, IX, X, XI, etc.
|
||||
ROMAN_NUMERAL_PATTERN = re.compile(
|
||||
r"^M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})$",
|
||||
re.IGNORECASE
|
||||
)
|
||||
|
||||
# A set of known acronyms (fully uppercase) that should remain uppercase exactly as is.
|
||||
ACRONYMS = {
|
||||
"HD", "2D", "3D", "4K", "VR", "AI", "API", "USB", "CPU", "GPU", "DVD", "CD",
|
||||
"RPG", "FPS", "MMO", "MMORPG", "LAN", "GUI", "NPC", "FFVII", "FFVIII", "FX", "FFIX", "FFX", "FFXII"
|
||||
}
|
||||
|
||||
def is_roman_numeral(word):
|
||||
"""Return True if the word is a valid Roman numeral (e.g. I, ii, Xx, etc.)."""
|
||||
return bool(ROMAN_NUMERAL_PATTERN.match(word))
|
||||
|
||||
def title_case_preserve_numbers(name):
|
||||
"""Capitalize words while preserving full-uppercase acronyms."""
|
||||
return ' '.join(w.capitalize() if not w.isupper() else w for w in name.split())
|
||||
"""
|
||||
Title-case with these rules:
|
||||
• Fully uppercase acronyms remain unchanged (e.g. HD, 2D, 3D, FFVII, etc.).
|
||||
• Roman numerals are fully uppercase (e.g. iI iIi → III, xI → XI).
|
||||
• Hyphenated words are capitalized on both sides (→ Yooka-Laylee).
|
||||
• Conjoined Roman numerals with '&', '+', or '|' become fully uppercase (e.g. I&ii → I&II).
|
||||
• Small filler words (a, an, and, the, of, in, etc.) become lowercase
|
||||
only if they are in the middle of the title (not first, not last, not
|
||||
immediately after a subtitle marker).
|
||||
• After a subtitle marker ( :, ~, –, —, - ), force capitalization on all
|
||||
subsequent words until the next subtitle marker or end-of-title.
|
||||
"""
|
||||
lowercase_exceptions = {
|
||||
"a", "an", "and", "as", "at", "but", "by", "for", "from",
|
||||
"in", "nor", "of", "on", "or", "so", "the", "to", "with", "yet"
|
||||
}
|
||||
subtitle_markers = {":", "~", "-", "–", "—"}
|
||||
|
||||
words = name.split()
|
||||
result = []
|
||||
force_capitalize_mode = False # Once True, stays True until next subtitle marker
|
||||
|
||||
for idx, word in enumerate(words):
|
||||
# Detect if this word contains any subtitle marker character
|
||||
contains_marker = any(marker in word for marker in subtitle_markers)
|
||||
|
||||
# Split on subtitle markers but keep them in the list
|
||||
split_parts = re.split(r'([:~\-–—])', word)
|
||||
capitalized_parts = []
|
||||
|
||||
for part in split_parts:
|
||||
if part in subtitle_markers:
|
||||
# Keep the subtitle marker, then force subsequent parts to capitalize
|
||||
capitalized_parts.append(part)
|
||||
force_capitalize_mode = True
|
||||
continue
|
||||
|
||||
lower_part = part.lower()
|
||||
is_first = (idx == 0)
|
||||
is_last = (idx == len(words) - 1)
|
||||
|
||||
# Helper: capitalize a sub-word with special rules for acronyms, roman numerals, and conjoined numerals
|
||||
def capitalize_special(w):
|
||||
# If w (case-insensitive) is in our ACRONYMS set, uppercase it fully.
|
||||
if w.upper() in ACRONYMS:
|
||||
return w.upper()
|
||||
# If w alone is a Roman numeral, uppercase it fully.
|
||||
if is_roman_numeral(w):
|
||||
return w.upper()
|
||||
# Handle compound Roman numerals separated by &, +, or |
|
||||
for sep in ['&', '+', '|']:
|
||||
if sep in w:
|
||||
parts = w.split(sep)
|
||||
if all(is_roman_numeral(p) for p in parts):
|
||||
return sep.join(p.upper() for p in parts)
|
||||
# Otherwise, capitalize hyphenated words normally.
|
||||
return capitalize_hyphenated(w)
|
||||
|
||||
# Decide how to capitalize this segment:
|
||||
if force_capitalize_mode or is_first or is_last or (lower_part not in lowercase_exceptions):
|
||||
# Split hyphenated sub-parts, apply capitalize_special to each half
|
||||
sub_parts = part.split('-')
|
||||
capitalized_sub_parts = [capitalize_special(sp) for sp in sub_parts]
|
||||
capitalized_parts.append('-'.join(capitalized_sub_parts))
|
||||
else:
|
||||
# It’s a lowercase exception in the middle of the title, so keep it lowercase.
|
||||
capitalized_parts.append(lower_part)
|
||||
|
||||
result.append(''.join(capitalized_parts))
|
||||
|
||||
# If this word did not contain a subtitle marker, stop forcing next capitalization
|
||||
if not contains_marker:
|
||||
force_capitalize_mode = False
|
||||
|
||||
# Always capitalize the FIRST and LAST words in the entire title (using same special rules):
|
||||
if result:
|
||||
first_word_parts = result[0].split('-')
|
||||
result[0] = '-'.join(
|
||||
sp.upper() if (sp.upper() in ACRONYMS or is_roman_numeral(sp)) else capitalize_hyphenated(sp)
|
||||
for sp in first_word_parts
|
||||
)
|
||||
|
||||
last_word_parts = result[-1].split('-')
|
||||
result[-1] = '-'.join(
|
||||
sp.upper() if (sp.upper() in ACRONYMS or is_roman_numeral(sp)) else capitalize_hyphenated(sp)
|
||||
for sp in last_word_parts
|
||||
)
|
||||
|
||||
return ' '.join(result)
|
||||
|
||||
def find_title_id(path):
|
||||
"""Look for 16-character Title ID under any 'contents/' directory."""
|
||||
"""Look for a 16-character Title ID under any 'contents/' directory in path."""
|
||||
for root, dirs, _ in os.walk(path):
|
||||
if os.path.basename(root).lower() == 'contents':
|
||||
for d in dirs:
|
||||
@@ -28,7 +144,11 @@ def find_title_id(path):
|
||||
return None
|
||||
|
||||
def extract_with_7z(rar_path, tmpdir):
|
||||
"""Extract only atmosphere/contents/* using 7z."""
|
||||
"""
|
||||
Extract only atmosphere/contents/* using 7z (same as your original).
|
||||
Return True if extraction succeeded (7z return code 0 OR
|
||||
we already found a Title ID folder inside tmpdir).
|
||||
"""
|
||||
cmd = [
|
||||
"7z", "x", "-y",
|
||||
rar_path,
|
||||
@@ -36,21 +156,28 @@ def extract_with_7z(rar_path, tmpdir):
|
||||
"atmosphere/contents/*"
|
||||
]
|
||||
proc = subprocess.run(cmd, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
|
||||
return proc.returncode == 0 or find_title_id(tmpdir) is not None
|
||||
return (proc.returncode == 0) or (find_title_id(tmpdir) is not None)
|
||||
|
||||
def process_rar(root_folder, rar_relpath, output_root):
|
||||
subdir, file = os.path.split(rar_relpath)
|
||||
version_match = re.match(r"release_(.+)\.rar$", file, re.I)
|
||||
"""
|
||||
1) Parse “release_<version>.rar” → version string.
|
||||
2) Sanitize + title-case the game folder name.
|
||||
3) Extract with 7z into a temp dir.
|
||||
4) Find Title ID under any '*/contents/<16hex>/'.
|
||||
5) Copy that content into output/<GameName>/version/<TitleID>/.
|
||||
"""
|
||||
subdir, filename = os.path.split(rar_relpath)
|
||||
version_match = re.match(r"release_(.+)\.rar$", filename, re.I)
|
||||
if not version_match:
|
||||
print(f"❌ Invalid release name: {file}")
|
||||
print(f"❌ Invalid release name: {filename}")
|
||||
return
|
||||
version = version_match.group(1)
|
||||
raw_game_name = os.path.basename(subdir)
|
||||
|
||||
# Clean and normalize game name (remove " - ", keep suffix clean)
|
||||
# Clean & normalize game name
|
||||
cleaned_name = sanitize_name(raw_game_name)
|
||||
game_name = title_case_preserve_numbers(cleaned_name)
|
||||
pack_label = f"{game_name} - Graphics Pack" # Final folder
|
||||
pack_label = f"{game_name} - Graphics Pack"
|
||||
|
||||
rar_path = os.path.join(root_folder, rar_relpath)
|
||||
with tempfile.TemporaryDirectory() as tmp:
|
||||
@@ -62,7 +189,7 @@ def process_rar(root_folder, rar_relpath, output_root):
|
||||
title_id = find_title_id(tmp)
|
||||
if not title_id:
|
||||
print(f"❌ No Title ID found in {rar_relpath}")
|
||||
return # Skip making directory if no Title ID found
|
||||
return # Skip if no valid Title ID folder
|
||||
|
||||
version_dir = os.path.join(output_root, pack_label, version)
|
||||
os.makedirs(version_dir, exist_ok=True)
|
||||
|
||||
Reference in New Issue
Block a user