home *** CD-ROM | disk | FTP | other *** search
- ## Sid Meier's Civilization 4
- ## Copyright Firaxis Games 2005
- ##
- ## Implementaion of miscellaneous game functions
-
- import CvUtil
- from CvPythonExtensions import *
-
- # globals
- gc = CyGlobalContext()
-
- class CvGameUtils:
- "Miscellaneous game functions"
- def __init__(self):
- pass
-
- def isVictoryTest(self):
- if ( gc.getGame().getElapsedGameTurns() > 99 ):
- #if ( gc.getGame().getElapsedGameTurns() > 0 ):
- return True
- else:
- return False
-
- def isPlayerResearch(self, argsList):
- ePlayer = argsList[0]
- return True
-
- def createBarbarianCities(self):
- return False
-
- def createBarbarianUnits(self):
- return False
-
- def skipResearchPopup(self,argsList):
- ePlayer = argsList[0]
- return False
-
- def showTechChooserButton(self,argsList):
- ePlayer = argsList[0]
- return True
-
- def getFirstRecommendedTech(self,argsList):
- ePlayer = argsList[0]
- return TechTypes.NO_TECH
-
- def getSecondRecommendedTech(self,argsList):
- ePlayer = argsList[0]
- eFirstTech = argsList[1]
- return TechTypes.NO_TECH
-
- def skipProductionPopup(self,argsList):
- pCity = argsList[0]
- return False
-
- def showExamineCityButton(self,argsList):
- pCity = argsList[0]
- return True
-
- def getRecommendedUnit(self,argsList):
- pCity = argsList[0]
- return UnitTypes.NO_UNIT
-
- def getRecommendedBuilding(self,argsList):
- pCity = argsList[0]
- return BuildingTypes.NO_BUILDING
-
- def updateColoredPlots(self):
- return False
-
- def isActionRecommended(self,argsList):
- pUnit = argsList[0]
- iAction = argsList[1]
- return False
-
- def cannotHandleAction(self,argsList):
- pPlot = argsList[0]
- iAction = argsList[1]
- bTestVisible = argsList[2]
- return False
-
- def cannotSelectionListMove(self,argsList):
- pPlot = argsList[0]
- bAlt = argsList[1]
- bShift = argsList[2]
- bCtrl = argsList[3]
- return False
-
- def cannotSelectionListGameNetMessage(self,argsList):
- eMessage = argsList[0]
- iData2 = argsList[1]
- iData3 = argsList[2]
- iData4 = argsList[3]
- iFlags = argsList[4]
- bAlt = argsList[5]
- bShift = argsList[6]
- return False
-
- def cannotDoControl(self,argsList):
- eControl = argsList[0]
- return False
-
- def canResearch(self,argsList):
- ePlayer = argsList[0]
- eTech = argsList[1]
- bTrade = argsList[2]
- return False
-
- def cannotResearch(self,argsList):
- ePlayer = argsList[0]
- eTech = argsList[1]
- bTrade = argsList[2]
- return False
-
- def canDoCivic(self,argsList):
- ePlayer = argsList[0]
- eCivic = argsList[1]
- return False
-
- def cannotDoCivic(self,argsList):
- ePlayer = argsList[0]
- eCivic = argsList[1]
- return False
-
- def canTrain(self,argsList):
- pCity = argsList[0]
- eUnit = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- return False
-
- def cannotTrain(self,argsList):
- pCity = argsList[0]
- eUnit = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- return False
-
- def canConstruct(self,argsList):
- pCity = argsList[0]
- eBuilding = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- bIgnoreCost = argsList[4]
- return False
-
- def cannotConstruct(self,argsList):
- pCity = argsList[0]
- eBuilding = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- bIgnoreCost = argsList[4]
- return False
-
- def canCreate(self,argsList):
- pCity = argsList[0]
- eProject = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- return False
-
- def cannotCreate(self,argsList):
- pCity = argsList[0]
- eProject = argsList[1]
- bContinue = argsList[2]
- bTestVisible = argsList[3]
- return False
-
- def canMaintain(self,argsList):
- pCity = argsList[0]
- eProcess = argsList[1]
- bContinue = argsList[2]
- return False
-
- def cannotMaintain(self,argsList):
- pCity = argsList[0]
- eProcess = argsList[1]
- bContinue = argsList[2]
- return False
-
- def AI_chooseTech(self,argsList):
- ePlayer = argsList[0]
- bFree = argsList[1]
- return TechTypes.NO_TECH
-
- def AI_chooseProduction(self,argsList):
- pCity = argsList[0]
- return False
-
- def AI_unitUpdate(self,argsList):
- pUnit = argsList[0]
- return False
-
- def AI_doWar(self,argsList):
- eTeam = argsList[0]
- return False
-
- def AI_doDiplo(self,argsList):
- ePlayer = argsList[0]
- return False
-
- def calculateScore(self,argsList):
- ePlayer = argsList[0]
- bFinal = argsList[1]
- bVictory = argsList[2]
-
- iPopulationScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getPopScore(), gc.getGame().getInitPopulation(), gc.getGame().getMaxPopulation(), gc.getDefineINT("SCORE_POPULATION_FACTOR"), True, bFinal, bVictory)
- iLandScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getLandScore(), gc.getGame().getInitLand(), gc.getGame().getMaxLand(), gc.getDefineINT("SCORE_LAND_FACTOR"), True, bFinal, bVictory)
- iTechScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getTechScore(), gc.getGame().getInitTech(), gc.getGame().getMaxTech(), gc.getDefineINT("SCORE_TECH_FACTOR"), True, bFinal, bVictory)
- iWondersScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getWondersScore(), gc.getGame().getInitWonders(), gc.getGame().getMaxWonders(), gc.getDefineINT("SCORE_WONDER_FACTOR"), False, bFinal, bVictory)
- return int(iPopulationScore + iLandScore + iWondersScore + iTechScore)
-
- def doHolyCity(self):
- return False
-
- def doHolyCityTech(self,argsList):
- eTeam = argsList[0]
- ePlayer = argsList[1]
- eTech = argsList[2]
- bFirst = argsList[3]
- return False
-
- def doGold(self,argsList):
- ePlayer = argsList[0]
- return False
-
- def doResearch(self,argsList):
- ePlayer = argsList[0]
- return False
-
- def doGoody(self,argsList):
- ePlayer = argsList[0]
- pPlot = argsList[1]
- pUnit = argsList[2]
- return False
-
- def doGrowth(self,argsList):
- pCity = argsList[0]
- return False
-
- def doProduction(self,argsList):
- pCity = argsList[0]
- return False
-
- def doCulture(self,argsList):
- pCity = argsList[0]
- return False
-
- def doPlotCulture(self,argsList):
- pCity = argsList[0]
- return False
-
- def doReligion(self,argsList):
- pCity = argsList[0]
- return False
-
- def doGreatPeople(self,argsList):
- pCity = argsList[0]
- return False
-
- def doMeltdown(self,argsList):
- pCity = argsList[0]
- return False
-