-
-
Notifications
You must be signed in to change notification settings - Fork 207
/
docs.py
117 lines (104 loc) · 3.95 KB
/
docs.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
#!/usr/bin/python3
import requests
import os
import argparse
import lxml.etree
import re
regex_rev = r'\([a-zA-Z 0-9]{0,}\)'
parser = argparse.ArgumentParser(description="Sharkive cheat docs creation tool")
parser.add_argument("type", help="3ds, switch")
def createDetails(type, name, cheats):
details = ""
if "3ds" in type:
details = "\n<details>\n"
details += "<summary>{}</summary>\n\n".format(name)
for cheat in cheats:
details += "- [{} ![{}]]({})\n".format(name, cheat["region"], cheat["path"])
details += "\n</details>\n"
elif "switch" in type:
for cheat in cheats:
details += "- [{} ![{}]]({})\n".format(name, cheat["region"], cheat["path"])
return details
def saveMD(db, type):
platform = "3DS" if '3ds' in type else 'Switch'
with open("./docs/wiki/{}-Games.md".format(platform), "w") as f:
header = '## **<p align="center">'
body = ""
for key in db.keys():
header += " " + '<a href="{}">{}</a>'.format(key, key)
body += "\n## [{}]\n\n".format(key) if '#' in key else "\n## {}\n\n".format(key)
for key2 in db[key].keys():
body += createDetails(type, key2, db[key][key2])
header += "</p>**\n"
flags = """
<!-- Flags -->
[CHN]: http://nswdb.com/images/CHN.jpg "CHN"
[EUR]: http://nswdb.com/images/EUR.jpg "EUR"
[FRA]: http://nswdb.com/images/FRA.jpg "FRA"
[GER]: http://nswdb.com/images/GER.jpg "GER"
[WLD]: http://nswdb.com/images/WLD.jpg "WLD"
[GLO]: http://nswdb.com/images/WLD.jpg "GLO"
[ITA]: http://nswdb.com/images/ITA.jpg "ITA"
[JPN]: http://nswdb.com/images/JPN.jpg "JPN"
[KOR]: http://nswdb.com/images/KOR.jpg "KOR"
[NLD]: http://nswdb.com/images/NLD.jpg "NLD"
[SPA]: http://nswdb.com/images/SPA.jpg "SPA"
[TWN]: http://nswdb.com/images/TWN.jpg "TWN"
[UKV]: http://nswdb.com/images/UKV.jpg "UKV"
[USA]: http://nswdb.com/images/USA.jpg "USA"
"""
f.write(header)
f.write(body)
f.write(flags)
def main(args):
if "3ds" in args.type:
url = "http://3dsdb.com/xml.php"
elif "switch" in args.type:
url = "http://nswdb.com/xml.php"
else:
exit(0)
response = requests.get(url)
xmlroot = lxml.etree.fromstring(response.content)
cheatFiles = []
db = {}
if "3ds" in args.type:
for root, _, files in os.walk("./db"):
for file in files:
cheatFiles.append(os.path.splitext(file)[0])
elif "switch" in args.type:
for root, _, files in os.walk("./switch"):
titleid = root[root.rfind("/") + 1 :]
if "switch" in titleid:
continue
cheatFiles.append(titleid)
for elem in xmlroot.findall("release"):
titleid = elem.find("titleid").text
if titleid in cheatFiles:
name = re.sub(regex_rev, '', elem.find("name").text).strip()
initialLetter = "#" if name[0].isdigit() else name[0].upper()
if initialLetter not in db.keys():
db[initialLetter] = {}
for game in db[initialLetter]:
for code in db[initialLetter][game]:
if code["titleid"] == titleid:
name = game
if name not in db[initialLetter].keys():
db[initialLetter][name] = []
cheat = {
"titleid": titleid,
"region": elem.find("region").text,
"path": "../blob/master/db/{}.txt".format(titleid)
if "3ds" in args.type
else "../tree/master/switch/{}".format(titleid),
}
alreadyThere = False
for code in db[initialLetter][name]:
if cheat == code:
alreadyThere = True
break
if not alreadyThere:
db[initialLetter][name].append(cheat)
db = dict(sorted(db.items()))
saveMD(db, args.type)
if __name__ == "__main__":
main(parser.parse_args())