mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-11-01 09:17:54 +00:00
48 lines
1.8 KiB
Python
48 lines
1.8 KiB
Python
|
from pandac.PandaModules import *
|
||
|
from direct.showbase import DirectObject
|
||
|
from otp.otpbase import OTPLocalizer
|
||
|
|
||
|
class SpeedChatGMHandler(DirectObject.DirectObject):
|
||
|
scStructure = None
|
||
|
scList = {}
|
||
|
|
||
|
def __init__(self):
|
||
|
if SpeedChatGMHandler.scStructure is None:
|
||
|
self.generateSCStructure()
|
||
|
return
|
||
|
|
||
|
def generateSCStructure(self):
|
||
|
SpeedChatGMHandler.scStructure = [OTPLocalizer.PSCMenuGM]
|
||
|
phraseCount = 0
|
||
|
numGMCategories = base.config.GetInt('num-gm-categories', 0)
|
||
|
for i in xrange(0, numGMCategories):
|
||
|
categoryName = base.config.GetString('gm-category-%d' % i, '')
|
||
|
if categoryName == '':
|
||
|
continue
|
||
|
categoryStructure = [categoryName]
|
||
|
numCategoryPhrases = base.config.GetInt('gm-category-%d-phrases' % i, 0)
|
||
|
for j in xrange(0, numCategoryPhrases):
|
||
|
phrase = base.config.GetString('gm-category-%d-phrase-%d' % (i, j), '')
|
||
|
if phrase != '':
|
||
|
idx = 'gm%d' % phraseCount
|
||
|
SpeedChatGMHandler.scList[idx] = phrase
|
||
|
categoryStructure.append(idx)
|
||
|
phraseCount += 1
|
||
|
|
||
|
SpeedChatGMHandler.scStructure.append(categoryStructure)
|
||
|
|
||
|
numGMPhrases = base.config.GetInt('num-gm-phrases', 0)
|
||
|
for i in xrange(0, numGMPhrases):
|
||
|
phrase = base.config.GetString('gm-phrase-%d' % i, '')
|
||
|
if phrase != '':
|
||
|
idx = 'gm%d' % phraseCount
|
||
|
SpeedChatGMHandler.scList[idx] = phrase
|
||
|
SpeedChatGMHandler.scStructure.append(idx)
|
||
|
phraseCount += 1
|
||
|
|
||
|
def getStructure(self):
|
||
|
return SpeedChatGMHandler.scStructure
|
||
|
|
||
|
def getPhrase(self, id):
|
||
|
return SpeedChatGMHandler.scList[id]
|