summaryrefslogtreecommitdiffstats
path: root/Tools/BlockZapper/BlockZapper.cpp
blob: 9db9e3c990e1b18550f9734847aac97fcae95130 (plain) (blame)
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

// BlockZapper.cpp

// Implements the main app entrypoint

#include "Globals.h"

#include <fstream>

#include "Regions.h"
#include "Zapper.h"





#ifdef _MSC_VER
	// Under MSVC, link to WinSock2 (needed by FastNBT's byteswapping)
	#pragma comment(lib, "ws2_32.lib")
#endif





void ShowHelp(const char * a_ProgramFullName)
{
	AString ProgramName(a_ProgramFullName);
	size_t idx = ProgramName.rfind(cFile::PathSeparator);
	if (idx != AString::npos)
	{
		ProgramName.erase(0, idx + 1);
	}
	printf("Tool written by _Xoft(o), code is public domain.\n");
	printf("Usage:\n");
	printf("%s [-w <MCAFolder>]\n", ProgramName.c_str());
	printf("Zaps blocks and / or entities in specified regions.\n");
	printf("Regions are read from stdin, the format is:\n");
	printf("  x1 x2 y1 y2 z1 z2 [B|E|BE]\n");
	printf("B or no specifier zaps blocks only\n");
	printf("E zaps entities only\n");
	printf("BE zaps blocks and entities\n");
	printf("MCA files are searched in the <MCAFolder>; if not specified, in the current folder.\n");
}





int main(int argc, char * argv[])
{
	new cMCLogger;  // Create a new logger, it will assign itself as the main logger instance

	AString MCAFolder = ".";
	for (int i = 1; i < argc; i++)
	{
		if (strcmp(argv[i], "-w") == 0)
		{
			if (i < argc - 1)
			{
				MCAFolder = argv[i + 1];
			}
			i++;
		}
		else if (
			(strcmp(argv[i], "help") == 0) ||
			(strcmp(argv[i], "-?") == 0) ||
			(strcmp(argv[i], "/?") == 0) ||
			(strcmp(argv[i], "-h") == 0) ||
			(strcmp(argv[i], "--help") == 0)
		)
		{
			ShowHelp(argv[0]);
			return 0;
		}
	}

	cRegions Regions;

	/*
	// DEBUG: Read input from a file instead of stdin:
	std::fstream fs("test_in.txt");
	Regions.Read(fs);
	//*/

	Regions.Read(std::cin);

	cZapper Zapper(MCAFolder);
	Zapper.ZapRegions(Regions.GetAll());

	LOGINFO("Done");
	return 0;
} ;