mirror of
https://github.com/Sneed-Group/Poodletooth-iLand
synced 2024-12-23 11:42:39 -06:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
|
from direct.directnotify import DirectNotifyGlobal
|
||
|
from toontown.fishing import BingoGlobals
|
||
|
from toontown.fishing import BingoCardBase
|
||
|
|
||
|
class ThreewayBingo(BingoCardBase.BingoCardBase):
|
||
|
notify = DirectNotifyGlobal.directNotify.newCategory('ThreewayBingo')
|
||
|
|
||
|
def __init__(self, cardSize = BingoGlobals.CARD_SIZE, rowSize = BingoGlobals.CARD_ROWS, colSize = BingoGlobals.CARD_COLS):
|
||
|
BingoCardBase.BingoCardBase.__init__(self, cardSize, rowSize, colSize)
|
||
|
self.gameType = BingoGlobals.THREEWAY_CARD
|
||
|
self.rowResult = 0
|
||
|
self.fDiagResult = 0
|
||
|
self.bDiagResult = 0
|
||
|
|
||
|
def checkForWin(self, id):
|
||
|
rowId = int(id / BingoGlobals.CARD_ROWS)
|
||
|
colId = id % BingoGlobals.CARD_COLS
|
||
|
if rowId == 2:
|
||
|
self.rowResult = self.rowCheck(rowId)
|
||
|
if self.fDiagCheck(id):
|
||
|
self.fDiagResult = 1
|
||
|
if self.bDiagCheck(id):
|
||
|
self.bDiagResult = 1
|
||
|
if self.rowResult and self.fDiagResult and self.bDiagResult:
|
||
|
return BingoGlobals.WIN
|
||
|
return BingoGlobals.NO_UPDATE
|
||
|
|
||
|
def checkForColor(self, id):
|
||
|
return self.onRow(2, id) | self.onFDiag(id) | self.onBDiag(id)
|
||
|
|
||
|
def checkForBingo(self):
|
||
|
id = self.cardSize / 2
|
||
|
if self.checkForWin(id):
|
||
|
return BingoGlobals.WIN
|
||
|
return BingoGlobals.NO_UPDATE
|