oldschool-toontown/toontown/distributed/DistributedTimerAI.py
2019-11-02 18:27:54 -04:00

22 lines
767 B
Python

from direct.distributed import DistributedObjectAI
from direct.directnotify import DirectNotifyGlobal
from toontown.toonbase import ToontownGlobals
from pandac.PandaModules import *
from direct.distributed.ClockDelta import *
import time
class DistributedTimerAI(DistributedObjectAI.DistributedObjectAI):
notify = DirectNotifyGlobal.directNotify.newCategory('DistributedTimerAI')
def __init__(self, air):
DistributedObjectAI.DistributedObjectAI.__init__(self, air)
self.setStartTime(globalClockDelta.getRealNetworkTime(bits=32))
def generate(self):
DistributedObjectAI.DistributedObjectAI.generate(self)
def setStartTime(self, time):
self.startTime = time
def getStartTime(self):
return self.startTime