forked from github/server
converter compiles fine, does nothing
This commit is contained in:
parent
f406c47657
commit
71e5d101a8
|
@ -1,25 +1,44 @@
|
|||
#include <platform.h>
|
||||
|
||||
|
||||
#ifdef USE_LIBXML2
|
||||
#include <kernel/xmlreader.h>
|
||||
#include <util/xml.h>
|
||||
#endif
|
||||
#include <kernel/race.h>
|
||||
#include <kernel/rules.h>
|
||||
#include <kernel/xmlreader.h>
|
||||
|
||||
#include <races/races.h>
|
||||
|
||||
#include <util/xml.h>
|
||||
|
||||
#include <storage.h>
|
||||
|
||||
#include <string.h>
|
||||
|
||||
static int usage(void) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
const char * xmlfile, *catalog;
|
||||
const char *mode;
|
||||
|
||||
register_races();
|
||||
#ifdef USE_LIBXML2
|
||||
register_xmlreader();
|
||||
|
||||
if (argc < 3) return -1;
|
||||
xmlfile = argv[1];
|
||||
catalog = argv[2];
|
||||
#endif
|
||||
if (argc < 2) return usage();
|
||||
mode = argv[1];
|
||||
#ifdef USE_LIBXML2
|
||||
if (strcmp(mode, "rules")==0) {
|
||||
const char *xmlfile, *catalog;
|
||||
if (argc < 4) return usage();
|
||||
xmlfile = argv[2];
|
||||
catalog = argv[3];
|
||||
read_xml(xmlfile, catalog);
|
||||
write_rules("rules.dat");
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
if (strcmp(mode, "po")==0) {
|
||||
return 0;
|
||||
}
|
||||
return usage();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue