home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / CvGameUtils.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  6.2 KB  |  263 lines

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. ##
  4. ## Implementaion of miscellaneous game functions
  5.  
  6. import CvUtil
  7. from CvPythonExtensions import *
  8.  
  9. # globals
  10. gc = CyGlobalContext()
  11.  
  12. class CvGameUtils:
  13.     "Miscellaneous game functions"
  14.     def __init__(self): 
  15.         pass
  16.     
  17.     def isVictoryTest(self):
  18.         if ( gc.getGame().getElapsedGameTurns() > 99 ):
  19.         #if ( gc.getGame().getElapsedGameTurns() > 0 ):
  20.             return True
  21.         else:
  22.             return False
  23.  
  24.     def isPlayerResearch(self, argsList):
  25.         ePlayer = argsList[0]
  26.         return True
  27.  
  28.     def createBarbarianCities(self):
  29.         return False
  30.         
  31.     def createBarbarianUnits(self):
  32.         return False
  33.         
  34.     def skipResearchPopup(self,argsList):
  35.         ePlayer = argsList[0]
  36.         return False
  37.         
  38.     def showTechChooserButton(self,argsList):
  39.         ePlayer = argsList[0]
  40.         return True
  41.  
  42.     def getFirstRecommendedTech(self,argsList):
  43.         ePlayer = argsList[0]
  44.         return TechTypes.NO_TECH
  45.  
  46.     def getSecondRecommendedTech(self,argsList):
  47.         ePlayer = argsList[0]
  48.         eFirstTech = argsList[1]
  49.         return TechTypes.NO_TECH
  50.  
  51.     def skipProductionPopup(self,argsList):
  52.         pCity = argsList[0]
  53.         return False
  54.         
  55.     def showExamineCityButton(self,argsList):
  56.         pCity = argsList[0]
  57.         return True
  58.  
  59.     def getRecommendedUnit(self,argsList):
  60.         pCity = argsList[0]
  61.         return UnitTypes.NO_UNIT
  62.  
  63.     def getRecommendedBuilding(self,argsList):
  64.         pCity = argsList[0]
  65.         return BuildingTypes.NO_BUILDING
  66.  
  67.     def updateColoredPlots(self):
  68.         return False
  69.  
  70.     def isActionRecommended(self,argsList):
  71.         pUnit = argsList[0]
  72.         iAction = argsList[1]
  73.         return False
  74.  
  75.     def cannotHandleAction(self,argsList):
  76.         pPlot = argsList[0]
  77.         iAction = argsList[1]
  78.         bTestVisible = argsList[2]
  79.         return False
  80.  
  81.     def cannotSelectionListMove(self,argsList):
  82.         pPlot = argsList[0]
  83.         bAlt = argsList[1]
  84.         bShift = argsList[2]
  85.         bCtrl = argsList[3]
  86.         return False
  87.  
  88.     def cannotSelectionListGameNetMessage(self,argsList):
  89.         eMessage = argsList[0]
  90.         iData2 = argsList[1]
  91.         iData3 = argsList[2]
  92.         iData4 = argsList[3]
  93.         iFlags = argsList[4]
  94.         bAlt = argsList[5]
  95.         bShift = argsList[6]
  96.         return False
  97.  
  98.     def cannotDoControl(self,argsList):
  99.         eControl = argsList[0]
  100.         return False
  101.  
  102.     def canResearch(self,argsList):
  103.         ePlayer = argsList[0]
  104.         eTech = argsList[1]
  105.         bTrade = argsList[2]
  106.         return False
  107.  
  108.     def cannotResearch(self,argsList):
  109.         ePlayer = argsList[0]
  110.         eTech = argsList[1]
  111.         bTrade = argsList[2]
  112.         return False
  113.  
  114.     def canDoCivic(self,argsList):
  115.         ePlayer = argsList[0]
  116.         eCivic = argsList[1]
  117.         return False
  118.  
  119.     def cannotDoCivic(self,argsList):
  120.         ePlayer = argsList[0]
  121.         eCivic = argsList[1]
  122.         return False
  123.         
  124.     def canTrain(self,argsList):
  125.         pCity = argsList[0]
  126.         eUnit = argsList[1]
  127.         bContinue = argsList[2]
  128.         bTestVisible = argsList[3]
  129.         return False
  130.  
  131.     def cannotTrain(self,argsList):
  132.         pCity = argsList[0]
  133.         eUnit = argsList[1]
  134.         bContinue = argsList[2]
  135.         bTestVisible = argsList[3]
  136.         return False
  137.  
  138.     def canConstruct(self,argsList):
  139.         pCity = argsList[0]
  140.         eBuilding = argsList[1]
  141.         bContinue = argsList[2]
  142.         bTestVisible = argsList[3]
  143.         bIgnoreCost = argsList[4]
  144.         return False
  145.  
  146.     def cannotConstruct(self,argsList):
  147.         pCity = argsList[0]
  148.         eBuilding = argsList[1]
  149.         bContinue = argsList[2]
  150.         bTestVisible = argsList[3]
  151.         bIgnoreCost = argsList[4]
  152.         return False
  153.  
  154.     def canCreate(self,argsList):
  155.         pCity = argsList[0]
  156.         eProject = argsList[1]
  157.         bContinue = argsList[2]
  158.         bTestVisible = argsList[3]
  159.         return False
  160.  
  161.     def cannotCreate(self,argsList):
  162.         pCity = argsList[0]
  163.         eProject = argsList[1]
  164.         bContinue = argsList[2]
  165.         bTestVisible = argsList[3]
  166.         return False
  167.  
  168.     def canMaintain(self,argsList):
  169.         pCity = argsList[0]
  170.         eProcess = argsList[1]
  171.         bContinue = argsList[2]
  172.         return False
  173.  
  174.     def cannotMaintain(self,argsList):
  175.         pCity = argsList[0]
  176.         eProcess = argsList[1]
  177.         bContinue = argsList[2]
  178.         return False
  179.  
  180.     def AI_chooseTech(self,argsList):
  181.         ePlayer = argsList[0]
  182.         bFree = argsList[1]
  183.         return TechTypes.NO_TECH
  184.  
  185.     def AI_chooseProduction(self,argsList):
  186.         pCity = argsList[0]
  187.         return False
  188.  
  189.     def AI_unitUpdate(self,argsList):
  190.         pUnit = argsList[0]
  191.         return False
  192.  
  193.     def AI_doWar(self,argsList):
  194.         eTeam = argsList[0]
  195.         return False
  196.  
  197.     def AI_doDiplo(self,argsList):
  198.         ePlayer = argsList[0]
  199.         return False
  200.  
  201.     def calculateScore(self,argsList):
  202.         ePlayer = argsList[0]
  203.         bFinal = argsList[1]
  204.         bVictory = argsList[2]
  205.         
  206.         iPopulationScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getPopScore(), gc.getGame().getInitPopulation(), gc.getGame().getMaxPopulation(), gc.getDefineINT("SCORE_POPULATION_FACTOR"), True, bFinal, bVictory)
  207.         iLandScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getLandScore(), gc.getGame().getInitLand(), gc.getGame().getMaxLand(), gc.getDefineINT("SCORE_LAND_FACTOR"), True, bFinal, bVictory)
  208.         iTechScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getTechScore(), gc.getGame().getInitTech(), gc.getGame().getMaxTech(), gc.getDefineINT("SCORE_TECH_FACTOR"), True, bFinal, bVictory)
  209.         iWondersScore = CvUtil.getScoreComponent(gc.getPlayer(ePlayer).getWondersScore(), gc.getGame().getInitWonders(), gc.getGame().getMaxWonders(), gc.getDefineINT("SCORE_WONDER_FACTOR"), False, bFinal, bVictory)
  210.         return int(iPopulationScore + iLandScore + iWondersScore + iTechScore)
  211.  
  212.     def doHolyCity(self):
  213.         return False
  214.  
  215.     def doHolyCityTech(self,argsList):
  216.         eTeam = argsList[0]
  217.         ePlayer = argsList[1]
  218.         eTech = argsList[2]
  219.         bFirst = argsList[3]
  220.         return False
  221.  
  222.     def doGold(self,argsList):
  223.         ePlayer = argsList[0]
  224.         return False
  225.  
  226.     def doResearch(self,argsList):
  227.         ePlayer = argsList[0]
  228.         return False
  229.  
  230.     def doGoody(self,argsList):
  231.         ePlayer = argsList[0]
  232.         pPlot = argsList[1]
  233.         pUnit = argsList[2]
  234.         return False
  235.  
  236.     def doGrowth(self,argsList):
  237.         pCity = argsList[0]
  238.         return False
  239.  
  240.     def doProduction(self,argsList):
  241.         pCity = argsList[0]
  242.         return False
  243.  
  244.     def doCulture(self,argsList):
  245.         pCity = argsList[0]
  246.         return False
  247.  
  248.     def doPlotCulture(self,argsList):
  249.         pCity = argsList[0]
  250.         return False
  251.  
  252.     def doReligion(self,argsList):
  253.         pCity = argsList[0]
  254.         return False
  255.  
  256.     def doGreatPeople(self,argsList):
  257.         pCity = argsList[0]
  258.         return False
  259.  
  260.     def doMeltdown(self,argsList):
  261.         pCity = argsList[0]
  262.         return False
  263.