File: map_object_info.cc

package info (click to toggle)
widelands 1%3A19%2Brepack-6
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 371,172 kB
  • sloc: cpp: 108,458; ansic: 18,695; python: 5,155; sh: 487; xml: 460; makefile: 229
file content (538 lines) | stat: -rw-r--r-- 17,353 bytes parent folder | download | duplicates (2)
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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
/*
 * Copyright (C) 2016 by the Widelands Development Team
 *
 * 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 2
 * 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., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 */

#include <memory>

#include <SDL.h>
#include <boost/algorithm/string.hpp>
#include <boost/format.hpp>
#include <boost/lexical_cast.hpp>

#include "base/i18n.h"
#include "base/log.h"
#include "base/macros.h"
#include "config.h"
#include "graphic/graphic.h"
#include "io/filesystem/filesystem.h"
#include "io/filesystem/layered_filesystem.h"
#include "io/filewrite.h"
#include "logic/editor_game_base.h"
#include "logic/map_objects/tribes/tribes.h"
#include "logic/map_objects/world/world.h"
#include "sound/sound_handler.h"

using namespace Widelands;

namespace {

/*
 ==========================================================
 SETUP
 ==========================================================
 */

// Setup the static objects Widelands needs to operate and initializes systems.
std::unique_ptr<FileSystem> initialize(const std::string& output_path) {
	i18n::set_locale("en");

	if (SDL_Init(SDL_INIT_VIDEO) != 0) {
		throw wexception("Unable to initialize SDL: %s", SDL_GetError());
	}

	g_fs = new LayeredFileSystem();
	g_fs->add_file_system(&FileSystem::create(INSTALL_DATADIR));

	std::unique_ptr<FileSystem> out_filesystem(&FileSystem::create(output_path));

	// We don't really need graphics or sound here, but we will get error messages
	// when they aren't initialized
	g_gr = new Graphic();
	g_gr->initialize(Graphic::TraceGl::kNo, 1, 1, false);

	g_sound_handler.init();
	g_sound_handler.nosound_ = true;
	return out_filesystem;
}

// Cleanup before program end
void cleanup() {
	g_sound_handler.shutdown();

	if (g_gr) {
		delete g_gr;
		g_gr = nullptr;
	}

	if (g_fs) {
		delete g_fs;
		g_fs = nullptr;
	}

	SDL_Quit();
}

/*
 ==========================================================
 SPECIALIZED FILEWRITE
 ==========================================================
 */

// Defines some convenience writing functions for the JSON format
class JSONFileWrite : public FileWrite {
public:
	JSONFileWrite() : FileWrite(), level_(0) {
	}

	void write_string(const std::string& s, bool use_indent = false) {
		std::string writeme = s;
		if (use_indent) {
			for (int i = 0; i < level_; ++i) {
				writeme = (boost::format("   %s") % writeme).str();
			}
		}
		data(writeme.c_str(), writeme.size());
	}
	void write_key(const std::string& key) {
		write_string((boost::format("\"%s\":\n") % key).str(), true);
	}
	void write_value_string(const std::string& quoted_value) {
		write_string((boost::format("\"%s\"") % quoted_value).str(), true);
	}
	void write_key_value(const std::string& key, const std::string& quoted_value) {
		write_string((boost::format("\"%s\": %s") % key % quoted_value).str(), true);
	}
	void write_key_value_string(const std::string& key, const std::string& value) {
		std::string quoted_value = value;
		boost::replace_all(quoted_value, "\"", "\\\"");
		write_key_value(key, "\"" + value + "\"");
	}
	void write_key_value_int(const std::string& key, const int value) {
		write_key_value(key, boost::lexical_cast<std::string>(value));
	}
	void open_brace() {
		write_string("{\n", true);
		++level_;
	}
	// JSON hates a final comma. This defaults to having NO comma.
	void close_brace(bool precede_newline = false, int current = 0, int total = 0) {
		--level_;
		if (precede_newline) {
			write_string("\n");
		}
		if (current < total - 1) {
			write_string("},\n", true);
		} else {
			write_string("}", true);
		}
	}
	void open_array(const std::string& name) {
		write_string((boost::format("\"%s\":[\n") % name).str(), true);
		++level_;
	}
	// JSON hates a final comma. This defaults to having NO comma.
	void close_array(int current = 0, int total = 0) {
		--level_;
		write_string("\n");
		if (current < total - 1) {
			write_string("],\n", true);
		} else {
			write_string("]\n", true);
		}
	}
	// JSON hates a final comma. This defaults to having a comma.
	void close_element(int current = -2, int total = 0) {
		if (current < total - 1) {
			write_string(",\n");
		}
	}

private:
	int level_;
};

/*
 ==========================================================
 BUILDINGS
 ==========================================================
 */

void write_buildings(const TribeDescr& tribe, EditorGameBase& egbase, FileSystem* out_filesystem) {

	log("\n==================\nWriting buildings:\n==================\n");
	JSONFileWrite fw;
	fw.open_brace();             // Main
	fw.open_array("buildings");  // Buildings

	// We don't want any partially finished buildings
	std::vector<const BuildingDescr*> buildings;
	for (const DescriptionIndex& index : tribe.buildings()) {
		const BuildingDescr* building = tribe.get_building_descr(index);
		if (building->type() != MapObjectType::CONSTRUCTIONSITE &&
		    building->type() != MapObjectType::DISMANTLESITE) {
			buildings.push_back(building);
		}
	}

	// Now write
	for (size_t i = 0; i < buildings.size(); ++i) {
		const BuildingDescr& building = *buildings[i];
		log(" %s", building.name().c_str());
		fw.open_brace();  // Building

		fw.write_key_value_string("name", building.name());
		fw.close_element();
		fw.write_key_value_string("descname", building.descname());
		fw.close_element();
		fw.write_key_value_string("icon", building.representative_image_filename());
		fw.close_element();

		// Conditional stuff in between, so we won't run into trouble with the commas.

		// Buildcost
		if (building.is_buildable()) {
			fw.open_array("buildcost");  // Buildcost
			size_t buildcost_counter = 0;
			for (WareAmount buildcost : building.buildcost()) {
				const WareDescr& ware = *tribe.get_ware_descr(buildcost.first);
				fw.open_brace();  // Buildcost
				fw.write_key_value_string("name", ware.name());
				fw.close_element();
				fw.write_key_value_int("amount", buildcost.second);
				fw.close_brace(true, buildcost_counter, building.buildcost().size());  // Buildcost
				++buildcost_counter;
			}
			fw.close_array(1, 5);  // Buildcost - we need a comma
		}

		if (building.is_enhanced()) {
			fw.write_key_value_string(
			   "enhanced", tribe.get_building_descr(building.enhanced_from())->name());
			fw.close_element();
		}

		if (building.enhancement() != INVALID_INDEX) {
			fw.write_key_value_string(
			   "enhancement", tribe.get_building_descr(building.enhancement())->name());
			fw.close_element();
		}

		if (upcast(ProductionSiteDescr const, productionsite, &building)) {
			// Produces
			if (productionsite->output_ware_types().size() > 0) {
				fw.open_array("produced_wares");  // Produces
				size_t produces_counter = 0;
				for (DescriptionIndex ware_index : productionsite->output_ware_types()) {
					fw.write_value_string(tribe.get_ware_descr(ware_index)->name());
					fw.close_element(produces_counter, productionsite->output_ware_types().size());
					++produces_counter;
				}
				fw.close_array(1, 5);  // Produces - we need a comma
			}
			if (productionsite->output_worker_types().size() > 0) {
				fw.open_array("produced_workers");  // Produces
				size_t produces_counter = 0;
				for (DescriptionIndex worker_index : productionsite->output_worker_types()) {
					fw.write_value_string(tribe.get_worker_descr(worker_index)->name());
					fw.close_element(produces_counter, productionsite->output_worker_types().size());
					++produces_counter;
				}
				fw.close_array(1, 5);  // Produces - we need a comma
			}

			// Consumes
			if (productionsite->inputs().size() > 0) {
				fw.open_array("stored_wares");  // Consumes
				size_t consumes_counter = 0;
				for (WareAmount input : productionsite->inputs()) {
					const WareDescr& ware = *tribe.get_ware_descr(input.first);
					fw.open_brace();  // Input
					fw.write_key_value_string("name", ware.name());
					fw.close_element();
					fw.write_key_value_int("amount", input.second);
					fw.close_brace(true, consumes_counter, productionsite->inputs().size());  // Input
					++consumes_counter;
				}
				fw.close_array(1, 5);  // Consumes - we need a comma
			}

			fw.open_array("workers");  // Workers
			size_t worker_counter = 0;
			for (WareAmount input : productionsite->working_positions()) {
				const WorkerDescr& worker = *tribe.get_worker_descr(input.first);
				fw.open_brace();  // Worker
				fw.write_key_value_string("name", worker.name());
				fw.close_element();
				fw.write_key_value_int("amount", input.second);
				fw.close_brace(
				   true, worker_counter, productionsite->working_positions().size());  // Worker
				++worker_counter;
			}
			fw.close_array(1, 5);  // Workers - we need a comma
		} else if (upcast(MilitarySiteDescr const, militarysite, &building)) {
			fw.write_key_value_int("conquers", militarysite->get_conquers());
			fw.close_element();
			fw.write_key_value_int("max_soldiers", militarysite->get_max_number_of_soldiers());
			fw.close_element();
			fw.write_key_value_int("heal_per_second", militarysite->get_heal_per_second());
			fw.close_element();
		}

		switch (building.type()) {
		case MapObjectType::PRODUCTIONSITE:
			fw.write_key_value_string("type", "productionsite");
			break;
		case MapObjectType::WAREHOUSE:
			fw.write_key_value_string("type", "warehouse");
			break;
		case MapObjectType::MILITARYSITE:
			fw.write_key_value_string("type", "militarysite");
			break;
		case MapObjectType::TRAININGSITE:
			fw.write_key_value_string("type", "trainingsite");
			break;
		default:
			NEVER_HERE();
		}
		fw.close_element();

		// Size
		if (building.type() == MapObjectType::WAREHOUSE && !building.is_buildable() &&
		    !building.is_enhanced()) {
			fw.write_key_value_string("size", "headquarters");
		} else if (building.get_ismine()) {
			fw.write_key_value_string("size", "mine");
		} else if (building.get_isport()) {
			fw.write_key_value_string("size", "port");
		} else {
			fw.write_key_value_string("size", BaseImmovable::size_to_string(building.get_size()));
		}
		fw.close_element();

		// Helptext
		try {
			std::unique_ptr<LuaTable> table(
			   egbase.lua().run_script("tribes/scripting/mapobject_info/building_helptext.lua"));
			std::unique_ptr<LuaCoroutine> cr(table->get_coroutine("func"));
			cr->push_arg(building.helptext_script());
			cr->resume();
			const std::string help_text = cr->pop_string();
			fw.write_key_value_string("helptext", help_text);
		} catch (LuaError& err) {
			fw.write_key_value_string("helptext", err.what());
		}

		fw.close_brace(true, i, buildings.size());  // Building
	}
	fw.close_array();  // Buildings
	fw.close_brace();  // Main
	fw.write(*out_filesystem, (boost::format("%s_buildings.json") % tribe.name()).str().c_str());
	log("\n");
}

/*
 ==========================================================
 WARES
 ==========================================================
 */

void write_wares(const TribeDescr& tribe, EditorGameBase& egbase, FileSystem* out_filesystem) {
	log("\n===============\nWriting wares:\n===============\n");
	JSONFileWrite fw;
	fw.open_brace();  // Main

	fw.open_array("wares");  // Wares
	size_t counter = 0;
	const size_t no_of_wares = tribe.wares().size();
	for (DescriptionIndex ware_index : tribe.wares()) {
		const WareDescr& ware = *tribe.get_ware_descr(ware_index);
		log(" %s", ware.name().c_str());
		fw.open_brace();
		fw.write_key_value_string("name", ware.name());
		fw.close_element();
		fw.write_key_value_string("descname", ware.descname());
		fw.close_element();
		fw.write_key_value_string("icon", ware.icon_filename());
		fw.close_element();

		// Helptext
		try {
			std::unique_ptr<LuaTable> table(
			   egbase.lua().run_script("tribes/scripting/mapobject_info/ware_helptext.lua"));
			std::unique_ptr<LuaCoroutine> cr(table->get_coroutine("func"));
			cr->push_arg(tribe.name());
			cr->push_arg(ware.helptext_script());
			cr->resume();
			const std::string help_text = cr->pop_string();
			fw.write_key_value_string("helptext", help_text);
		} catch (LuaError& err) {
			fw.write_key_value_string("helptext", err.what());
		}
		fw.close_brace(true, counter, no_of_wares);  // Ware
		++counter;
	}
	fw.close_array();  // Wares

	fw.close_brace();  // Main
	fw.write(*out_filesystem, (boost::format("%s_wares.json") % tribe.name()).str().c_str());
	log("\n");
}

/*
 ==========================================================
 WORKERS
 ==========================================================
 */

void write_workers(const TribeDescr& tribe, EditorGameBase& egbase, FileSystem* out_filesystem) {
	log("\n================\nWriting workers:\n================\n");
	JSONFileWrite fw;
	fw.open_brace();  // Main

	fw.open_array("workers");  // Workers
	size_t counter = 0;
	const size_t no_of_workers = tribe.workers().size();
	for (DescriptionIndex worker_index : tribe.workers()) {
		const WorkerDescr& worker = *tribe.get_worker_descr(worker_index);
		log(" %s", worker.name().c_str());
		fw.open_brace();
		fw.write_key_value_string("name", worker.name());
		fw.close_element();
		fw.write_key_value_string("descname", worker.descname());
		fw.close_element();
		fw.write_key_value_string("icon", worker.icon_filename());
		fw.close_element();

		// Helptext
		try {
			std::unique_ptr<LuaTable> table(
			   egbase.lua().run_script("tribes/scripting/mapobject_info/worker_helptext.lua"));
			std::unique_ptr<LuaCoroutine> cr(table->get_coroutine("func"));
			cr->push_arg(worker.helptext_script());
			cr->resume();
			const std::string help_text = cr->pop_string();
			fw.write_key_value_string("helptext", help_text);
		} catch (LuaError& err) {
			fw.write_key_value_string("helptext", err.what());
		}

		if (worker.becomes() != INVALID_INDEX) {
			fw.close_element();
			const WorkerDescr& becomes = *tribe.get_worker_descr(worker.becomes());
			fw.write_key("becomes");
			fw.open_brace();
			fw.write_key_value_string("name", becomes.name());
			fw.close_element();
			fw.write_key_value_int("experience", worker.get_needed_experience());
			fw.close_brace(true);
		}
		fw.close_brace(true, counter, no_of_workers);  // Worker
		++counter;
	}
	fw.close_array();  // Workers

	fw.close_brace();  // Main
	fw.write(*out_filesystem, (boost::format("%s_workers.json") % tribe.name()).str().c_str());
	log("\n");
}

/*
 ==========================================================
 TRIBES
 ==========================================================
 */

void add_tribe_info(const TribeBasicInfo& tribe_info, JSONFileWrite* fw) {
	fw->write_key_value_string("name", tribe_info.name);
	fw->close_element();
	fw->write_key_value_string("descname", tribe_info.descname);
	fw->close_element();
	fw->write_key_value_string("author", tribe_info.author);
	fw->close_element();
	fw->write_key_value_string("tooltip", tribe_info.tooltip);
	fw->close_element();
	fw->write_key_value_string("icon", tribe_info.icon);
}

void write_tribes(EditorGameBase& egbase, FileSystem* out_filesystem) {
	JSONFileWrite fw;
	fw.open_brace();          // Main
	fw.open_array("tribes");  // Tribes

	/// Tribes
	egbase.mutable_tribes()->postload();  // Make sure that all values have been set.
	const Tribes& tribes = egbase.tribes();

	std::vector<TribeBasicInfo> tribeinfos = tribes.get_all_tribeinfos();
	for (size_t tribe_index = 0; tribe_index < tribeinfos.size(); ++tribe_index) {
		const TribeBasicInfo& tribe_info = tribeinfos[tribe_index];
		log("\n\n=========================\nWriting tribe: %s\n=========================\n",
		    tribe_info.name.c_str());

		fw.open_brace();  // TribeDescr
		add_tribe_info(tribe_info, &fw);
		fw.close_brace(true, tribe_index, tribeinfos.size());  // TribeDescr

		// These go in separate files

		JSONFileWrite fw_tribe;
		fw_tribe.open_brace();  // TribeDescr
		add_tribe_info(tribe_info, &fw_tribe);
		fw_tribe.close_brace(true);  // TribeDescr
		fw_tribe.write(
		   *out_filesystem, (boost::format("tribe_%s.json") % tribe_info.name).str().c_str());

		const TribeDescr& tribe = *tribes.get_tribe_descr(tribes.tribe_index(tribe_info.name));

		write_buildings(tribe, egbase, out_filesystem);
		write_wares(tribe, egbase, out_filesystem);
		write_workers(tribe, egbase, out_filesystem);
	}
	fw.close_array();  // Tribes
	fw.close_brace();  // Main
	fw.write(*out_filesystem, "tribes.json");
}

}  // namespace

/*
 ==========================================================
 MAIN
 ==========================================================
 */

int main(int argc, char** argv) {
	if (argc != 2) {
		log("Usage: %s <existing-output-path>\n", argv[0]);
		return 1;
	}

	const std::string output_path = argv[argc - 1];

	try {
		std::unique_ptr<FileSystem> out_filesystem = initialize(output_path);
		EditorGameBase egbase(nullptr);
		write_tribes(egbase, out_filesystem.get());
	} catch (std::exception& e) {
		log("Exception: %s.\n", e.what());
		cleanup();
		return 1;
	}
	cleanup();
	return 0;
}