v0.1 - Install Commit

The code can work, but some file are missing in the file folder : too much file possibly nintendo-copyrighted, they'll be available in the future when they'll be in an another format
This commit is contained in:
raphael60650 2021-05-20 08:55:08 +02:00
commit 1b624e1d1e
2 changed files with 196 additions and 0 deletions

83
fs.json Normal file
View file

@ -0,0 +1,83 @@
{
"Scene/UI/*[!_]?.szs": {
"/button/blyt/": "cup_icon_64x64_common.brlyt",
"/button/ctrl/": [
"Back.brctr",
"CupSelectCup.brctr"
],
"/control/blyt/": "cup_icon_64x64_common.brlyt",
"/control/ctrl/": "CourseSelectCup.brctr",
"/demo/blyt/": "course_name.brlyt",
"/demo/timg/": "tt_hatena_64x64.tpl",
"/bg/timg/": [
"tt_obi_bottom_curve_000.tpl",
"tt_obi_bottom_left_000.tpl",
"tt_obi_bottom_right_000.tpl",
"tt_obi_check_000.tpl",
"tt_obi_top_curve_000.tpl",
"tt_obi_top_left_000.tpl",
"tt_obi_top_right_000.tpl"
],
"/button/timg/": "ct_icons.tpl",
"/control/timg/": "ct_icons.tpl"
},
"Scene/UI/*_E.szs": {"/message/Common.bmg": "Common_E.bmg"},
"Scene/UI/*_F.szs": {"/message/Common.bmg": "Common_F.bmg"},
"Scene/UI/*_G.szs": {"/message/Common.bmg": "Common_G.bmg"},
"Scene/UI/*_I.szs": {"/message/Common.bmg": "Common_I.bmg"},
"Scene/UI/*_S.szs": {"/message/Common.bmg": "Common_S.bmg"},
"Scene/UI/Race_E.szs": {"/message/Common.bmg": "Common_RE.bmg"},
"Scene/UI/Race_F.szs": {"/message/Common.bmg": "Common_RF.bmg"},
"Scene/UI/Race_G.szs": {"/message/Common.bmg": "Common_RG.bmg"},
"Scene/UI/Race_I.szs": {"/message/Common.bmg": "Common_RI.bmg"},
"Scene/UI/Race_S.szs": {"/message/Common.bmg": "Common_RS.bmg"},
"Boot/Strap/eu/Dutch.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456de",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456de",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456de",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456de"
},
"Boot/Strap/eu/English.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456en",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456en",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456en",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456en"
},
"Boot/Strap/eu/French.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456fr",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456fr",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456fr",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456fr"
},
"Boot/Strap/eu/German.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456ge",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456ge",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456ge",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456ge"
},
"Boot/Strap/eu/Italian.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456it",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456it",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456it",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456it"
},
"Boot/Strap/eu/Spanish_EU.szs": {
"/Textures(NW4R)/strapA_16_9_832x456": "strapA_16_9_832x456es",
"/Textures(NW4R)/strapB_16_9_832x456": "strapA_16_9_832x456es",
"/Textures(NW4R)/strapA_608x456": "strapA_608x456es",
"/Textures(NW4R)/strapB_608x456": "strapA_608x456es"
},
"Boot/": "savebanner.tpl",
"thp/*/*.thp": "video.thp",
"Race/Common.szs": {
"/": "itemBoxNiseRtpa.brres",
"/Effect/": "RKRace.breff"
}
}

113
main.pyw Normal file
View file

@ -0,0 +1,113 @@
from tkinter import *
from tkinter import messagebox, filedialog, ttk
import subprocess
import shutil
import json
import glob
import os
def filecopy(src, dst):
with open(src, "rb") as f1:
with open(dst, "wb") as f2:
f2.write(f1.read()) # could be buffered
class ClassApp():
def __init__(self):
self.root = Tk()
self.root.title("MKWFaraphel Installateur")
self.root.resizable(False, False)
self.frame_game_path = LabelFrame(self.root, text="Jeu original")
self.frame_game_path.grid(row=1,column=1)
self.path_mkwf = None
entry_game_path = Entry(self.frame_game_path,width=50)
entry_game_path.grid(row=1,column=1,sticky="NEWS")
def select_path():
path = filedialog.askopenfilename(filetypes = (("Jeu Wii", r"*.iso *.wbfs main.dol *.wia *.ciso"),))
if os.path.exists(path):
entry_game_path.delete(0, END)
entry_game_path.insert(0, path)
Button(self.frame_game_path, text="...", relief=RIDGE, command=select_path).grid(row=1,column=2,sticky="NEWS")
def use_path():
self.frame_action.grid_forget()
path = entry_game_path.get()
if not(os.path.exists(path)): return messagebox.showerror("Erreur", "Le chemin de fichier est invalide")
extension = path.split(".")[-1]
if extension.upper() == "DOL":
if messagebox.askyesno("Attention", "Ce dossier sera écrasé si vous installer le mod !\n" +\
"Êtes-vous sûr de vouloir l'utiliser ?"):
self.path_mkwf = os.path.realpath(path + "/../../")
elif extension.upper() in ["ISO", "WBFS", "WIA", "CSIO"]:
self.path_mkwf, i = os.path.realpath(path + "/../MKWiiFaraphel"), 1
while True:
if not(os.path.exists(self.path_mkwf)): break
self.path_mkwf, i = os.path.realpath(path + f"/../MKWiiFaraphel ({i})"), i+1
subprocess.call(f'wit EXTRACT "{path}" -d "{self.path_mkwf}"', shell=True)
else: return messagebox.showerror("Erreur", "Le type de fichier n'est pas reconnu")
self.frame_action.grid(row=2, column=1,sticky="NEWS")
Button(self.frame_game_path, text="Extraire le fichier", relief=RIDGE, command=use_path)\
.grid(row=2,column=1,columnspan=2,sticky="NEWS")
self.frame_action = LabelFrame(self.root, text="Action")
Button(self.frame_action, text="Installer le mod", relief=RIDGE, command=self.install_mod, width=45
).grid(row=1,column=1,sticky="NEWS")
def install_mod(self):
with open("fs.json") as f: fs = json.load(f)
extracted_file = []
def replace_file(path, file, subpath="/"):
print(path, subpath, file)
extension = path.split(".")[-1]
if extension == "szs":
if not(os.path.realpath(path) in extracted_file):
subprocess.call(f'wszst EXTRACT "{path}" -d "{path}.d" --overwrite', shell=True)
extracted_file.append(os.path.realpath(path))
szs_extract_path = path+".d"
if os.path.exists(szs_extract_path+subpath):
if subpath[-1] == "/": filecopy(f"./file/{file}", szs_extract_path+subpath+file)
else: filecopy(f"./file/{file}", szs_extract_path+subpath)
elif path[-1] == "/": filecopy(f"./file/{file}", path+file)
else: filecopy(f"./file/{file}", path)
for fp in fs:
for f in glob.glob(self.path_mkwf + "/files/" + fp, recursive=True):
if type(fs[fp]) == str: replace_file(path=f, file=fs[fp])
elif type(fs[fp]) == dict:
for nf in fs[fp]:
if type(fs[fp][nf]) == str: replace_file(path=f, subpath=nf, file=fs[fp][nf])
elif type(fs[fp][nf]) == list:
for ffp in fs[fp][nf]: replace_file(path=f, subpath=nf, file=ffp)
print(extracted_file)
for file in extracted_file:
subprocess.call(f"wszst CREATE \"{file}.d\" -d \"{file}\" --overwrite", shell=True)
if os.path.exists(file+".d"): shutil.rmtree(file+".d")
subprocess.call(f'wstrt patch "{self.path_mkwf}/sys/main.dol" --clean-dol --add-lecode', shell=True)
subprocess.call(
f'wlect patch "./file/lecode-PAL.bin" -od "{self.path_mkwf}/files/rel/lecode-PAL.bin" ' +\
f'--track-dir "{self.path_mkwf}/files/Race/Course/" --copy-tracks "./file/Track/" ' +\
f'--move-tracks "{self.path_mkwf}/files/Race/Course/" --le-define ' +\
f'"./file/CTFILE.txt" --lpar "./file/lpar-default.txt" --overwrite', shell=True)
messagebox.showinfo("", "L'installation est terminé !")
# TODO: Langue
# TODO: Le moins de fichier possible nintendo-copyright
# TODO: Icones
# TODO: Wiimm's tools fournis
# TODO:
App = ClassApp()
mainloop()