mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
|
from direct.distributed.ClockDelta import *
|
||
|
from direct.showbase import DirectObject
|
||
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from direct.task import Task
|
||
|
import random
|
||
|
import TreasurePlannerAI
|
||
|
|
||
|
class RegenTreasurePlannerAI(TreasurePlannerAI.TreasurePlannerAI):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('RegenTreasurePlannerAI')
|
||
|
|
||
|
def __init__(self, zoneId, treasureType, taskName, spawnInterval, maxTreasures, callback = None):
|
||
|
TreasurePlannerAI.TreasurePlannerAI.__init__(self, zoneId, treasureType, callback)
|
||
|
self.taskName = '%s-%s' % (taskName, zoneId)
|
||
|
self.spawnInterval = spawnInterval
|
||
|
self.maxTreasures = maxTreasures
|
||
|
|
||
|
def start(self):
|
||
|
self.preSpawnTreasures()
|
||
|
self.startSpawning()
|
||
|
|
||
|
def stop(self):
|
||
|
self.stopSpawning()
|
||
|
|
||
|
def stopSpawning(self):
|
||
|
taskMgr.remove(self.taskName)
|
||
|
|
||
|
def startSpawning(self):
|
||
|
self.stopSpawning()
|
||
|
taskMgr.doMethodLater(self.spawnInterval, self.upkeepTreasurePopulation, self.taskName)
|
||
|
|
||
|
def upkeepTreasurePopulation(self, task):
|
||
|
if self.numTreasures() < self.maxTreasures:
|
||
|
self.placeRandomTreasure()
|
||
|
taskMgr.doMethodLater(self.spawnInterval, self.upkeepTreasurePopulation, self.taskName)
|
||
|
return Task.done
|
||
|
|
||
|
def placeRandomTreasure(self):
|
||
|
self.notify.debug('Placing a Treasure...')
|
||
|
spawnPointIndex = self.nthEmptyIndex(random.randrange(self.countEmptySpawnPoints()))
|
||
|
self.placeTreasure(spawnPointIndex)
|
||
|
|
||
|
def preSpawnTreasures(self):
|
||
|
for i in xrange(self.maxTreasures):
|
||
|
self.placeRandomTreasure()
|