forked from hugo19941994/auto-datfile-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
no-intro.py
213 lines (178 loc) · 7.88 KB
/
no-intro.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
import glob
import os
import re
import xml.etree.ElementTree as ET
import zipfile
from time import sleep
from selenium import webdriver
regex = {
# 20220717-123500 OR 2023-04-09
"date" : r"[0-9]{8}-[0-9]{6}|[0-9]{4}-[0-9]{2}-[0-9]{2}",
"name" : r"(.*?.)( \([0-9]{8}-[0-9]{6}|[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}-[0-9]{2}-[0-9]{2}\).dat)"
}
no_intro_type = {
"standard" : "standard",
"parent-clone" : "xml"
}
for key, value in no_intro_type.items():
# Download no-intro pack using selenium
dir_path = os.path.dirname(os.path.realpath(__file__))
options = webdriver.FirefoxOptions()
options.set_preference("browser.download.folderList", 2)
options.set_preference("browser.download.manager.showWhenStarting", False)
options.set_preference("browser.download.dir", dir_path)
options.set_preference("browser.helperApps.neverAsk.saveToDisk", "application/zip")
options.add_argument ("-headless")
service = webdriver.FirefoxService(log_output = "firefox-webdriver.log" , service_args = ["--log", "debug"])
driver = webdriver.Firefox(service=service, options=options)
driver.implicitly_wait(15)
# load website
driver.get("https://datomatic.no-intro.org")
print("Loaded no-intro datomatic ...")
# select "DOWNLOAD"
driver.find_element(by="xpath", value="/html/body/div/header/nav/ul/li[3]/a").click()
# select "daily"
driver.find_element(by="xpath", value="/html/body/div/section/article/table[1]/tbody/tr/td/a[5]").click()
#set the type of dat file
if key == "standard" :
driver.find_element(by="xpath", value="//input[@name='dat_type' and @value='standard']").click()
if key == "parent-clone" :
driver.find_element(by="xpath", value="//input[@name='dat_type' and @value='xml']").click()
print(f"Set dat type to {key} ...")
#set options
#Un-select Source Code
driver.find_element(by="name", value="set2").click()
#Select Redump Custom
if key == "standard" : #doesn't exist for parent-clone
driver.find_element(by="name", value="set6").click()
print("Set up options ...")
# select "Request"
driver.find_element(by="name", value="daily_day").click()
sleep(5)
# select "Download"
driver.find_element(by="xpath", value="//input[@value='Download!']").click()
print("Waiting for download to complete ...")
# wait until file is found
FOUND = False
NAME = None
TIME_SLEPT = 0
while not FOUND:
if TIME_SLEPT > 900:
raise FileNotFoundError(f"No-Intro {key} zip file not found, timeout reached")
for f in os.listdir(dir_path):
if "No-Intro Love Pack" in f and not f.endswith(".part"):
try:
zipfile.ZipFile(os.path.join(dir_path, f))
NAME = f
FOUND = True
print("No-Intro zip file download completed ...")
break
except zipfile.BadZipfile:
pass
# wait 5 seconds and check for download completion again
sleep(5)
TIME_SLEPT += 5
if NAME is None:
raise FileNotFoundError(f"No-Intro {key} zip file not found, download failed")
#setup archive path and rename
archive_name = "no-intro.zip" if key == "standard" else f"no-intro_{key}.zip"
archive_full = os.path.join(dir_path, archive_name)
os.rename(os.path.join(dir_path, NAME), os.path.join(dir_path, archive_full))
# load & extract zip file, there is currently no way to remove files from zip archive
with zipfile.ZipFile(os.path.join(dir_path, archive_full), mode="r") as orig_archive:
orig_archive.extractall()
# delete unneeded files
os.remove("index.txt")
print("Building new archive ...")
with zipfile.ZipFile(os.path.join(dir_path, archive_full), mode="w", compression=zipfile.ZIP_DEFLATED, compresslevel=9) as archive:
for f in os.listdir(dir_path):
if "No-Intro" in f:
print("\nAdding No-Intro dats ...")
os.chdir("./No-Intro")
for x in os.listdir(path="."):
if x.endswith(".dat"):
print("Adding to Archive: ", x)
archive.write(x)
os.remove(x)
os.chdir("../")
os.rmdir("./No-Intro")
if "Non-Redump" in f:
print("\nAdding No-Intro Non-Redump dats ...")
os.chdir("./Non-Redump")
for x in os.listdir(path="."):
if x.endswith(".dat"):
print("Adding to Archive: ", x)
archive.write(x)
os.remove(x)
os.chdir("../")
os.rmdir("./Non-Redump")
if "Source Code" in f:
print("\nAdding No-Intro Source Code dats ...")
os.chdir("./Source Code")
for x in os.listdir(path="."):
if x.endswith(".dat"):
print("Adding to Archive: ", x)
archive.write(x)
os.remove(x)
os.chdir("../")
os.rmdir("./Source Code")
if "Unofficial" in f:
print("\nAdding No-Intro Unofficial dats ...")
os.chdir("./Unofficial")
for x in os.listdir(path="."):
if x.endswith(".dat"):
print("Adding to Archive: ", x)
archive.write(x)
os.remove(x)
os.chdir("../")
os.rmdir("./Unofficial")
if "Redump Custom" in f:
print("\nAdding No-Intro Redump Custom dats ...")
os.chdir("./Redump Custom")
#temp workaround broken date format
for f in glob.glob("Audio CD - Spillover Tracks - Datfile*.dat"):
os.remove(f)
for x in os.listdir(path="."):
if x.endswith(".dat"):
PREFIX = "Redump Custom - " #temp workaround for missing prefix
os.rename(x, PREFIX + x)
print("Adding to Archive: ", PREFIX + x)
archive.write(PREFIX + x)
os.remove(PREFIX + x)
os.chdir("../")
os.rmdir("./Redump Custom")
print("\nCreating new clrmamepro datfile ...\n")
# clrmamepro XML file
tag_clrmamepro = ET.Element("clrmamepro")
for dat in archive.namelist():
print(dat)
# section for this dat in the XML file
tag_datfile = ET.SubElement(tag_clrmamepro, "datfile")
# XML version
dat_date = re.findall(regex["date"], dat)[0]
ET.SubElement(tag_datfile, "version").text = dat_date
print(dat_date)
# XML name & description
temp_name = re.findall(regex["name"], dat)[0][0]
ET.SubElement(tag_datfile, "name").text = temp_name
ET.SubElement(tag_datfile, "description").text = temp_name
print(temp_name)
# URL tag in XML
ET.SubElement(tag_datfile, "url").text = f"https://github.com/dantob/auto-datfile-generator/releases/latest/download/{archive_name}"
# File tag in XML
file_name = dat
file_name = f"{file_name[:-4]}.dat"
ET.SubElement(tag_datfile, "file").text = file_name
print(file_name)
# Author tag in XML
ET.SubElement(tag_datfile, "author").text = "no-intro.org"
# Command XML tag
ET.SubElement(tag_datfile, "comment").text = "_"
print("\n")
archive.close()
# store clrmamepro XML file
xml_data = ET.tostring(tag_clrmamepro).decode()
xml_filename = "no-intro.xml" if key == "standard" else f"no-intro_{key}.xml"
with open(xml_filename, "w", encoding="utf-8") as xmlfile:
xmlfile.write(xml_data)
print("Finished")