mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 01:07:54 +00:00
62 lines
1.7 KiB
Python
Executable file
62 lines
1.7 KiB
Python
Executable file
from pandac.PandaModules import *
|
|
from direct.directnotify import DirectNotifyGlobal
|
|
import os
|
|
import sys
|
|
import time
|
|
|
|
class LogAndOutput:
|
|
def __init__(self, orig, log):
|
|
self.orig = orig
|
|
self.log = log
|
|
|
|
def write(self, str):
|
|
self.log.write(str)
|
|
self.log.flush()
|
|
self.orig.write(str)
|
|
self.orig.flush()
|
|
|
|
def flush(self):
|
|
self.log.flush()
|
|
self.orig.flush()
|
|
|
|
class TTSLauncher:
|
|
notify = DirectNotifyGlobal.directNotify.newCategory('TTSLauncher')
|
|
|
|
def __init__(self):
|
|
self.http = HTTPClient()
|
|
|
|
self.logPrefix = 'stride-'
|
|
|
|
ltime = 1 and time.localtime()
|
|
logSuffix = '%02d%02d%02d_%02d%02d%02d' % (ltime[0] - 2000, ltime[1], ltime[2], ltime[3], ltime[4], ltime[5])
|
|
|
|
if not os.path.exists('logs/'):
|
|
os.mkdir('logs/')
|
|
self.notify.info('Made new directory to save logs.')
|
|
|
|
logfile = os.path.join('logs', self.logPrefix + logSuffix + '.log')
|
|
|
|
log = open(logfile, 'a')
|
|
logOut = LogAndOutput(sys.stdout, log)
|
|
logErr = LogAndOutput(sys.stderr, log)
|
|
sys.stdout = logOut
|
|
sys.stderr = logErr
|
|
|
|
def getPlayToken(self):
|
|
return self.getValue('TTS_PLAYCOOKIE')
|
|
|
|
def getGameServer(self):
|
|
return self.getValue('TTS_GAMESERVER')
|
|
|
|
def getValue(self, key, default = None):
|
|
return os.environ.get(key, default)
|
|
|
|
def setPandaErrorCode(self):
|
|
pass
|
|
|
|
def setDisconnectDetails(self, disconnectCode, disconnectMsg):
|
|
self.disconnectCode = disconnectCode
|
|
self.disconnectMsg = disconnectMsg
|
|
|
|
def setDisconnectDetailsNormal(self):
|
|
self.setDisconnectDetails(0, 'normal')
|