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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5.  
  6. """
  7. MAP SCRIPT INTERFACE
  8.  
  9. This file contains stubs for all the functions that a map script can override. To create a map script, 
  10. copy the imports at the top of this file into a new file.
  11.  
  12. Then you can implement as many of the below functions as you want. If one of the functions is not implemented
  13. in your map script, or if the function calls CyPythonMgr().allowDefaultImpl(), then the Civ game code will handle
  14. that aspect of map generation in the default manner.
  15.  
  16. Note: for the most part the functions in this file have a "flat" structure; i.e. they are called one by one by
  17. the game code during map generation, in the approximate order that the functions are listed in this file.
  18. However, there are a few functions that will not be called under certain circumstances. These functions
  19. are notated with a WARNING in their docstring below. For example, see generateRandomMap() and findStartingArea() below.
  20.  
  21. -aszybalski 20 aug 2004
  22. """
  23.  
  24. """
  25. ADDITIONAL NOTES FROM SIRIAN
  26.  
  27. With my urging, Soren decided to move more of the map script defaults from
  28. C++ to Python, better exposing the workings for map scripters to figure out.
  29.  
  30. As of July 2005, some functions listed here in CvMapScriptInterface.py have
  31. become Mandatory Functions. That is, your script must contain versions of
  32. these functions, as the entire function is handled in Python. Without a
  33. version of a Mandatory Function, your script will produce errors. The rest
  34. of the functions listed in this file remain Optional Overrides. 
  35.  
  36. For a complete list of Mandatory Functions, check the default minimum map
  37. script, Continents.py that is located in the /PublicMaps/ folder with the
  38. rest of the scripts. Except where noted, all functions used in that script
  39. compose the list of Mandatory Functions.
  40.  
  41. You can also create a new map script by copying an existing script in to a
  42. new file under a new filename and then modifying it. For the numerous map
  43. scripts that I produced to ship with the game, I used this shortcut rather
  44. than building each new script from scratch. The danger of copying from an
  45. existing script is dragging along unneeded or unwanted bits of code, but I
  46. found it much easier to build from work already done by others. A lot can
  47. be learned fairly quickly this way. Would-be map scripters, for instance,
  48. can build from my work in some cases, rather than having first to duplicate
  49. functions that I had to build from scratch.
  50.  
  51. We have tried to make map scripting as user friendly as possible without
  52. compromising any of its power. We hope that you find the balance we have
  53. chosen to your liking. Good luck with any map scripting projects you undertake.
  54.  
  55. - Bob Thomas   July 4, 2005
  56. """
  57.  
  58. """
  59. ORDER OF OPERATIONS
  60.  
  61. Key:    + Category of functions
  62.         * Function is called once
  63.         ! Function is (or can be) called multiple times
  64.  
  65. The following list indicates the order in which wrapped functions are executed.
  66.  
  67. + Game Properties functions are read when Civ4 is launched.
  68. + User Defined Map Options functions are read when a user selects that script
  69.   from the list of available scripts during the game setup phase. I persuaded
  70.   Soren to allow map scripters to set up customizable user options. The result
  71.   can be seen in the enhanced power of scripts like Highlands, Mirror, etc.
  72. + Everything else is called during the map generation process, upon launch.
  73.  
  74. * beforeInit()                        # Can set up globals here to span variables across functions.
  75. * getGridSize()                        # Each grid cell is a block of 4x4 plots.
  76. * getTopLatitude()                    # Affects automatic bonus resource placement method.
  77. * getBottomLatitude()                # Use the pair of getLatitude options to enjoy logical bonus appearance on maps that simulate a region rather than an entire planet.
  78. * isBonusIgnoreLatitude()            # Can disable automatic restrictions on where bonus resources can appear.
  79. * getWrapX() and getWrapY()            # MUST be called as a pair, or not at all.
  80. * beforeGeneration()                # Similar to beforeInit() but can make use of some instructions that are unavailable until Grid Size, etc, has been processed.
  81. * generateRandomMap()                # You can call this to DISABLE generatePlotTypes() and generateTerrain(), to whatever creative ends you may come up with.
  82. * generatePlotTypes()                # First layer of data creation for the plot array, setting plot types (Ocean, Land, Hills, Peak). Plot types are hardcoded.
  83. * generateTerrain()                    # Second layer of data creation for the plot array.
  84. * addRivers()                        # Third layer of data creation for the plot array.
  85. ! getRiverStartCardinalDirection()    # Called once per river! (Only if using default river generation).
  86. ! getRiverAltitude()                # Called for EACH PLOT of a river, during river generation. (Only if using default river generation).
  87. * addLakes()                        # Fourth layer of data creation for the plot array.
  88. * addFeatures()                        # Fifth layer of data creation for the plot array.
  89. * addBonuses()                        # Sixth layer of data creation for the plot array. 
  90. ! addBonusType()                    # Called separately for each bonus entry found in the applicable XML file.
  91. ! canPlaceBonusAt()                    # If overridden, called for each plot, for each bonus.
  92. * addGoodies()                        # Seventh (and final) layer of data creation for the plot array. NOTE: Goodies are "improvements", not "features".
  93. ! canPlaceGoodyAt()                    # If overridden, called for each plot.
  94. * afterGeneration()                    # Last chance to fiddle with the map before the starting plots (for the civs) are determined.
  95.  
  96. + All that remains are starting plot functions.
  97.  
  98. * minStartingDistanceModifier()        # Can increase or decrease (by a percentage) the standard values for minimum distance between any two start plots.
  99. * assignStartingPlots()                # This is the only main start plot function that is called only once. If you use any process that results in determining
  100.                                     # specific plots in which civs will start, this is where to handle it. Use setStartPlot() to specify a start plot. If you 
  101.                                     # use this function, the other "find" functions will not be called automatically, but you can call them manually if you need them.
  102. ! findStartingPlot()                # The version in CvMapGeneratorUtil is NOT the default! That version looks for the best local area only. The default 
  103.                                     # implementation first looks for the best continent, uninhabited portion of a continent, or best island, THEN also looks 
  104.                                     # for a rich local area in which to start this civ. ... The function is called once per civ.
  105. ! findStartingArea()                # Each land mass (even one plot island) has its own areaID. This function is part of the default process. You can override 
  106.                                     # this function and leave the others intact if you only want to specify which areaID(s) in which a given civ should appear.
  107.                                     # The default start location functions are very powerful, as this is an area that got high priority and lots of personal 
  108.                                     # attention from Soren and I both. Pretty much the sky is the limit: if you can build a better mousetrap, have at it!
  109. * normalizeStartingPlotLocations()    # This function only matters if any teams of more than one civ (aka permanent alliances) exist at game launch. This function
  110.                                     # works to group team members together as best it can. If you hardwire any start plots for specific players and don't want 
  111.                                     # the game to mess with them, shuffing them around, then you need to override (disable) this function.
  112. ! normalizeAddRiver()
  113. ! normalizeRemovePeaks()
  114. ! normalizeAddLakes()
  115. ! normalizeRemoveBadFeatures()        # These eight functions are all part of the start plot "terrain normalizer". This process softens "dud" starts and...
  116. ! normalizeRemoveBadTerrain()        # ...tries to ensure better balance around the immediate area of where a civ's initial units appear. There are eight...
  117. ! normalizeAddFoodBonuses()            # ...subfunctions listed here so that you can include or disable specific ones at your pleasure.
  118. ! normalizeAddGoodTerrain()
  119. ! normalizeAddExtras()
  120. * startHumansOnSameTile()            # Human players' starting settler(s) and other units normally start separated. This can force them to start together.
  121.  
  122.  
  123. - Bob Thomas   September 23, 2005
  124. """
  125.  
  126. """
  127. GAME PROPERTIES
  128. """
  129.  
  130. def getDescription():
  131.     """
  132.     A map's Description is displayed in the main menu when players go to begin a game.
  133.     For no description return an empty string.
  134.     """
  135.     return ""
  136.  
  137. def isAdvancedMap():
  138.     """
  139.     Advanced maps only show up in the map script pulldown on the advanced menu.
  140.     Return 0 if you want your map to show up in the simple singleplayer menu
  141.     """
  142.     return 1
  143.     
  144. def getModPath():
  145.     """
  146.     Returns the path of the mod this map is associated with
  147.     """
  148.     return ""
  149.     
  150. """
  151. USER DEFINED MAP OPTIONS
  152. """
  153.  
  154. def isClimateMap():
  155.     """
  156.     Uses the Climate options
  157.     """
  158.     return 1
  159.     
  160. def isSeaLevelMap():
  161.     """
  162.     Uses the Sea Level options
  163.     """
  164.     return 1
  165.     
  166. def getNumCustomMapOptions():
  167.     """
  168.     Number of different user-defined options for this map
  169.     Return an integer
  170.     """
  171.     return 0
  172.     
  173. def getCustomMapOptionName(argsList):
  174.     """
  175.     Returns name of specified option
  176.     argsList[0] is Option ID (int)
  177.     Return a Unicode string
  178.     """
  179.     return u""
  180.     
  181. def getNumCustomMapOptionValues(argsList):
  182.     """
  183.     Number of different choices for a particular setting
  184.     argsList[0] is Option ID (int)
  185.     Return an integer
  186.     """
  187.     return 0
  188.     
  189. def getCustomMapOptionDescAt(argsList):
  190.     """
  191.     Returns name of value of option at specified row
  192.     argsList[0] is Option ID (int)
  193.     argsList[1] is Selection Value ID (int)
  194.     Return a Unicode string
  195.     """
  196.     return u""
  197.     
  198. def getCustomMapOptionDefault(argsList):
  199.     """
  200.     Returns default value of specified option
  201.     argsList[0] is Option ID (int)
  202.     Return an integer
  203.     """
  204.     return 0
  205.     
  206. def isRandomCustomMapOption(argsList):
  207.     """
  208.     Returns a flag indicating whether a random option should be provided
  209.     argsList[0] is Option ID (int)
  210.     Return a bool
  211.     """
  212.     return true
  213.  
  214. """
  215. MAP SIZE AND WRAPPING FUNCTIONS
  216. """
  217.  
  218. # note: you must override both getWrap...() functions or neither
  219.  
  220. def getWrapX():
  221.     "Can be overridden to change whether the map wraps around in the X direction. Default is true"
  222.     CyPythonMgr().allowDefaultImpl()
  223.     
  224. def getWrapY():
  225.     "Can be overridden to change whether the map wraps around in the Y direction. Default is false"
  226.     CyPythonMgr().allowDefaultImpl()
  227.  
  228. def getTopLatitude():
  229.     "Can be overridden to change whether the the top latitude. Default is 90"
  230.     CyPythonMgr().allowDefaultImpl()
  231.  
  232. def getBottomLatitude():
  233.     "Can be overridden to change whether the the bottom latitude. Default is -90"
  234.     CyPythonMgr().allowDefaultImpl()
  235.  
  236. def isBonusIgnoreLatitude():
  237.     "Can be overridden to determine whether bonus generation ignores latitude. Default is false"
  238.     CyPythonMgr().allowDefaultImpl()
  239.  
  240. def getGridSize(argsList):
  241.     """Given an argument of [worldSize], where worldSize is of type WorldSizeTypes.
  242.     Can be overridden to return a (width, height) tuple representing the number of terrain cells
  243.     the world should have. (a terrain cell is a chunk of 4x4 plots)"""
  244.     [worldSize] = argsList
  245.     CyPythonMgr().allowDefaultImpl()
  246.     #return (width, height)
  247.  
  248. """
  249. MAP GENERATION FUNCTIONS
  250. """
  251.  
  252. def generateRandomMap():
  253.     """Can be overridden if you want to manually control the sequence in which plot types, heights, and terrain are generated.
  254.     
  255.     WARNING: If you override this function, then none of the following functions will be automatically called for you:
  256.         generateTerrain()
  257.         generatePlotTypes()
  258.     
  259.     However, unless you have some specific reason to change the sequence of map generation, you should probably just override
  260.     one or more of the functions listed above.
  261.     """
  262.     CyPythonMgr().allowDefaultImpl()
  263.  
  264. def generateTerrain(argsList):
  265.     "returns a list of terrain data for all pixels on the map, indexed with (0,0) in NW"
  266.     CyPythonMgr().allowDefaultImpl()
  267.  
  268. def generatePlotTypes():
  269.     """Can override to return a list with a PlotTypes value for each plots on the map.
  270.     Returned list should have size CyMapGenerator().numPlots()."""
  271.     CyPythonMgr().allowDefaultImpl()
  272.  
  273. """
  274. GAME ELEMENT PLACEMENT FUNCTIONS
  275. """
  276.  
  277. def beforeInit():
  278.     "Called before the map is initialized"
  279.  
  280. def beforeGeneration():
  281.     "Called before the map generation starts"
  282.  
  283. def addRivers():
  284.     "Should add all desired rivers to the map."
  285.     CyPythonMgr().allowDefaultImpl()
  286.  
  287. def getRiverStartCardinalDirection(argsList):
  288.     pPlot = argsList[0]
  289.     "Returns the cardinal direction of the first river segment."
  290.     CyPythonMgr().allowDefaultImpl()
  291.  
  292. def getRiverAltitude(argsList):
  293.     pPlot = argsList[0]
  294.     "Returns the altitude level of pPlot (rivers will flow to the lowest point)."
  295.     CyPythonMgr().allowDefaultImpl()
  296.  
  297. def addLakes():
  298.     "Can override to control where lakes are added on the map"
  299.     CyPythonMgr().allowDefaultImpl()
  300.     
  301. def addFeatures():
  302.     "Can override to control where features (i.e. forest, oasis, flood plains, etc.) are added on the map"
  303.     CyPythonMgr().allowDefaultImpl()
  304.  
  305. def addBonuses():
  306.     "Can override to control where bonuses are added on the map"
  307.     CyPythonMgr().allowDefaultImpl()
  308.  
  309. def addBonusType(argsList):
  310.     "Can override to control where a type of bonus is added on the map"
  311.     """WARNING: If addBonuses() is overriden then this function will not automatically be called."""
  312.     [iBonusType] = argsList
  313.     CyPythonMgr().allowDefaultImpl()
  314.  
  315. def canPlaceBonusAt(argsList):
  316.     "Can override to determine if a bonus can be placed at the specified plot"
  317.     """WARNING: If addBonuses() is overriden then this function will not automatically be called."""
  318.     pPlot = argsList[0]
  319.     CyPythonMgr().allowDefaultImpl()
  320.  
  321. def addGoodies():
  322.     "Can override to control where goodies are added on the map"
  323.     CyPythonMgr().allowDefaultImpl()
  324.  
  325. def canPlaceGoodyAt(argsList):
  326.     pPlot = argsList[0]
  327.     "Can override to determine if a goody can be placed at the specified plot"
  328.     CyPythonMgr().allowDefaultImpl()
  329.  
  330. def afterGeneration():
  331.     "Called after the map generation is finished"
  332.  
  333. """
  334. STARTING PLOT FUNCTIONS
  335. """
  336.  
  337. def minStartingDistanceModifier():
  338.     "Returns a percent modification for the minimum distance between players (return 50 would mean +50%)"
  339.     return 0
  340.  
  341. def assignStartingPlots():
  342.     "Can assign as many starting locations as desired"
  343.     CyPythonMgr().allowDefaultImpl()
  344.  
  345. def findStartingArea(argsList):
  346.     """Can override to return the ID of the area in which the given player should start. Return an areaID to
  347.     force the player to start in a certain area, or -1 to specify that the player should start in the best
  348.     location, irrespective of which area it is in. If not overridden, the default implementation will try
  349.     to maximize the size of the player's part of his area
  350.     
  351.     WARNING: If findStartingPlot() is overriden then this function will not automatically be called."""
  352.     playerID = argsList[0]
  353.     CyPythonMgr().allowDefaultImpl()
  354.  
  355. def findStartingPlot(argsList):
  356.     "Can override to return the plot index at which the given player should start"
  357.     playerID = argsList[0]
  358.     CyPythonMgr().allowDefaultImpl()
  359.  
  360. def normalizeStartingPlotLocations():
  361.     "Can override to change how starting plots are distributed. (note, this function is called after all starting locs are distributed...)"
  362.     CyPythonMgr().allowDefaultImpl()
  363.  
  364. def normalizeAddRiver():
  365.     "A normalize start function (called after starting plots are set) - this call adds a river."
  366.     CyPythonMgr().allowDefaultImpl()
  367.  
  368. def normalizeRemovePeaks():
  369.     "A normalize start function (called after starting plots are set) - this call removes peaks."
  370.     CyPythonMgr().allowDefaultImpl()
  371.  
  372. def normalizeAddLakes():
  373.     "A normalize start function (called after starting plots are set) - this call adds a lake."
  374.     CyPythonMgr().allowDefaultImpl()
  375.  
  376. def normalizeRemoveBadFeatures():
  377.     "A normalize start function (called after starting plots are set) - this call removes bad features."
  378.     CyPythonMgr().allowDefaultImpl()
  379.  
  380. def normalizeRemoveBadTerrain():
  381.     "A normalize start function (called after starting plots are set) - this call removes bad terrain."
  382.     CyPythonMgr().allowDefaultImpl()
  383.  
  384. def normalizeAddFoodBonuses():
  385.     "A normalize start function (called after starting plots are set) - this call adds food bonuses."
  386.     CyPythonMgr().allowDefaultImpl()
  387.  
  388. def normalizeAddGoodTerrain():
  389.     "A normalize start function (called after starting plots are set) - this call adds good terrain."
  390.     CyPythonMgr().allowDefaultImpl()
  391.  
  392. def normalizeAddExtras():
  393.     "A normalize start function (called after starting plots are set) - this call adds extra features and bonuses."
  394.     CyPythonMgr().allowDefaultImpl()
  395.  
  396. def startHumansOnSameTile():
  397.     "Returns true if all human units should start on the same tile"
  398.     return False
  399.