summaryrefslogtreecommitdiffstats
path: root/src/MinedMap.cpp
blob: 8cf9393d6a3b9be50bb7a5fd97c8047b53d78214 (plain)
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
/*
  Copyright (c) 2015, Matthias Schiffer <mschiffer@universe-factory.net>
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include "Info.hpp"
#include "PNG.hpp"
#include "World/Level.hpp"
#include "World/Region.hpp"

#include <cerrno>
#include <climits>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <sstream>
#include <system_error>

#include <sys/types.h>

#include <arpa/inet.h>
#include <dirent.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <unistd.h>


namespace MinedMap {

static const size_t DIM = World::Region::SIZE*World::Chunk::SIZE;


static inline bool operator<(const struct timespec &t1, const struct timespec &t2) {
	return (t1.tv_sec < t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec < t2.tv_nsec));
}

static inline bool operator<=(const struct timespec &t1, const struct timespec &t2) {
	return (t1.tv_sec < t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec <= t2.tv_nsec));
}

static inline bool operator>(const struct timespec &t1, const struct timespec &t2) {
	return (t1.tv_sec > t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec > t2.tv_nsec));
}

static inline bool operator>=(const struct timespec &t1, const struct timespec &t2) {
	return (t1.tv_sec >= t2.tv_sec || (t1.tv_sec == t2.tv_sec && t1.tv_nsec >= t2.tv_nsec));
}

static inline bool operator==(const struct timespec &t1, const struct timespec &t2) {
	return (t1.tv_sec == t2.tv_sec && t1.tv_nsec == t2.tv_nsec);
}


static void addChunk(uint32_t image[DIM*DIM], uint8_t lightmap[2*DIM*DIM], size_t X, size_t Z, const World::Chunk *chunk) {
	World::Chunk::Blocks layer = chunk->getTopLayer();

	for (size_t x = 0; x < World::Chunk::SIZE; x++) {
		for (size_t z = 0; z < World::Chunk::SIZE; z++) {
			size_t i = (Z*World::Chunk::SIZE+z)*DIM + X*World::Chunk::SIZE+x;
			const World::Block &block = layer.blocks[x][z];

			image[i] = htonl(block.getColor());
			lightmap[2*i+1] = (1 - block.getBlockLight()/15.f)*128;
		}
	}
}

static void writeImage(const std::string &output, const uint8_t *data, bool colored, const struct timespec *t) {
	const std::string tmpfile = output + ".tmp";

	try {
		PNG::write(tmpfile.c_str(), data, DIM, DIM, colored);

		struct timespec times[2] = {*t, *t};
		if (utimensat(AT_FDCWD, tmpfile.c_str(), times, 0) < 0)
			std::fprintf(stderr, "Warning: failed to set utime on %s: %s\n", tmpfile.c_str(), std::strerror(errno));

		if (std::rename(tmpfile.c_str(), output.c_str()) < 0) {
			std::fprintf(stderr, "Unable to save %s: %s\n", output.c_str(), std::strerror(errno));
			unlink(tmpfile.c_str());
		}
	}
	catch (const std::exception& ex) {
		unlink(tmpfile.c_str());
		throw;
	}
}

static void doRegion(const std::string &input, const std::string &output, const std::string &output_light) {
	struct stat instat, outstat;

	if (stat(input.c_str(), &instat) < 0) {
		std::fprintf(stderr, "Unable to stat %s: %s\n", input.c_str(), std::strerror(errno));
		return;
	}

	if (stat(output.c_str(), &outstat) == 0) {
		if (instat.st_mtim <= outstat.st_mtim) {
			std::printf("%s is up-to-date.\n", output.c_str());
			return;
		}
	}

	std::printf("Generating %s from %s...\n", output.c_str(), input.c_str());

	try {
		std::unique_ptr<uint32_t[]> image(new uint32_t[DIM*DIM]);
		std::memset(image.get(), 0, 4*DIM*DIM);

		std::unique_ptr<uint8_t[]> lightmap(new uint8_t[2*DIM*DIM]);
		std::memset(lightmap.get(), 0, 2*DIM*DIM);

		World::Region::visitChunks(input.c_str(), [&] (size_t X, size_t Z, const World::Chunk *chunk) { addChunk(image.get(), lightmap.get(), X, Z, chunk); });

		writeImage(output, reinterpret_cast<const uint8_t*>(image.get()), true, &instat.st_mtim);
		writeImage(output_light, lightmap.get(), false, &instat.st_mtim);
	}
	catch (const std::exception& ex) {
		std::fprintf(stderr, "Failed to generate %s: %s\n", output.c_str(), ex.what());
	}
}

template<typename T>
static std::string format(const T &v) {
	std::ostringstream s;

	s << v;
	return s.str();
}

static std::string formatTileName(int x, int z, const std::string &ext) {
	std::ostringstream s;

	s << "r." << x << "." << z << "." << ext;
	return s.str();
}

static bool checkFilename(const char *name, int *x, int *z) {
	if (std::sscanf(name, "r.%i.%i.mca", x, z) != 2)
		return false;

	return (std::string(name) == formatTileName(*x, *z, "mca"));
}

static void makeDir(const std::string &name) {
	if (mkdir(name.c_str(), 0777) < 0 && errno != EEXIST)
		throw std::system_error(errno, std::generic_category(), "unable to create directory " + name);
}

static bool makeMipmap(const std::string &dir, size_t level, size_t x, size_t z, bool colored) {
	bool ret = false;

	std::string indir = dir + "/" + format(level-1) + "/";
	std::string outdir = dir + "/" + format(level) + "/";

	const std::string nw_str = indir + formatTileName(x*2, z*2, "png");
	const std::string ne_str = indir + formatTileName(x*2+1, z*2, "png");
	const std::string sw_str = indir + formatTileName(x*2, z*2+1, "png");
	const std::string se_str = indir + formatTileName(x*2+1, z*2+1, "png");

	const char *nw = nw_str.c_str();
	const char *ne = ne_str.c_str();
	const char *sw = sw_str.c_str();
	const char *se = se_str.c_str();

	struct timespec t;
	struct stat s;
	size_t count = 0;
	for (auto name : {&nw, &ne, &sw, &se}) {
		if (stat(*name, &s) < 0) {
			*name = nullptr;
			continue;
		}

		if (!count || s.st_mtim > t)
			t = s.st_mtim;

		count++;
	}

	std::string output = outdir + formatTileName(x, z, "png");
	if (stat(output.c_str(), &s) == 0) {
		ret = true;

		if (!count || t <= s.st_mtim)
			return ret;
	}

	if (!count)
		return ret;

	const std::string tmpfile = output + ".tmp";

	try {
		PNG::mipmap(tmpfile.c_str(), DIM, DIM, colored, nw, ne, sw, se);

		struct timespec times[2] = {t, t};
		if (utimensat(AT_FDCWD, tmpfile.c_str(), times, 0) < 0)
			std::fprintf(stderr, "Warning: failed to set utime on %s: %s\n", tmpfile.c_str(), std::strerror(errno));

		if (std::rename(tmpfile.c_str(), output.c_str()) < 0) {
			std::fprintf(stderr, "Unable to save %s: %s\n", output.c_str(), std::strerror(errno));
			unlink(tmpfile.c_str());
		}
	}
	catch (const std::exception& ex) {
		unlink(tmpfile.c_str());
		throw;
	}

	return true;
}

static void makeMipmaps(const std::string &dir, Info *info) {
	int minX, maxX, minZ, maxZ;
	std::tie(minX, maxX, minZ, maxZ) = info->getBounds(0);

	while (minX < -1 || maxX > 0 || minZ < -1 || maxZ > 0) {
		info->addMipmapLevel();
		size_t level = info->getMipmapLevel();
		makeDir(dir + "/map/" + format(level));
		makeDir(dir + "/light/" + format(level));

		minX = (minX-1)/2;
		maxX = maxX/2;
		minZ = (minZ-1)/2;
		maxZ = maxZ/2;

		for (int x = minX; x <= maxX; x++) {
			for (int z = minZ; z <= maxZ; z++) {
				if (makeMipmap(dir + "/map", level, x, z, true))
					info->addRegion(x, z, level);

				makeMipmap(dir + "/light", level, x, z, false);
			}
		}
	}
}

}


int main(int argc, char *argv[]) {
	using namespace MinedMap;


	if (argc < 3) {
		std::fprintf(stderr, "Usage: %s <data directory> <output directory>\n", argv[0]);
		return 1;
	}

	std::string inputdir(argv[1]);
	std::string regiondir = inputdir + "/region";

	std::string outputdir(argv[2]);

	makeDir(outputdir + "/map");
	makeDir(outputdir + "/map/0");
	makeDir(outputdir + "/light");
	makeDir(outputdir + "/light/0");

	DIR *dir = opendir(regiondir.c_str());
	if (!dir) {
		std::fprintf(stderr, "Unable to read input directory: %s\n", std::strerror(errno));
		return 1;
	}

	Info info;

	struct dirent *entry;
	while ((entry = readdir(dir)) != nullptr) {
		int x, z;
		if (!checkFilename(entry->d_name, &x, &z))
			continue;

		info.addRegion(x, z, 0);

		std::string name(entry->d_name), outname = name.substr(0, name.length()-3) + "png";
		doRegion(regiondir + "/" + name, outputdir + "/map/0/" + outname, outputdir + "/light/0/" + outname);
	}

	closedir(dir);

	World::Level level((inputdir + "/level.dat").c_str());
	info.setSpawn(level.getSpawn());

	makeMipmaps(outputdir, &info);

	info.writeJSON((outputdir + "/info.json").c_str());

	return 0;
}