oldschool-toontown/toontown/uberdog/UDStart.py

64 lines
2.1 KiB
Python
Raw Normal View History

from panda3d.core import *
import builtins
2019-11-08 21:20:04 -06:00
import argparse
parser = argparse.ArgumentParser(description="Open Toontown - UberDOG Server")
parser.add_argument('--base-channel', help='The base channel that the server will use.')
parser.add_argument('--max-channels', help='The number of channels that the server will be able to use.')
parser.add_argument('--stateserver', help='The control channel of this UberDOG\'s designated State Server.')
parser.add_argument('--messagedirector-ip',
help='The IP address of the Message Director that this UberDOG will connect to.')
parser.add_argument('--eventlogger-ip', help='The IP address of the Astron Event Logger that this UberDOG will log to.')
parser.add_argument('config', nargs='*', default=['etc/Configrc.prc'],
help='PRC file(s) that will be loaded on this UberDOG instance.')
args = parser.parse_args()
for prc in args.config:
loadPrcFile(prc)
localConfig = ''
if args.base_channel:
localConfig += 'air-base-channel %s\n' % args.base_channel
if args.max_channels:
localConfig += 'air-channel-allocation %s\n' % args.max_channels
if args.stateserver:
localConfig += 'air-stateserver %s\n' % args.stateserver
if args.messagedirector_ip:
localConfig += 'air-connect %s\n' % args.messagedirector_ip
if args.eventlogger_ip:
localConfig += 'eventlog-host %s\n' % args.eventlogger_ip
loadPrcFileData('UberDOG Args Config', localConfig)
2019-11-27 23:17:22 -06:00
2019-11-08 21:20:04 -06:00
class game:
name = 'uberDog'
process = 'server'
2019-11-27 23:17:22 -06:00
builtins.game = game
2019-11-08 21:20:04 -06:00
loadPrcFile('etc/Configrc.prc')
from otp.ai.AIBaseGlobal import *
from toontown.uberdog.ToontownUDRepository import ToontownUDRepository
2021-07-19 20:13:58 -05:00
simbase.air = ToontownUDRepository(ConfigVariableInt('air-base-channel', 1000000).value, ConfigVariableInt('air-stateserver', 4002).value)
2019-11-08 21:20:04 -06:00
2021-07-19 20:13:58 -05:00
host = ConfigVariableString('air-connect', '127.0.0.1:7199').value
2019-11-08 21:20:04 -06:00
port = 7199
if ':' in host:
host, port = host.split(':', 1)
port = int(port)
simbase.air.connect(host, port)
try:
run()
except SystemExit:
raise
except Exception:
from otp.otpbase import PythonUtil
print(PythonUtil.describeException())
2019-11-08 21:20:04 -06:00
raise