home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / Screens / CvPediaCivilization.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  6.2 KB  |  173 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.  
  8. # globals
  9. gc = CyGlobalContext()
  10. ArtFileMgr = CyArtFileMgr()
  11. localText = CyTranslator()
  12.  
  13. class CvPediaCivilization:
  14.     "Civilopedia Screen for Civilizations"
  15.  
  16.     def __init__(self, main):
  17.         self.iCivilization = -1
  18.         self.top = main
  19.         
  20.         self.X_MAIN_PANE = 50
  21.         self.Y_MAIN_PANE = 90
  22.         self.W_MAIN_PANE = 250
  23.         self.H_MAIN_PANE = 210
  24.  
  25.         self.X_ICON = 98
  26.         self.Y_ICON = 125
  27.         self.W_ICON = 150
  28.         self.H_ICON = 150
  29.         self.ICON_SIZE = 64
  30.  
  31.         self.X_TECH = 330
  32.         self.Y_TECH = 70
  33.         self.W_TECH = 425
  34.         self.H_TECH = 110
  35.  
  36.         self.X_UNIT = 330
  37.         self.Y_UNIT = 190
  38.         self.W_UNIT = 200
  39.         self.H_UNIT = 110
  40.  
  41.         self.X_LEADER = 555
  42.         self.Y_LEADER = 190
  43.         self.W_LEADER = 200
  44.         self.H_LEADER = 110
  45.  
  46.         self.X_TEXT = self.X_MAIN_PANE
  47.         self.Y_TEXT = self.Y_MAIN_PANE + self.H_MAIN_PANE + 20
  48.         self.W_TEXT = 705
  49.         self.H_TEXT = 350
  50.         
  51.     # Screen construction function
  52.     def interfaceScreen(self, iCivilization):    
  53.             
  54.         self.iCivilization = iCivilization
  55.     
  56.         self.top.deleteAllWidgets()                        
  57.                             
  58.         screen = self.top.getScreen()
  59.         
  60.         bNotActive = (not screen.isActive())
  61.         if bNotActive:
  62.             self.top.setPediaCommonWidgets()
  63.  
  64.         # Header...
  65.         szHeader = u"<font=4b>" + gc.getCivilizationInfo(self.iCivilization).getDescription().upper() + u"</font>"
  66.         szHeaderId = self.top.getNextWidgetName()
  67.         screen.setLabel(szHeaderId, "Background", szHeader, CvUtil.FONT_CENTER_JUSTIFY, self.top.X_SCREEN, self.top.Y_TITLE, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  68.         
  69.         # Top
  70.         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_CIV, -1)
  71.  
  72.         if self.top.iLastScreen    != CvScreenEnums.PEDIA_CIVILIZATION or bNotActive:        
  73.             self.placeLinks()
  74.             self.top.iLastScreen = CvScreenEnums.PEDIA_CIVILIZATION
  75.             
  76.         # Icon
  77.         screen.addPanel( self.top.getNextWidgetName(), "", "", False, False,
  78.             self.X_MAIN_PANE, self.Y_MAIN_PANE, self.W_MAIN_PANE, self.H_MAIN_PANE, PanelStyles.PANEL_STYLE_BLUE50)
  79.         screen.addPanel(self.top.getNextWidgetName(), "", "", false, false,
  80.             self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, PanelStyles.PANEL_STYLE_MAIN)
  81.         screen.addDDSGFC(self.top.getNextWidgetName(), ArtFileMgr.getCivilizationArtInfo(gc.getCivilizationInfo(self.iCivilization).getArtDefineTag()).getButton(),
  82.             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 )
  83.  
  84.         self.placeTech()
  85.         self.placeUnit()
  86.         self.placeLeader()
  87.         self.placeText()
  88.  
  89.         return
  90.  
  91.     def placeTech(self):
  92.         
  93.         screen = self.top.getScreen()
  94.         
  95.         panelName = self.top.getNextWidgetName()
  96.         screen.addPanel( panelName, localText.getText("TXT_KEY_FREE_TECHS", ()), "", false, true,
  97.                  self.X_TECH, self.Y_TECH, self.W_TECH, self.H_TECH, PanelStyles.PANEL_STYLE_BLUE50 )
  98.         screen.attachLabel(panelName, "", "  ")
  99.         
  100.         for iTech in range(gc.getNumTechInfos()):
  101.             if (gc.getCivilizationInfo(self.iCivilization).isCivilizationFreeTechs(iTech)):
  102.                 screen.attachImageButton( panelName, "", gc.getTechInfo(iTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, iTech, 1, False )
  103.             
  104.     def placeUnit(self):
  105.         
  106.         screen = self.top.getScreen()
  107.         
  108.         panelName = self.top.getNextWidgetName()
  109.         screen.addPanel( panelName, localText.getText("TXT_KEY_FREE_UNITS", ()), "", false, true,
  110.                  self.X_UNIT, self.Y_UNIT, self.W_UNIT, self.H_UNIT, PanelStyles.PANEL_STYLE_BLUE50 )
  111.         screen.attachLabel(panelName, "", "  ")
  112.                     
  113.         for iUnit in range(gc.getNumUnitClassInfos()):
  114.             iUniqueUnit = gc.getCivilizationInfo(self.iCivilization).getCivilizationUnits(iUnit);
  115.             iDefaultUnit = gc.getUnitClassInfo(iUnit).getDefaultUnitIndex();
  116.             if (iDefaultUnit > -1 and iUniqueUnit > -1 and iDefaultUnit != iUniqueUnit):
  117.                 screen.attachImageButton( panelName, "", gc.getUnitInfo(iUniqueUnit).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT, iUniqueUnit, 1, False )
  118.         
  119.     def placeLeader(self):
  120.         
  121.         screen = self.top.getScreen()
  122.         
  123.         panelName = self.top.getNextWidgetName()
  124.         screen.addPanel( panelName, localText.getText("TXT_KEY_CONCEPT_LEADERS", ()), "", false, true,
  125.                  self.X_LEADER, self.Y_LEADER, self.W_LEADER, self.H_LEADER, PanelStyles.PANEL_STYLE_BLUE50 )
  126.         screen.attachLabel(panelName, "", "  ")
  127.  
  128.         for iLeader in range(gc.getNumLeaderHeadInfos()):
  129.             civ = gc.getCivilizationInfo(self.iCivilization)
  130.             if civ.isLeaders(iLeader):
  131.                 screen.attachImageButton( panelName, "", gc.getLeaderHeadInfo(iLeader).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_LEADER, iLeader, 1, False )
  132.         
  133.     def placeText(self):
  134.         
  135.         screen = self.top.getScreen()
  136.         
  137.         panelName = self.top.getNextWidgetName()
  138.         screen.addPanel( panelName, "", "", true, true,
  139.                  self.X_TEXT, self.Y_TEXT, self.W_TEXT, self.H_TEXT, PanelStyles.PANEL_STYLE_BLUE50 )
  140.  
  141.         szText = gc.getCivilizationInfo(self.iCivilization).getCivilopedia()
  142.         screen.attachMultilineText( panelName, "Text", szText, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  143.                                                     
  144.     def placeLinks(self):
  145.  
  146.         screen = self.top.getScreen()
  147.         
  148.         screen.clearListBoxGFC(self.top.LIST_ID)
  149.         
  150.         # sort Improvements alphabetically
  151.         listSorted=[(0,0)]*gc.getNumCivilizationInfos()
  152.         for j in range(gc.getNumCivilizationInfos()):
  153.             listSorted[j] = (gc.getCivilizationInfo(j).getDescription(), j)
  154.         listSorted.sort()    
  155.             
  156.         iSelected = 0
  157.         i = 0
  158.         for iI in range(gc.getNumCivilizationInfos()):
  159.             if (gc.getCivilizationInfo(listSorted[iI][1]).isPlayable()):
  160.                 screen.appendListBoxString(self.top.LIST_ID, listSorted[iI][0], WidgetTypes.WIDGET_PEDIA_JUMP_TO_CIV, listSorted[iI][1], 0, CvUtil.FONT_LEFT_JUSTIFY )
  161.                 if listSorted[iI][1] == self.iCivilization:
  162.                     iSelected = i
  163.                 i += 1
  164.                     
  165.         screen.setSelectedListBoxStringGFC(self.top.LIST_ID, iSelected)
  166.             
  167.  
  168.     # Will handle the input for this screen...
  169.     def handleInput (self, inputClass):
  170.         return 0
  171.  
  172.  
  173.