Poodletooth-iLand/toontown/racing/DistributedViewPadAI.py
John 35b646c4e6 Revert "Spring cleaning"
This reverts commit 1e4bad8c6b.
2015-06-16 20:26:44 +03:00

27 lines
938 B
Python
Executable file

from direct.directnotify import DirectNotifyGlobal
from toontown.racing.DistributedKartPadAI import DistributedKartPadAI
from direct.distributed.ClockDelta import *
class DistributedViewPadAI(DistributedKartPadAI):
notify = DirectNotifyGlobal.directNotify.newCategory("DistributedViewPadAI")
def __init__(self, air):
DistributedKartPadAI.__init__(self, air)
self.timestamp = globalClockDelta.getRealNetworkTime()
def setLastEntered(self, timestamp):
self.timestamp = timestamp
def d_setLastEntered(self, timestamp):
self.sendUpdate('setLastEntered', [timestamp])
def b_setLastEntered(self, timestamp):
self.setLastEntered(timestamp)
self.d_setLastEntered(timestamp)
def getLastEntered(self):
return self.timestamp
def updateTimer(self):
self.b_setLastEntered(globalClockDelta.getRealNetworkTime())