blob: 83e9149588051ab9e50b1f78c8db2c7a1421c4a6 (
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
|
#! /usr/bin/env python
# -*- coding: utf8 -*-
#
# Copyright (C) 2014 Evol Online
# Author: Andrei Karas (4144)
import sys
from code.server.evol.main import serverEvolMain
from code.server.tmw.main import serverTmwMain
def showHelp():
print "Usage: ./convert_server.py evol"
print " ./convert_server.py tmwold"
print " ./convert_server.py tmwnew"
exit(1)
if len(sys.argv) != 2:
showHelp()
exit(1)
serverType = sys.argv[1]
if serverType == "evol":
serverEvolMain();
elif serverType == "tmwold":
serverTmwMain(False);
elif serverType == "tmwnew":
serverTmwMain(True);
else:
print "Wrong parameter"
|