forked from jahands/FactorioMods_FactorioMaps
-
Notifications
You must be signed in to change notification settings - Fork 22
/
ref.py
416 lines (301 loc) · 18.1 KB
/
ref.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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
from argparse import Namespace
import os, json, psutil
from pathlib import Path
from PIL import Image, ImageChops, ImageStat
import multiprocessing as mp
from functools import partial
from shutil import get_terminal_size as tsize
import traceback
ext = ".png"
outext = ".jpg"
def test(paths):
newImg = Image.open(paths[0], mode='r').convert("RGB")
oldImg = Image.open(paths[1], mode='r').convert("RGB")
treshold = .03 * newImg.size[0]**2
# jpeg artifacts always average out perfectly over 8x8 sections, we take advantage of that and scale down by 8 so we can compare compressed images with uncompressed images.
size = (newImg.size[0] / 8, newImg.size[0] / 8)
newImg.thumbnail(size, Image.BILINEAR)
oldImg.thumbnail(size, Image.BILINEAR)
diff = ImageChops.difference(newImg, oldImg)
return sum(ImageStat.Stat(diff).sum2) > treshold
def compare(path, basePath, new, progressQueue):
testResult = False
try:
testResult = test((os.path.join(basePath, new, *path[1:]), os.path.join(basePath, *path).replace(ext, outext)))
except:
print("\r")
traceback.print_exc()
print("\n")
raise
finally:
progressQueue.put(True, True)
return (testResult, path[1:])
def compareRenderbox(renderbox, basePath, new):
newPath = os.path.join(basePath, new, renderbox[0]) + ext
testResult = False
try:
testResult = test((newPath, os.path.join(basePath, renderbox[1], renderbox[0]) + outext))
except:
print("\r")
raise
return (testResult, newPath, renderbox[1], renderbox[2])
def neighbourScan(coord, keepList, cropList):
"""
x+ = UP, y+ = RIGHT
corners:
2 1
X
4 3
"""
surfaceName, daytime, z = coord[:3]
x, y = int(coord[3]), int(os.path.splitext(coord[4])[0])
return (((surfaceName, daytime, z, str(x+1), str(y+1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x+1, y+1), 0) & 0b1000) \
or ((surfaceName, daytime, z, str(x+1), str(y-1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x+1, y-1), 0) & 0b0100) \
or ((surfaceName, daytime, z, str(x-1), str(y+1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x-1, y+1), 0) & 0b0010) \
or ((surfaceName, daytime, z, str(x-1), str(y-1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x-1, y-1), 0) & 0b0001) \
or ((surfaceName, daytime, z, str(x+1), str(y ) + ext) in keepList and cropList.get((surfaceName, daytime, z, x+1, y ), 0) & 0b1100) \
or ((surfaceName, daytime, z, str(x-1), str(y ) + ext) in keepList and cropList.get((surfaceName, daytime, z, x-1, y ), 0) & 0b0011) \
or ((surfaceName, daytime, z, str(x ), str(y+1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x , y+1), 0) & 0b1010) \
or ((surfaceName, daytime, z, str(x ), str(y-1) + ext) in keepList and cropList.get((surfaceName, daytime, z, x , y-1), 0) & 0b0101), coord)
def base64Char(i):
assert(i >= 0 and i < 64) # Did you change image size? it could make this overflow
if i == 63:
return "/"
elif i == 62:
return "+"
elif i > 51:
return chr(i - 4)
elif i > 25:
return chr(i + 71)
return chr(i + 65)
def getBase64(number, isNight): #coordinate to 18 bit value (3 char base64)
number = int(number) + (2**16 if isNight else (2**17 + 2**16)) # IMAGES CURRENTLY CONTAIN 16 TILES. IF IMAGE SIZE CHANGES THIS WONT WORK ANYMORE. (It will for a long time until it wont)
return base64Char(number % 64) + base64Char(int(number / 64) % 64) + base64Char(int(number / 64 / 64))
def ref(
outFolder: Path,
timestamp: str = None,
surfaceReference: str = None,
daytimeReference: str = None,
basepath: Path = None,
args: Namespace = Namespace(),
):
psutil.Process(os.getpid()).nice(psutil.BELOW_NORMAL_PRIORITY_CLASS if os.name == 'nt' else 10)
workFolder = basepath if basepath else Path(__file__, "..", "..", "..", "script-output", "FactorioMaps").resolve()
topPath = Path(workFolder, outFolder)
dataPath = Path(topPath, "mapInfo.json")
maxthreads = args.refthreads if args.refthreads else args.maxthreads
pool = mp.Pool(processes=maxthreads)
with open(dataPath, "r", encoding="utf-8") as f:
data = json.load(f)
# copy to debug file
outFile = Path(topPath, "mapInfo.out.json")
if outFile.exists():
with outFile.open("r", encoding="utf-8") as mapInfoOutFile:
outdata = json.load(mapInfoOutFile)
else:
outdata = {}
if timestamp:
for i, mapObj in enumerate(data["maps"]):
if mapObj["path"] == timestamp:
new = i
break
else:
new = len(data["maps"]) - 1
changed = False
if "maps" not in outdata:
outdata["maps"] = {}
if str(new) not in outdata["maps"]:
outdata["maps"][str(new)] = { "surfaces": {} }
newMap = data["maps"][new]
allImageIndex = {}
allDayImages = {}
for daytime in ("day", "night"):
newComparedSurfaces = []
compareList = []
keepList = []
firstRemoveList = []
cropList = {}
didAnything = False
if daytime is None or daytime == daytimeReference:
for surfaceName, surface in newMap["surfaces"].items():
if (surfaceReference is None or surfaceName == surfaceReference) and daytime in surface and str(surface[daytime]) and (daytime is None or daytime == daytimeReference):
didAnything = True
z = surface["zoom"]["max"]
dayImages = []
newComparedSurfaces.append((surfaceName, daytime))
oldMapsList = []
for old in range(new):
if surfaceName in data["maps"][old]["surfaces"]:
oldMapsList.append(old)
def readCropList(path, combinePrevious):
with open(path, "r", encoding="utf-8") as f:
version = 2 if f.readline().rstrip('\n') == "v2" else 1
for line in f:
if version == 1:
split = line.rstrip("\n").split(" ", 5)
key = (surfaceName, daytime, str(z), int(split[0]), int(os.path.splitext(split[1])[0]))
value = split[4]
else:
split = line.rstrip("\n").split(" ", 5)
pathSplit = split[5].split("/", 5)
if pathSplit[3] != str(z):
continue
#(surfaceName, daytime, z, str(x+1), str(y+1) + ext)
key = (surfaceName, daytime, str(z), int(pathSplit[4]), int(os.path.splitext(pathSplit[5])[0]))
value = split[2]
cropList[key] = int(value, 16) | cropList.get(key, 0) if combinePrevious else int(value, 16)
for old in oldMapsList:
readCropList(os.path.join(topPath, "Images", data["maps"][old]["path"], surfaceName, daytime, "crop.txt"), False)
readCropList(os.path.join(topPath, "Images", newMap["path"], surfaceName, daytime, "crop.txt"), True)
oldImages = {}
for old in oldMapsList:
if surfaceName in data["maps"][old]["surfaces"] and daytime in surface and z == surface["zoom"]["max"]:
if surfaceName not in allImageIndex:
allImageIndex[surfaceName] = {}
path = os.path.join(topPath, "Images", data["maps"][old]["path"], surfaceName, daytime, str(z))
for x in os.listdir(path):
for y in os.listdir(os.path.join(path, x)):
oldImages[(x, y.replace(ext, outext))] = data["maps"][old]["path"]
if daytime != "day":
if not os.path.isfile(os.path.join(topPath, "Images", newMap["path"], surfaceName, "day", "ref.txt")):
print("WARNING: cannot find day surface to copy non-day surface from. running ref.py on night surfaces is not very accurate.")
else:
if args.verbose: print("found day surface, reuse results from ref.py from there")
with Path(topPath, "Images", newMap["path"], surfaceName, "day", "ref.txt").open("r", encoding="utf-8") as f:
for line in f:
dayImages.append(tuple(line.rstrip("\n").split(" ", 2)))
allDayImages[surfaceName] = dayImages
path = os.path.join(topPath, "Images", newMap["path"], surfaceName, daytime, str(z))
for x in os.listdir(path):
for y in os.listdir(os.path.join(path, x)):
if (x, os.path.splitext(y)[0]) in dayImages or (x, y.replace(ext, outext)) not in oldImages:
keepList.append((surfaceName, daytime, str(z), x, y))
elif (x, y.replace(ext, outext)) in oldImages:
compareList.append((oldImages[(x, y.replace(ext, outext))], surfaceName, daytime, str(z), x, y))
if not didAnything:
continue
if args.verbose: print("found %s new images" % len(keepList))
if len(compareList) > 0:
if args.verbose: print("comparing %s existing images" % len(compareList))
m = mp.Manager()
progressQueue = m.Queue()
#compare(compareList[0], treshold=treshold, basePath=os.path.join(topPath, "Images"), new=str(newMap["path"]), progressQueue=progressQueue)
workers = pool.map_async(partial(compare, basePath=os.path.join(topPath, "Images"), new=str(newMap["path"]), progressQueue=progressQueue), compareList, 128)
doneSize = 0
print("ref {:5.1f}% [{}]".format(0, " " * (tsize()[0]-15)), end="")
for i in range(len(compareList)):
progressQueue.get(True)
doneSize += 1
progress = float(doneSize) / len(compareList)
tsiz = tsize()[0]-15
print("\rref {:5.1f}% [{}{}]".format(round(progress * 100, 1), "=" * int(progress * tsiz), " " * (tsiz - int(progress * tsiz))), end="")
workers.wait()
resultList = workers.get()
newList = [x[1] for x in [x for x in resultList if x[0]]]
firstRemoveList += [x[1] for x in [x for x in resultList if not x[0]]]
if args.verbose: print("found %s changed in %s images" % (len(newList), len(compareList)))
keepList += newList
print("\rref {:5.1f}% [{}]".format(100, "=" * (tsize()[0]-15)))
if args.verbose: print("scanning %s chunks for neighbour cropping" % len(firstRemoveList))
resultList = pool.map(partial(neighbourScan, keepList=keepList, cropList=cropList), firstRemoveList, 64)
neighbourList = [x[1] for x in [x for x in resultList if x[0]]]
removeList = [x[1] for x in [x for x in resultList if not x[0]]]
if args.verbose: print("keeping %s neighbouring images" % len(neighbourList))
if args.verbose: print("deleting %s, keeping %s of %s existing images" % (len(removeList), len(keepList) + len(neighbourList), len(keepList) + len(neighbourList) + len(removeList)))
if args.verbose: print("removing identical images")
for x in removeList:
os.remove(os.path.join(topPath, "Images", newMap["path"], *x))
if args.verbose: print("creating render index")
for surfaceName, daytime in newComparedSurfaces:
z = surface["zoom"]["max"]
with Path(topPath, "Images", newMap["path"], surfaceName, daytime, "ref.txt").open("w", encoding="utf-8") as f:
for aList in (keepList, neighbourList):
for coord in aList:
if coord[0] == surfaceName and coord[1] == daytime and coord[2] == str(z):
f.write("%s %s\n" % (coord[3], os.path.splitext(coord[4])[0]))
if args.verbose: print("creating client index")
for aList in (keepList, neighbourList):
for coord in aList:
x = int(coord[3])
y = int(os.path.splitext(coord[4])[0])
if coord[0] not in allImageIndex:
allImageIndex[coord[0]] = {}
if coord[1] not in allImageIndex[coord[0]]:
allImageIndex[coord[0]][coord[1]] = {}
if y not in allImageIndex[coord[0]][coord[1]]:
allImageIndex[coord[0]][coord[1]][y] = [x]
elif x not in allImageIndex[coord[0]][coord[1]][y]:
allImageIndex[coord[0]][coord[1]][y].append(x)
if args.verbose: print("comparing renderboxes")
if "renderboxesCompared" not in outdata["maps"][str(new)]:
changed = True
outdata["maps"][str(new)]["renderboxesCompared"] = True
compareList = {}
totalCount = 0
for surfaceName, surface in newMap["surfaces"].items():
linksByPath = {}
for linkIndex, link in enumerate(surface["links"]):
if surfaceName not in outdata["maps"][str(new)]["surfaces"]:
outdata["maps"][str(new)]["surfaces"][surfaceName] = { "links": [] }
outdata["maps"][str(new)]["surfaces"][surfaceName]["links"].append({ "path": newMap["path"] })
for daytime in ("day", "night"):
if link["type"] == "link_renderbox_area" and (link["daynight"] or daytime == "day"):
if "zoom" in link:
path = os.path.join(link["toSurface"], daytime if link["daynight"] else "day", "renderboxes", str(surface["zoom"]["max"]), link["filename"])
if path not in linksByPath:
linksByPath[path] = [ (surfaceName, linkIndex) ]
else:
linksByPath[path].append((surfaceName, linkIndex))
totalCount += 1
for old in range(new-1, -1, -1):
if surfaceName in data["maps"][old]["surfaces"]:
for linkIndex, link in enumerate(data["maps"][old]["surfaces"][surfaceName]["links"]):
for daytime in ("day", "night"):
if link["type"] == "link_renderbox_area" and (link["daynight"] or daytime == "day"):
path = os.path.join(link["toSurface"], daytime if link["daynight"] else "day", "renderboxes", str(surface["zoom"]["max"]), link["filename"])
if path in linksByPath and path not in compareList:
oldPath = link["path"] if "path" in link else outdata["maps"][str(old)]["surfaces"][surfaceName]["links"][linkIndex]["path"]
compareList[path] = (path, oldPath, linksByPath[path])
compareList = compareList.values()
resultList = pool.map(partial(compareRenderbox, basePath=os.path.join(topPath, "Images"), new=str(newMap["path"])), compareList, 16)
count = 0
for (isDifferent, path, oldPath, links) in resultList:
if not isDifferent:
os.remove(path)
for (surfaceName, linkIndex) in links:
outdata["maps"][str(new)]["surfaces"][surfaceName]["links"][linkIndex] = { "path": oldPath }
else:
count += 1
if args.verbose: print("removed %s of %s compared renderboxes, found %s new" % (count, len(compareList), totalCount))
# compress and build string
for surfaceName, daytimeImageIndex in allImageIndex.items():
indexList = []
daytime = "night" if "night" in daytimeImageIndex and data["maps"][new]["surfaces"][surfaceName] and str(data["maps"][new]["surfaces"][surfaceName]["night"]) else "day"
if daytime not in daytimeImageIndex: # this is true if nothing changed
continue
surfaceImageIndex = daytimeImageIndex[daytime]
for y, xList in surfaceImageIndex.items():
string = getBase64(y, False)
isLastChangedImage = False
isLastNightImage = False
for x in range(min(xList), max(xList) + 2):
isChangedImage = x in xList #does the image exist at all?
isNightImage = daytime == "night" and (str(x), str(y)) not in allDayImages[surfaceName] #is this image only in night?
if isLastChangedImage != isChangedImage or (isChangedImage and isLastNightImage != isNightImage): #differential encoding
string += getBase64(x, isNightImage if isChangedImage else isLastNightImage)
isLastChangedImage = isChangedImage
isLastNightImage = isNightImage
indexList.append(string)
if surfaceName not in outdata["maps"][str(new)]["surfaces"]:
outdata["maps"][str(new)]["surfaces"][surfaceName] = {}
outdata["maps"][str(new)]["surfaces"][surfaceName]["chunks"] = '='.join(indexList)
if len(indexList) > 0:
changed = True
if changed:
if args.verbose: print("writing mapInfo.out.json")
with outFile.open("w+", encoding="utf-8") as f:
json.dump(outdata, f)
if args.verbose: print("deleting empty folders")
for curdir, subdirs, files in os.walk(Path(topPath, timestamp, surfaceReference, daytimeReference)):
if len(subdirs) == 0 and len(files) == 0:
os.rmdir(curdir)