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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5. import ScreenInput
  6. import CvScreenEnums
  7. import string
  8.  
  9. # globals
  10. gc = CyGlobalContext()
  11. ArtFileMgr = CyArtFileMgr()
  12. localText = CyTranslator()
  13.  
  14. class CvPediaBonus:
  15.     "Civilopedia Screen for Bonus Resources"
  16.  
  17.     def __init__(self, main):
  18.         self.iBonus = -1
  19.         self.top = main
  20.         
  21.         self.X_BONUS_PANE = 20
  22.         self.Y_BONUS_PANE = 55
  23.         self.W_BONUS_PANE = 433
  24.         self.H_BONUS_PANE = 210
  25.         
  26.         self.X_BONUS_ANIMATION = 475
  27.         self.Y_BONUS_ANIMATION = 63
  28.         self.W_BONUS_ANIMATION = 303
  29.         self.H_BONUS_ANIMATION = 200
  30.         self.X_ROTATION_BONUS_ANIMATION = -20
  31.         self.Z_ROTATION_BONUS_ANIMATION = 30
  32.         self.SCALE_ANIMATION = 0.6
  33.         
  34.         self.X_ICON = 48
  35.         self.Y_ICON = 90
  36.         self.W_ICON = 150
  37.         self.H_ICON = 150
  38.         self.ICON_SIZE = 64
  39.         
  40.         self.X_STATS_PANE = 200
  41.         self.Y_STATS_PANE = 150
  42.         self.W_STATS_PANE = 240
  43.         self.H_STATS_PANE = 200
  44.         
  45.         iWidthBuffer = 20
  46.         iHeightBuffer = 0
  47.         
  48.         self.X_IMPROVEMENTS_PANE = 20
  49.         self.Y_IMPROVEMENTS_PANE = self.Y_BONUS_PANE + self.H_BONUS_PANE + iHeightBuffer
  50.         self.W_IMPROVEMENTS_PANE = 300
  51.         self.H_IMPROVEMENTS_PANE = 110
  52.         
  53.         self.X_EFFECTS_PANE = self.X_IMPROVEMENTS_PANE + self.W_IMPROVEMENTS_PANE + iWidthBuffer
  54.         self.Y_EFFECTS_PANE = self.Y_BONUS_PANE + self.H_BONUS_PANE + iHeightBuffer
  55.         self.W_EFFECTS_PANE = 440
  56.         self.H_EFFECTS_PANE = 110
  57.         
  58.         self.X_REQUIRES = 20
  59.         self.Y_REQUIRES = self.Y_IMPROVEMENTS_PANE + self.H_IMPROVEMENTS_PANE + iHeightBuffer
  60.         self.W_REQUIRES = 300
  61.         self.H_REQUIRES = 110
  62.         
  63.         self.X_HISTORY_PANE = self.X_REQUIRES + self.W_REQUIRES + iWidthBuffer
  64.         self.Y_HISTORY_PANE = self.Y_EFFECTS_PANE + self.H_EFFECTS_PANE + iHeightBuffer
  65.         self.W_HISTORY_PANE = 440
  66.         self.H_HISTORY_PANE = 220
  67.         
  68.         self.X_BUILDINGS = 20
  69.         self.Y_BUILDINGS = self.Y_REQUIRES + self.H_REQUIRES + iHeightBuffer
  70.         self.W_BUILDINGS = 300
  71.         self.H_BUILDINGS = 110
  72.         
  73.         self.X_ALLOWS_PANE = 20
  74.         self.Y_ALLOWS_PANE = self.Y_BUILDINGS + self.H_BUILDINGS + iHeightBuffer
  75.         self.W_ALLOWS_PANE = 760
  76.         self.H_ALLOWS_PANE = 110
  77.         
  78.     # Screen construction function
  79.     def interfaceScreen(self, iBonus):    
  80.             
  81.         self.iBonus = iBonus
  82.     
  83.         self.top.deleteAllWidgets()                        
  84.                             
  85.         screen = self.top.getScreen()
  86.         
  87.         bNotActive = (not screen.isActive())
  88.         if bNotActive:
  89.             self.top.setPediaCommonWidgets()
  90.  
  91.         # Header...
  92.         szHeader = u"<font=4b>" + gc.getBonusInfo(self.iBonus).getDescription().upper() + u"</font>"
  93.         szHeaderId = self.top.getNextWidgetName()
  94.         screen.setLabel(szHeaderId, "Background", szHeader, CvUtil.FONT_CENTER_JUSTIFY, self.top.X_SCREEN, self.top.Y_TITLE, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_GENERAL, CivilopediaPageTypes.CIVILOPEDIA_PAGE_BONUS, iBonus)
  95.         
  96.         # Top
  97.         screen.setText(self.top.getNextWidgetName(), "Background", self.top.MENU_TEXT, CvUtil.FONT_LEFT_JUSTIFY, self.top.X_MENU, self.top.Y_MENU, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_PEDIA_MAIN, CivilopediaPageTypes.CIVILOPEDIA_PAGE_BONUS, -1)
  98.  
  99.         if self.top.iLastScreen    != CvScreenEnums.PEDIA_BONUS or bNotActive:        
  100.             self.placeLinks()
  101.             self.top.iLastScreen = CvScreenEnums.PEDIA_BONUS
  102.         
  103.         # Icon
  104.         screen.addPanel( self.top.getNextWidgetName(), "", "", False, False,
  105.             self.X_BONUS_PANE, self.Y_BONUS_PANE, self.W_BONUS_PANE, self.H_BONUS_PANE, PanelStyles.PANEL_STYLE_BLUE50)
  106.         screen.addPanel(self.top.getNextWidgetName(), "", "", false, false,
  107.             self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, PanelStyles.PANEL_STYLE_MAIN)
  108.         screen.addDDSGFC(self.top.getNextWidgetName(), gc.getBonusInfo(self.iBonus).getButton(),
  109.             self.X_ICON + self.W_ICON/2 - self.ICON_SIZE/2, self.Y_ICON + self.H_ICON/2 - self.ICON_SIZE/2, self.ICON_SIZE, self.ICON_SIZE, WidgetTypes.WIDGET_GENERAL, -1, -1 )
  110. #        screen.addDDSGFC(self.top.getNextWidgetName(), gc.getBonusInfo(self.iBonus).getButton(), self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, WidgetTypes.WIDGET_GENERAL, self.iBonus, -1 )
  111.  
  112.         # Bonus animation
  113.         screen.addBonusGraphicGFC(self.top.getNextWidgetName(), self.iBonus,
  114.             self.X_BONUS_ANIMATION, self.Y_BONUS_ANIMATION, self.W_BONUS_ANIMATION, self.H_BONUS_ANIMATION, WidgetTypes.WIDGET_GENERAL, -1, -1, self.X_ROTATION_BONUS_ANIMATION, self.Z_ROTATION_BONUS_ANIMATION, self.SCALE_ANIMATION, True)
  115.         
  116.         self.placeStats()
  117.         
  118.         self.placeYield()
  119.     
  120.         self.placeRequires()
  121.         
  122.         self.placeBuildings()
  123.         self.placeAllows()
  124.         
  125.         self.placeSpecial()
  126.         
  127.         self.placeHistory()
  128.  
  129.         return
  130.  
  131.     def placeStats(self):
  132.     
  133.         screen = self.top.getScreen()
  134.         
  135.         panelName = self.top.getNextWidgetName()
  136.         screen.addListBoxGFC(panelName, "", self.X_STATS_PANE, self.Y_STATS_PANE, self.W_STATS_PANE, self.H_STATS_PANE, TableStyles.TABLE_STYLE_EMPTY)
  137. #        screen.addPanel( panelName, "", "", true, true, self.X_STATS_PANE, self.Y_STATS_PANE, self.W_STATS_PANE, self.H_STATS_PANE, PanelStyles.PANEL_STYLE_EMPTY )
  138.         screen.enableSelect(panelName, False)
  139.         
  140.         for k in range(YieldTypes.NUM_YIELD_TYPES):
  141.             iYieldChange = gc.getBonusInfo(self.iBonus).getYieldChange(k)
  142.             if (iYieldChange != 0):                                        
  143.                 if (iYieldChange > 0):
  144.                     sign = "+"
  145.                 else:
  146.                     sign = ""
  147.                     
  148.                 szYield = (u"%s: %s%i " % (gc.getYieldInfo(k).getDescription(), sign, iYieldChange))
  149.                 screen.appendListBoxString(panelName, u"<font=4>" + szYield.upper() + (u"%c" % gc.getYieldInfo(k).getChar()) + u"</font>", WidgetTypes.WIDGET_GENERAL, 0, 0, CvUtil.FONT_LEFT_JUSTIFY)
  150. #                screen.attachTextGFC(panelName, "", szYield.upper() + (u"%c" % gc.getYieldInfo(k).getChar()), FontTypes.GAME_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  151.                                         
  152.     def placeYield(self):
  153.         
  154.         screen = self.top.getScreen()
  155.         
  156.         panelName = self.top.getNextWidgetName()
  157.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_CATEGORY_IMPROVEMENT", ()), "", true, true,
  158.                  self.X_IMPROVEMENTS_PANE, self.Y_IMPROVEMENTS_PANE, self.W_IMPROVEMENTS_PANE, self.H_IMPROVEMENTS_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  159.         
  160.         bonusInfo = gc.getBonusInfo(self.iBonus)
  161.     
  162.         for j in range(gc.getNumImprovementInfos()):
  163.             bFirst = True
  164.             szYield = u""
  165.             bEffect = False
  166.             for k in range(YieldTypes.NUM_YIELD_TYPES):
  167.                 iYieldChange = gc.getImprovementInfo(j).getImprovementBonusYield(self.iBonus, k)
  168.                 if (iYieldChange != 0):
  169.                     bEffect = True
  170.                     iYieldChange += gc.getImprovementInfo(j).getYieldChange(k)
  171.                     
  172.                     if (bFirst):
  173.                         bFirst = False
  174.                     else:
  175.                         szYield += ", "
  176.                     
  177.                     if (iYieldChange > 0):
  178.                         sign = "+"
  179.                     else:
  180.                         sign = ""
  181.                         
  182.                     szYield += (u"%s%i%c" % (sign, iYieldChange, gc.getYieldInfo(k).getChar()))
  183.             if (bEffect):
  184.                 childPanelName = self.top.getNextWidgetName()
  185.                 screen.attachPanel(panelName, childPanelName, "", "", False, False, PanelStyles.PANEL_STYLE_EMPTY)
  186.                 
  187.                 screen.attachLabel(childPanelName, "", "  ")
  188.                 screen.attachImageButton(childPanelName, "", gc.getImprovementInfo(j).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_IMPROVEMENT, j, 1, False )
  189.                 screen.attachLabel(childPanelName, "", szYield)
  190.                 
  191.     def placeSpecial(self):
  192.         
  193.         screen = self.top.getScreen()
  194.         
  195.         panelName = self.top.getNextWidgetName()
  196.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_EFFECTS", ()), "", true, false,
  197.                  self.X_EFFECTS_PANE, self.Y_EFFECTS_PANE, self.W_EFFECTS_PANE, self.H_EFFECTS_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  198.                         
  199.         listName = self.top.getNextWidgetName()
  200.         screen.attachListBoxGFC( panelName, listName, "", TableStyles.TABLE_STYLE_EMPTY )
  201.         screen.enableSelect(listName, False)
  202.         
  203.         szSpecialText = CyGameTextMgr().getBonusHelp(self.iBonus, True)
  204.         splitText = string.split( szSpecialText, "\n" )
  205.         for special in splitText:
  206.             if len( special ) != 0:
  207.                 screen.appendListBoxString( listName, special, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY )
  208.  
  209.     def placeRequires(self):
  210.         
  211.         screen = self.top.getScreen()
  212.         
  213.         panelName = self.top.getNextWidgetName()
  214.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_REQUIRES", ()), "", false, true,
  215.                  self.X_REQUIRES, self.Y_REQUIRES, self.W_REQUIRES, self.H_REQUIRES, PanelStyles.PANEL_STYLE_BLUE50 )
  216.         
  217.         screen.attachLabel(panelName, "", "  ")
  218.         
  219.         iTech = gc.getBonusInfo(self.iBonus).getTechReveal()
  220.         if (iTech > -1):
  221.             screen.attachImageButton( panelName, "", gc.getTechInfo(iTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, iTech, 1, False )
  222.             screen.attachLabel(panelName, "", u"(" + localText.getText("TXT_KEY_PEDIA_BONUS_APPEARANCE", ()) + u")")
  223.         iTech = gc.getBonusInfo(self.iBonus).getTechCityTrade()
  224.         if (iTech > -1):
  225.             screen.attachImageButton( panelName, "", gc.getTechInfo(iTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, iTech, 1, False )
  226.             screen.attachLabel(panelName, "", u"(" + localText.getText("TXT_KEY_PEDIA_BONUS_TRADE", ()) + u")")
  227.     
  228.     def placeHistory(self):
  229.         
  230.         screen = self.top.getScreen()
  231.         
  232.         panelName = self.top.getNextWidgetName()
  233.         screen.addPanel( panelName, "History", "", True, True,
  234.             self.X_HISTORY_PANE, self.Y_HISTORY_PANE, self.W_HISTORY_PANE, self.H_HISTORY_PANE,
  235.             PanelStyles.PANEL_STYLE_BLUE50)
  236.         
  237.         screen.attachLabel(panelName, "", "  ")
  238.         
  239.         textName = self.top.getNextWidgetName()
  240.         screen.addMultilineText( textName, gc.getBonusInfo(self.iBonus).getCivilopedia(), self.X_HISTORY_PANE + 15, self.Y_HISTORY_PANE + 40,
  241.             self.W_HISTORY_PANE - (15 * 2), self.H_HISTORY_PANE - (15 * 2) - 25, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  242. #        screen.attachMultilineText( panelName, textName, gc.getBonusInfo(self.iBonus).getCivilopedia(),
  243. #            WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY )
  244.             
  245.     def placeBuildings(self):
  246.         
  247.         screen = self.top.getScreen()
  248.  
  249.         panelName = self.top.getNextWidgetName()
  250.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_CATEGORY_BUILDING", ()), "", false, true, self.X_BUILDINGS, self.Y_BUILDINGS, self.W_BUILDINGS, self.H_BUILDINGS, PanelStyles.PANEL_STYLE_BLUE50 )
  251.         
  252.         screen.attachLabel(panelName, "", "  ")
  253.         
  254.         for iBuilding in range(gc.getNumBuildingInfos()):
  255.             if (gc.getBuildingInfo(iBuilding).getFreeBonus() == self.iBonus):
  256.                 screen.attachImageButton( panelName, "", gc.getBuildingInfo(iBuilding).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_BUILDING, iBuilding, 1, False )
  257.         
  258.     def placeAllows(self):
  259.         
  260.         screen = self.top.getScreen()
  261.  
  262.         panelName = self.top.getNextWidgetName()
  263.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_ALLOWS", ()), "", false, true,
  264.                  self.X_ALLOWS_PANE, self.Y_ALLOWS_PANE, self.W_ALLOWS_PANE, self.H_ALLOWS_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  265.         
  266.         screen.attachLabel(panelName, "", "  ")
  267.         
  268.         # add unit buttons
  269. #        for k in range(gc.getNumUnitClassInfos()):
  270. #            eLoopUnit = gc.getCivilizationInfo(gc.getGame().getActiveCivilizationType()).getCivilizationUnits(k)
  271.         for eLoopUnit in range(gc.getNumUnitInfos()):
  272.             bFound = False
  273.             if (eLoopUnit >= 0):
  274.                 if (gc.getUnitInfo(eLoopUnit).getPrereqAndBonus() == self.iBonus):
  275.                     bFound = True    
  276.                 else:
  277.                     j = 0
  278.                     while (not bFound and j < gc.getNUM_UNIT_PREREQ_OR_BONUSES()):
  279.                         if (gc.getUnitInfo(eLoopUnit).getPrereqOrBonuses(j) == self.iBonus):
  280.                             bFound = True
  281.                         j += 1
  282.             if bFound:
  283.                 screen.attachImageButton( panelName, "", gc.getUnitInfo(eLoopUnit).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT, eLoopUnit, 1, False )
  284.  
  285.         for eLoopBuilding in range(gc.getNumBuildingInfos()):
  286.             bFound = False
  287.             if (gc.getBuildingInfo(eLoopBuilding).getPrereqAndBonus() == self.iBonus):
  288.                 bFound = True    
  289.             else:
  290.                 j = 0
  291.                 while (not bFound and j < gc.getNUM_BUILDING_PREREQ_OR_BONUSES()):
  292.                     if (gc.getBuildingInfo(eLoopBuilding).getPrereqOrBonuses(j) == self.iBonus):
  293.                         bFound = True
  294.                     j += 1
  295.             if bFound:
  296.                 screen.attachImageButton( panelName, "", gc.getBuildingInfo(eLoopBuilding).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_BUILDING, eLoopBuilding, 1, False )
  297.         
  298.     def placeLinks(self):
  299.  
  300.         screen = self.top.getScreen()
  301.  
  302.         screen.clearListBoxGFC(self.top.LIST_ID)
  303.         
  304.         # sort resources alphabetically
  305.         rowListName=[(0,0)]*gc.getNumBonusInfos()
  306.         for j in range(gc.getNumBonusInfos()):
  307.             rowListName[j] = (gc.getBonusInfo(j).getDescription(), j)
  308.         rowListName.sort()    
  309.         
  310.         iSelected = 0    
  311.         for iI in range(gc.getNumBonusInfos()):
  312.             screen.appendListBoxString(self.top.LIST_ID, rowListName[iI][0], WidgetTypes.WIDGET_PEDIA_JUMP_TO_BONUS, rowListName[iI][1], 0, CvUtil.FONT_LEFT_JUSTIFY )
  313.             if rowListName[iI][1] == self.iBonus:
  314.                 iSelected = iI            
  315.  
  316.         screen.setSelectedListBoxStringGFC(self.top.LIST_ID, iSelected)
  317.             
  318.     # Will handle the input for this screen...
  319.     def handleInput (self, inputClass):
  320.         return 0
  321.  
  322.  
  323.