summaryrefslogtreecommitdiffstats
path: root/kgeography/src/script.cpp
blob: bae8e3c8a1d7a6507ce4d12a5400e1450baae03c (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
/***************************************************************************
 *   Copyright (C) 2004 by Albert Astals Cid                               *
 *   tsdgeos@terra.es                                                      *
 *                                                                         *
 *   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.                                   *
 ***************************************************************************/

#include <stdio.h>

#include <tqdir.h>
#include <tqdom.h>
#include <tqstring.h>
#include <tqstringlist.h>

int main(int argc, char *argv[])
{
	if (argc != 3)
	{
		qDebug("Usage: ./script dirWithkgmFiles fileToOutputTranslations");
		return 1;
	}
	
	TQDir d(argv[1], "*.kgm");
	if (!d.exists()) return 2;
	
	TQFile *output = new TQFile(argv[2]);
	output->open(IO_WriteOnly | IO_Truncate);
	TQTextStream os(output);
	os.setEncoding(TQTextStream::UnicodeUTF8);
	
	TQStringList files = d.entryList();
	TQStringList::const_iterator it;
	TQDomDocument dd;

	for (it = files.begin(); it != files.end(); ++it)
	{
		TQFile *f = new TQFile(d.absPath() + "/" + *it);
		f -> open(IO_ReadOnly);
		dd.setContent(f);
		
		TQDomNode n, n2, n3, n4, n5;
		TQDomNodeList nodes = dd.firstChild().childNodes();
		for (uint i = 0; i < nodes.count(); i++)
		{
			n = nodes.item(i);
			if (n.nodeName() == "name")
			{
				os << "i18n(\"" << *it << "\", \"" << n.firstChild().nodeValue() << "\");\n";
				os << "i18n(\"" << *it << "\", \"<qt>Current map:<br><b>" << n.firstChild().nodeValue() << "</b></qt>\");\n";
			}
			else if (n.nodeName() == "division")
			{
				n2 = n.namedItem("name");
				os << "i18n(\"" << *it << "\", \"" << n2.firstChild().nodeValue() << "\");\n";
				
				n3 = n.namedItem("ignore");
				if (n3.isNull() || (n3.firstChild().nodeValue() != "yes" && n3.firstChild().nodeValue() != "allowClickMode"))
				{
					os << "i18n(\"" << *it << "\", \"The capital of " << n2.firstChild().nodeValue() << " is...\");\n";
					os << "i18n(\"" << *it << "\", \"Please click on:\\n" << n2.firstChild().nodeValue() << "\");\n";
					
					n4 = n.namedItem("flag");
					if (!n4.isNull())
					{
						os << "i18n(\"" << *it << "\", \"The flag of " << n2.firstChild().nodeValue() << " is...\");\n";
					}
					
					n5 = n.namedItem("capital");
					os << "i18n(\"" << *it << "\", \"" << n5.firstChild().nodeValue() << "\");\n";
					os << "i18n(\"" << *it << "\", \"" << n5.firstChild().nodeValue() << " is the capital of...\");\n";
				}
				else if (n3.firstChild().nodeValue() == "allowClickMode")
				{
					os << "i18n(\"" << *it << "\", \"Please click on:\\n" << n2.firstChild().nodeValue() << "\");\n";
				}
			}
		}
		
		f -> close();
		delete f;
	}
	output->close();
}