summaryrefslogtreecommitdiffstats
path: root/AnvilStats/AnvilStats.cpp
blob: 1682f76f01015ce100f0e3156abbfa14e42a2bdf (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

// AnvilStats.cpp

// Implements the main app entrypoint

#include "Globals.h"
#include "Statistics.h"
#include "Processor.h"





int main(int argc, char * argv[])
{
	if (argc < 2)
	{
		LOG("Usage: %s <method number> [<world folder>]", argv[0]);
		LOG("\nNo method number present, aborting.");
		return -1;
	}
	
	AString WorldFolder;
	if (argc > 2)
	{
		WorldFolder = argv[2];
	}
	else
	{
		WorldFolder = "." + cFile::PathSeparator;
	}
	
	cCallbackFactory * Factory = NULL;
	switch (atol(argv[1]))
	{
		case 0: Factory = new cStatisticsFactory; break;
		default:
		{
			LOG("Unknown method \"%s\", aborting.", argv[1]);
			return -2;
		}
	}
	cProcessor Processor;
	Processor.ProcessWorld(WorldFolder, *Factory);
	
	delete Factory;
	
	LOG("Done");
}