134 lines
3.5 KiB
Python
Executable file
134 lines
3.5 KiB
Python
Executable file
#! /usr/bin/python
|
|
# Copyright (C) 2018-2019 Merspieler, merspieler _at_ airmail.cc
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License as
|
|
# published by the Free Software Foundation; either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
import os
|
|
import sys
|
|
import math
|
|
import re
|
|
|
|
argc = len(sys.argv)
|
|
i = 1
|
|
first = 1
|
|
while i < argc:
|
|
if sys.argv[i] == "-p" or sys.argv[i] == "--progress":
|
|
try:
|
|
with open("projects/worldbuild/done") as f:
|
|
lines = f.readlines()
|
|
for line in lines:
|
|
match = re.findall("(-?[0-9]{1,3}\.?[0-9]{0,4})_-?[0-9]{1,3}\.?[0-9]{0,4}_-?[0-9]{1,3}\.?[0-9]{0,4}_(-?[0-9]{1,3}\.?[0-9]{0,4})", line)
|
|
if match != []:
|
|
|
|
n = float(match[0][1])
|
|
w = float(match[0][0])
|
|
|
|
wm = w % 10
|
|
nm = n % 10
|
|
|
|
if nm == 0:
|
|
wm += 1
|
|
|
|
tile = wm * 10 + nm
|
|
|
|
# print("Worldbuild " + world + "% complete")
|
|
print("Current tile " + str(tile) + "% complete")
|
|
sys.exit(0)
|
|
else:
|
|
print("Unable to get progress")
|
|
sys.exit(1)
|
|
except IOError:
|
|
print("Unable to get progress")
|
|
sys.exit(1)
|
|
elif sys.argv[i] == "-h" or sys.argv[i] == "--help":
|
|
print("usage: build <project> [OPTIONS]")
|
|
print("Builds the tiles with osm2city")
|
|
print("")
|
|
print("OPTIONS")
|
|
print(" -h, --help Shows this help and exit")
|
|
print(" -p, --progress Shows progress and exit")
|
|
sys.exit(0)
|
|
else:
|
|
if first == 1:
|
|
first = 0
|
|
pbf_path = sys.argv[i]
|
|
else:
|
|
print("Unknown option " + sys.argv[i])
|
|
sys.exit(1)
|
|
i += 1
|
|
|
|
# Expecting project
|
|
os.system("mkdir -p projects/worldbuild/output/error")
|
|
|
|
def build_tile(name, west, south, east, north):
|
|
if west < 0:
|
|
west = "*" + str(west)
|
|
else:
|
|
west = str(west)
|
|
south = str(south)
|
|
east = str(east)
|
|
north = str(north)
|
|
|
|
os.system("./read-pbf worldbuild " + pbf_path + name + ".osm.pbf")
|
|
os.system('echo "bounds=' + west + "_" + south + "_" + east + "_" + north + '" > projects/settings')
|
|
os.system("./build worldbuild -z")
|
|
|
|
def after_build(name):
|
|
if os.path.isfile("projects/worldbuild/osm2city-exceptions.log"):
|
|
os.system("mv projects/worldbuild/osm2city-exceptions.log projects/worldbuild/output/error/" + name + ".exceptions.log")
|
|
else:
|
|
os.system("mv projects/worldbuild/worldbuild.zip projects/worldbuild/output/" + name + ".zip")
|
|
os.system("rm -r projects/worldbuild/scenery/*")
|
|
os.system("./clear-cache-files worldbuild")
|
|
|
|
def prepare():
|
|
os.system("./delete-db worldbuild")
|
|
os.system("./create-db worldbuild")
|
|
|
|
def run_all(name, w, s, e, n):
|
|
prepare()
|
|
build_tile(name, w, s, e, n)
|
|
after_build(name)
|
|
|
|
def norm(num, length):
|
|
num = str(num)
|
|
while len(num) < length:
|
|
num = "0" + num
|
|
return num
|
|
|
|
# Build poles first
|
|
run_all("n-pole", -180, 80, 180, 90)
|
|
run_all("s-pole", -180, -90, 180, -80)
|
|
|
|
for i in range(-8, 8):
|
|
i *= 10
|
|
for j in range(-18, 18):
|
|
j *= 10
|
|
if i >= 0:
|
|
ns = "n"
|
|
else:
|
|
ns = "s"
|
|
if j >= 0:
|
|
ew = "e"
|
|
else:
|
|
ew = "w"
|
|
|
|
name = ew + norm(j, 3) + ns + norm(i, 2)
|
|
|
|
run_all(name, j, i, j + 10, i + 10)
|
|
|
|
|
|
|
|
|