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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvWBPopups
  5. import CvUtil
  6. import CvWBDesc
  7.  
  8. # globals
  9. WBDesc = CvWBDesc.CvWBDesc()
  10. lastFileRead = None
  11. gc = CyGlobalContext()
  12.  
  13. def writeDesc(argsList):
  14.     "Save out a high-level desc of the world, for WorldBuilder"
  15.     fileName = argsList[0]
  16.     lastFileRead=None
  17.     return WBDesc.write(fileName)
  18.     
  19. def readAndApplyDesc(argsList):
  20.     "Read in and apply a high-level desc of the world.  In-game load only"
  21.     fileName = argsList[0]
  22.     if WBDesc.read(fileName) < 0:
  23.         return -1
  24.     if (WBDesc.applyMap() < 0):
  25.         return -1
  26.     return WBDesc.applyInitialItems()
  27.  
  28. def readDesc(argsList):
  29.     "Read in a high-level desc of the world, for WorldBuilder.  Must call applyMap and applyInitialItems to finish the process"
  30.     global lastFileRead
  31.     fileName = argsList[0]
  32.     if (fileName!=lastFileRead):
  33.         ret=WBDesc.read(fileName)
  34.         if (ret==0):
  35.             lastFileRead=fileName
  36.     else:
  37.         ret=0        
  38.     return ret
  39.         
  40. def applyMapDesc():    
  41.     "After reading, applies the map loaded data"
  42.     return WBDesc.applyMap()
  43.  
  44. def applyInitialItems():    
  45.     "After reading, applies player units, cities, and techs"
  46.     return WBDesc.applyInitialItems()
  47.  
  48. def getAssignedStartingPlots():
  49.     "Reads in starting plots for random players"
  50.     return WBDesc.getAssignedStartingPlots()
  51.  
  52. def initWBEditor(argsList):
  53.     "Called from the Worldbuilder app - sends to CvWBPopups for handling"
  54.     return CvWBPopups.CvWBPopups().initWB(argsList)
  55.     
  56. def getGameData():
  57.     "after reading a save file, return game/player data as a tuple"
  58.     t=()
  59.     gameTurn = WBDesc.gameDesc.gameTurn
  60.     maxTurns = WBDesc.gameDesc.maxTurns
  61.     maxCityElimination = WBDesc.gameDesc.maxCityElimination
  62.     targetScore = WBDesc.gameDesc.targetScore
  63.     worldSizeType = CvUtil.findInfoTypeNum(gc.getWorldInfo, gc.getNumWorldInfos(), WBDesc.mapDesc.worldSize)
  64.     climateType = CvUtil.findInfoTypeNum(gc.getClimateInfo, gc.getNumClimateInfos(), WBDesc.mapDesc.climate)
  65.     seaLevelType = CvUtil.findInfoTypeNum(gc.getSeaLevelInfo, gc.getNumSeaLevelInfos(), WBDesc.mapDesc.seaLevel)
  66.     eraType = CvUtil.findInfoTypeNum(gc.getEraInfo, gc.getNumEraInfos(), WBDesc.gameDesc.eraType)
  67.     gameSpeedType = CvUtil.findInfoTypeNum(gc.getGameSpeedInfo, gc.getNumGameSpeedInfos(), WBDesc.gameDesc.speedType)
  68.     calendarType = CvUtil.findInfoTypeNum(gc.getCalendarInfo, gc.getNumCalendarInfos(), WBDesc.gameDesc.calendarType)
  69.     
  70.     t=t+(worldSizeType,)
  71.     t=t+(climateType,)
  72.     t=t+(seaLevelType,)
  73.     t=t+(eraType,)
  74.     t=t+(gameSpeedType,)
  75.     t=t+(calendarType,)
  76.     
  77.     t=t+(len(WBDesc.gameDesc.options),)
  78.     for i in range(len(WBDesc.gameDesc.options)):
  79.         option = CvUtil.findInfoTypeNum(gc.getGameOptionInfo, gc.getNumGameOptionInfos(), WBDesc.gameDesc.options[i])
  80.         t=t+(option,)
  81.     
  82.     t=t+(len(WBDesc.gameDesc.mpOptions),)
  83.     for i in range(len(WBDesc.gameDesc.mpOptions)):
  84.         mpOption = CvUtil.findInfoTypeNum(gc.getMPOptionInfo, gc.getNumMPOptionInfos(), WBDesc.gameDesc.mpOptions[i])
  85.         t=t+(mpOption,)
  86.     
  87.     t=t+(len(WBDesc.gameDesc.forceControls),)
  88.     for i in range(len(WBDesc.gameDesc.forceControls)):
  89.         forceControl = CvUtil.findInfoTypeNum(gc.getForceControlInfo, gc.getNumForceControlInfos(), WBDesc.gameDesc.forceControls[i])
  90.         t=t+(forceControl,)
  91.     
  92.     t=t+(len(WBDesc.gameDesc.victories),)
  93.     for i in range(len(WBDesc.gameDesc.victories)):
  94.         victory = CvUtil.findInfoTypeNum(gc.getVictoryInfo, gc.getNumVictoryInfos(), WBDesc.gameDesc.victories[i])
  95.         t=t+(victory,)
  96.     
  97.     t=t+(gameTurn,)
  98.     t=t+(maxTurns,)
  99.     t=t+(maxCityElimination,)
  100.     t=t+(targetScore,)
  101.     
  102.     return t
  103.     
  104. def getModPath():
  105.     "Returns the path for the Mod that this scenario should load (if applicable)"
  106.     return (WBDesc.gameDesc.szModPath)
  107.     
  108. def getMapDescriptionKey():
  109.     "Returns the TXT_KEY Description of the map to be displayed in the map/mod selection screen"
  110.     return (WBDesc.gameDesc.szDescription)
  111.     
  112. def getPlayerData():
  113.     "after reading a save file, return player data as a tuple, terminated by -1"
  114.     t=()
  115.     for i in range(gc.getMAX_CIV_PLAYERS()):
  116. #        print "leaderType"
  117.         leaderType = CvUtil.findInfoTypeNum(gc.getLeaderHeadInfo, gc.getNumLeaderHeadInfos(), WBDesc.playersDesc[i].leaderType)
  118. #        print "civType"
  119.         civType = CvUtil.findInfoTypeNum(gc.getCivilizationInfo, gc.getNumCivilizationInfos(), WBDesc.playersDesc[i].civType)
  120. #        print "handicapType"
  121.         handicapType = CvUtil.findInfoTypeNum(gc.getHandicapInfo, gc.getNumHandicapInfos(), WBDesc.playersDesc[i].handicap)
  122. #        print "color"
  123.         color = CvUtil.findInfoTypeNum(gc.getPlayerColorInfo, gc.getNumPlayerColorInfos(), WBDesc.playersDesc[i].color)
  124. #        print "artStyle"
  125.         artStyle = gc.getTypesEnum(WBDesc.playersDesc[i].artStyle)
  126. #        print "done"
  127.         
  128.         t=t+(civType,)
  129.         t=t+(WBDesc.playersDesc[i].isPlayableCiv,)
  130.         t=t+(leaderType,)
  131.         t=t+(handicapType,)
  132.         t=t+(WBDesc.playersDesc[i].team,)
  133.         t=t+(color,)
  134.         t=t+(artStyle,)
  135.         t=t+(WBDesc.playersDesc[i].isMinorNationCiv,)
  136.         t=t+(WBDesc.playersDesc[i].isWhiteFlag,)
  137.                 
  138.     return t
  139.         
  140. def getPlayerDesc():
  141.     "after reading a save file, return player description data (wide strings) as a tuple"
  142.     t=()
  143.     for i in range(gc.getMAX_CIV_PLAYERS()):
  144.         t=t+(WBDesc.playersDesc[i].szCivDesc,)
  145.         t=t+(WBDesc.playersDesc[i].szCivShortDesc,)
  146.         t=t+(WBDesc.playersDesc[i].szLeaderName,)
  147.         t=t+(WBDesc.playersDesc[i].szCivAdjective,)
  148.         t=t+(WBDesc.playersDesc[i].szFlagDecal,)
  149.         
  150.     return t
  151.