mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-26 05:02:31 -06:00
89 lines
3.1 KiB
Python
89 lines
3.1 KiB
Python
|
import random
|
||
|
from toontown.toonbase import ToontownGlobals
|
||
|
from toontown.toonbase import TTLocalizer
|
||
|
import os
|
||
|
from direct.showbase import AppRunnerGlobal
|
||
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from pandac.PandaModules import *
|
||
|
|
||
|
class PetNameGenerator:
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('PetNameGenerator')
|
||
|
boyFirsts = []
|
||
|
girlFirsts = []
|
||
|
neutralFirsts = []
|
||
|
|
||
|
def __init__(self):
|
||
|
self.generateLists()
|
||
|
|
||
|
def generateLists(self):
|
||
|
self.boyFirsts = []
|
||
|
self.girlFirsts = []
|
||
|
self.neutralFirsts = []
|
||
|
self.nameDictionary = {}
|
||
|
searchPath = DSearchPath()
|
||
|
if AppRunnerGlobal.appRunner:
|
||
|
searchPath.appendDirectory(Filename.expandFrom('$TT_3_ROOT/phase_3/etc'))
|
||
|
else:
|
||
|
searchPath.appendDirectory(Filename('/phase_3/etc'))
|
||
|
if os.path.expandvars('$TOONTOWN') != '':
|
||
|
searchPath.appendDirectory(Filename.fromOsSpecific(os.path.expandvars('$TOONTOWN/src/configfiles')))
|
||
|
else:
|
||
|
searchPath.appendDirectory(Filename.fromOsSpecific(os.path.expandvars('toontown/src/configfiles')))
|
||
|
searchPath.appendDirectory(Filename('.'))
|
||
|
if __debug__:
|
||
|
filename = '../resources/phase_3/etc/'+TTLocalizer.PetNameMaster
|
||
|
else:
|
||
|
filename = '/phase_3/etc/'+TTLocalizer.PetNameMaster
|
||
|
input = open(filename, 'r')
|
||
|
if not input:
|
||
|
self.notify.error('PetNameGenerator: Error opening name list text file.')
|
||
|
currentLine = input.readline()
|
||
|
while currentLine:
|
||
|
if currentLine.lstrip()[0:1] != '#':
|
||
|
a1 = currentLine.find('*')
|
||
|
a2 = currentLine.find('*', a1 + 1)
|
||
|
self.nameDictionary[int(currentLine[0:a1])] = (int(currentLine[a1 + 1:a2]), currentLine[a2 + 1:len(currentLine) - 1].strip())
|
||
|
currentLine = input.readline()
|
||
|
|
||
|
masterList = [self.boyFirsts, self.girlFirsts, self.neutralFirsts]
|
||
|
for tu in self.nameDictionary.values():
|
||
|
masterList[tu[0]].append(tu[1])
|
||
|
|
||
|
return 1
|
||
|
|
||
|
def getName(self, uniqueID):
|
||
|
try:
|
||
|
return self.nameDictionary[uniqueID][1]
|
||
|
except:
|
||
|
return self.nameDictionary[0][1]
|
||
|
|
||
|
def returnUniqueID(self, name):
|
||
|
newtu = [(), (), ()]
|
||
|
newtu[0] = (0, name)
|
||
|
newtu[1] = (1, name)
|
||
|
newtu[2] = (2, name)
|
||
|
for tu in self.nameDictionary.items():
|
||
|
for g in newtu:
|
||
|
if tu[1] == g:
|
||
|
return tu[0]
|
||
|
|
||
|
return -1
|
||
|
|
||
|
def randomName(self, gender = None, seed = None):
|
||
|
S = random.getstate()
|
||
|
if seed is not None:
|
||
|
random.seed(seed)
|
||
|
if gender is None:
|
||
|
gender = random.choice([0, 1])
|
||
|
retString = ''
|
||
|
firstList = self.neutralFirsts[:]
|
||
|
if gender == 0:
|
||
|
firstList += self.boyFirsts
|
||
|
elif gender == 1:
|
||
|
firstList += self.girlFirsts
|
||
|
else:
|
||
|
self.error('Must be boy or girl.')
|
||
|
retString += random.choice(firstList)
|
||
|
random.setstate(S)
|
||
|
return retString
|