forked from NIEjx/pyGBF-Image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyGBFweapon.py
219 lines (197 loc) · 7.16 KB
/
pyGBFweapon.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
214
215
216
217
218
219
# 批量下载GBF武器立绘
from queue import Queue
import os
import time
import threading
import urllib.request
import urllib.error
import datetime
import sys
sys.path.append(".")
import pyDownload as download
dirname = os.getcwd()
print_lock = threading.Lock()
data_q = Queue()
SAVELINK = False
DEBUG = False
# chara[R/SR/SSR/skin] quest[r/sr/ssr/extra] summon[n/r/sr/ssr] zoom[r/sr/ssr/skin] mypage[r/sr/ssr/skin] class cover bg chara[extra] zoom[extra]
groupstack = [-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1,]
grouptop = [0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0]
prefix1 = "http://game-a1.granbluefantasy.jp/assets/img/sp/assets/weapon/"
groupstr = ["100","101","102","103","104","105","106","107","108","109",
"200","201","202","203","204","205","206","207","208","209",
"300","301","302","303","304","305","306","307","308","309",
"400","401","402","403","404","405","406","407","408","409"]
# chara[R/SR/SSR/skin] quest[r/sr/ssr/extra] summon[n/r/sr/ssr] zoom[r/sr/ssr/skin] mypage[r/sr/ssr/skin] class cover
groupdir = ["img\\weapon\\n","img\\weapon\\r","img\\weapon\\sr","img\\weapon\\ssr"]
#quest extra needs big step
groupstep = [20,20,20,20,20,20,20,20,20,20,
20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
20, 20, 20, 20, 20, 20, 20, 20, 20, 20,
20, 20, 20, 20, 20, 20, 20, 20, 20, 20]
grouplink = ["link\\wp-n.txt","link\\wp-r.txt","link\\wp-sr.txt","link\\wp-ssr.txt"]
MaxThread = 40
def wpimglist(groupid):
list = []
# 3040001000_01
for index in range(groupstack[groupid]+1, groupstack[groupid]+1+groupstep[groupid]):
list.append(imgName(index, groupid, 0))
return list
def mkdir(path):
tmppath = os.getcwd()+"\\"+path
try:
os.makedirs(tmppath)
except:
pass
return tmppath
class imgName:
id = 0
groupid = 0
#dirid = 0
suffix = 1
def __init__(self, id, groupid, suffix = 1):
self.id = id
self.groupid = groupid
#self.dirid = dirid
self.suffix = suffix
def __str__(self):
thisstr = "["+ str(self.id)+","+str(self.groupid)+"]"
return thisstr
def saveIndex(imgData):
time.sleep(0.1)
with print_lock:
imgName = "10"+ groupstr[imgData.groupid] + str(imgData.id).zfill(3)+"00"
iddir = imgData.groupid //10
dir = groupdir[iddir]
count = 0
try:
url = prefix1 + "m/" + imgName +".jpg"
if(download.saveImg(url,dir+"\\m")):
count+=1
if(SAVELINK):
#print(grouplink[imgData.groupid])
#print(imgData.url)
with open(grouplink[iddir],"a") as linkfile:
linkfile.write(url+"\n")
except:
pass
try:
url = prefix1 + "b/" + imgName +".png"
if(download.saveImg(url,dir+"\\b")):
count+=1
if(SAVELINK):
#print(grouplink[imgData.groupid])
#print(imgData.url)
with open(grouplink[iddir],"a") as linkfile:
linkfile.write(url+"\n")
except:
pass
try:
url = prefix1 + "ls/" + imgName +".jpg"
if(download.saveImg(url,dir+"\\ls")):
count+=1
if(SAVELINK):
#print(grouplink[imgData.groupid])
#print(imgData.url)
with open(grouplink[iddir],"a") as linkfile:
linkfile.write(url+"\n")
except:
pass
#update logic
if(count >0 ):
if(imgData.id > groupstack[imgData.groupid]):
print("update list " + groupdir[iddir])
groupstack[imgData.groupid] += groupstep[imgData.groupid]
simglist = []
simglist = wpimglist(imgData.groupid)
for iimg in simglist:
data_q.put(iimg)
simglist.clear()
if(imgData.id>grouptop[imgData.groupid]):
grouptop[imgData.groupid] = imgData.id
def worker():
while True:
imgData1 = data_q.get()
#print(imgData1)
saveIndex(imgData1)
data_q.task_done()
def main():
#socket.setdefaulttimeout(10)
if(sys.version_info.major != 3):
print("This script only works for python3")
return
try:
logdata = ""
with open("img\\weapon\\log.txt") as logfile:
lines = logfile.readlines()
logdata = lines[1]
if (logdata != ""):
data = logdata.split(',')
numgroup = len(groupstack) + 1
if (len(data) == numgroup):
print("download start from latest")
for i in range(0, numgroup):
groupstack[i] = int(data[i])
grouptop[i] = int(data[i])
except:
pass
for x in range(MaxThread):
t = threading.Thread(target = worker)
t.daemon = True
t.start()
for idir in groupdir:
mkdir(idir)
mkdir(idir+"\\m")
mkdir(idir + "\\b")
mkdir(idir + "\\ls")
mkdir("link")
start = time.time()
simglist = []
# init
for index in range(0,40):
simglist = wpimglist(index)
for iimg in simglist:
data_q.put(iimg)
simglist.clear()
data_q.join()
print("entire job took:", time.time()-start)
# today = str(datetime.date.today())
with open("img\\weapon\\log.txt", "w", encoding='utf-8') as logfile:
istr = "weapon [n|r|sr|ssr][sword|blade|spear|axe|staff|gun|fist|bow|harp|katana]\n"
logfile.write(istr)
for ilog in grouptop:
istr = str(ilog)+","
logfile.write(istr)
logfile.write("\n")
if __name__ == '__main__':
main()
os.system("pause")
#appendix
#weapon
#http://game-a1.granbluefantasy.jp/assets/img/sp/assets/weapon/m/1040001600.jpg
#http://game-a.granbluefantasy.jp/assets/img/sp/assets/weapon/b/1040001600.png
#http://game-a.granbluefantasy.jp/assets/img/sp/assets/weapon/ls/1040500300.jpg
#image set
#character origin zoom
#skin
#3710001000
# http://game-a.granbluefantasy.jp/assets/img/sp/assets/npc/zoom/3040010000_01.png
#http://game-a.granbluefantasy.jp/assets/img/sp/assets/npc/b/3030007000_01.png
#class
#http://game-a1.granbluefantasy.jp/assets/img/sp/assets/leader/job_change/120001_wa_1_01.png
#http://game-a1.granbluefantasy.jp/assets/img/sp/cjs/job_release_180001_1_c.png
#quest character 2 3 4 99
#http://game-a1.granbluefantasy.jp/assets/img/sp/quest/scene/character/body/3040022000.png
#summon 1 2 3 4
#http://game-a.granbluefantasy.jp/assets/img/sp/assets/summon/b/2030011000.png
#mypage class&sr
#http://game-a1.granbluefantasy.jp/assets/img/sp/assets/npc/my/3040058000_02.png
#http://game-a1.granbluefantasy.jp/assets/img/sp/assets/leader/my/140201_kn_1_01.png
#not used
#http://game-a1.granbluefantasy.jp/assets/img/sp/assets/npc/npc_evolution/main/3040071000_02.png