oldschool-toontown/toontown/racing/DistributedRacePadAI.py

33 lines
934 B
Python
Raw Normal View History

2019-11-08 22:55:55 -06:00
from direct.directnotify import DirectNotifyGlobal
2019-12-05 21:42:29 -06:00
from direct.distributed.ClockDelta import globalClockDelta
2019-11-08 22:55:55 -06:00
2019-12-05 21:42:29 -06:00
from toontown.racing.DistributedKartPadAI import DistributedKartPadAI
class DistributedRacePadAI(DistributedKartPadAI):
2019-11-08 22:55:55 -06:00
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedRacePadAI')
2019-12-05 21:42:29 -06:00
def __init__(self, air):
DistributedKartPadAI.__init__(self, air)
self.state = 'Off'
self.trackInfo = [0, 0]
def setState(self, state):
self.state = state
def d_setState(self, state):
self.sendUpdate('setState', [state, globalClockDelta.getRealNetworkTime()])
def b_setState(self, state):
self.setState(state)
self.d_setState(state)
def getState(self):
return self.state, globalClockDelta.getRealNetworkTime()
def getTrackInfo(self):
return self.trackInfo
def request(self, state):
self.b_setState(state)