home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / Screens / CvPediaReligion.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  5.3 KB  |  153 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 CvPediaReligion:
  15.     "Civilopedia Screen for Religions"
  16.  
  17.     def __init__(self, main):
  18.         self.iReligion = -1
  19.         self.top = main
  20.         
  21.         self.X_MAIN_PANE = 50
  22.         self.Y_MAIN_PANE = 90
  23.         self.W_MAIN_PANE = 250
  24.         self.H_MAIN_PANE = 210
  25.  
  26.         self.X_ICON = 98
  27.         self.Y_ICON = 125
  28.         self.W_ICON = 150
  29.         self.H_ICON = 150
  30.         self.ICON_SIZE = 64
  31.         
  32.         self.X_REQUIRES = 330
  33.         self.Y_REQUIRES = 70
  34.         self.W_REQUIRES = 425
  35.         self.H_REQUIRES = 110
  36.  
  37.         self.X_SPECIAL = 330
  38.         self.Y_SPECIAL = 190
  39.         self.W_SPECIAL = 425
  40.         self.H_SPECIAL = 110
  41.  
  42.         self.X_TEXT = self.X_MAIN_PANE
  43.         self.Y_TEXT = self.Y_MAIN_PANE + self.H_MAIN_PANE + 20
  44.         self.W_TEXT = 705
  45.         self.H_TEXT = 350
  46.         
  47.     # Screen construction function
  48.     def interfaceScreen(self, iReligion):    
  49.             
  50.         self.iReligion = iReligion
  51.     
  52.         self.top.deleteAllWidgets()                        
  53.                             
  54.         screen = self.top.getScreen()
  55.         
  56.         bNotActive = (not screen.isActive())
  57.         if bNotActive:
  58.             self.top.setPediaCommonWidgets()
  59.  
  60.         # Header...
  61.         szHeader = u"<font=4b>" + gc.getReligionInfo(self.iReligion).getDescription().upper() + u"</font>"
  62.         szHeaderId = self.top.getNextWidgetName()
  63.         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)
  64.         
  65.         # Top
  66.         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_RELIGION, -1)
  67.  
  68.         if self.top.iLastScreen    != CvScreenEnums.PEDIA_RELIGION or bNotActive:        
  69.             self.placeLinks()
  70.             self.top.iLastScreen = CvScreenEnums.PEDIA_RELIGION
  71.  
  72.         # Icon
  73.         screen.addPanel( self.top.getNextWidgetName(), "", "", False, False,
  74.             self.X_MAIN_PANE, self.Y_MAIN_PANE, self.W_MAIN_PANE, self.H_MAIN_PANE, PanelStyles.PANEL_STYLE_BLUE50)
  75.         screen.addPanel(self.top.getNextWidgetName(), "", "", false, false,
  76.             self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, PanelStyles.PANEL_STYLE_MAIN)
  77.         screen.addDDSGFC(self.top.getNextWidgetName(), gc.getReligionInfo(self.iReligion).getButton(),
  78.             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 )
  79.  
  80.         self.placeSpecial()
  81.         self.placeRequires()
  82.         self.placeText()
  83.  
  84.     def placeRequires(self):
  85.         
  86.         screen = self.top.getScreen()
  87.         
  88.         panelName = self.top.getNextWidgetName()
  89.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_REQUIRES", ()), "", false, true,
  90.                  self.X_REQUIRES, self.Y_REQUIRES, self.W_REQUIRES, self.H_REQUIRES, PanelStyles.PANEL_STYLE_BLUE50 )
  91.         screen.attachLabel(panelName, "", "  ")
  92.         
  93.         iTech = gc.getReligionInfo(self.iReligion).getTechPrereq()
  94.         if (iTech > -1):
  95.             screen.attachImageButton( panelName, "", gc.getTechInfo(iTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, iTech, 1, False )
  96.             
  97.     def placeSpecial(self):
  98.         
  99.         screen = self.top.getScreen()
  100.         
  101.         panelName = self.top.getNextWidgetName()
  102.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_EFFECTS", ()), "", true, false,
  103.                  self.X_SPECIAL, self.Y_SPECIAL, self.W_SPECIAL, self.H_SPECIAL, PanelStyles.PANEL_STYLE_BLUE50 )
  104.                 
  105.         listName = self.top.getNextWidgetName()
  106.         screen.attachListBoxGFC( panelName, listName, "", TableStyles.TABLE_STYLE_EMPTY )
  107.         screen.enableSelect(listName, False)
  108.         
  109.         szSpecialText = CyGameTextMgr().parseReligionInfo(self.iReligion, True)
  110.         splitText = string.split( szSpecialText, "\n" )
  111.         for special in splitText:
  112.             if len( special ) != 0:
  113.                 screen.appendListBoxString( listName, special, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY )
  114.                 
  115.     def placeText(self):
  116.         
  117.         screen = self.top.getScreen()
  118.         
  119.         panelName = self.top.getNextWidgetName()
  120.         screen.addPanel( panelName, "", "", true, true,
  121.                  self.X_TEXT, self.Y_TEXT, self.W_TEXT, self.H_TEXT, PanelStyles.PANEL_STYLE_BLUE50 )
  122.  
  123.         szText = gc.getReligionInfo(self.iReligion).getCivilopedia()
  124.         screen.attachMultilineText( panelName, "Text", szText, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  125.         
  126.     def placeLinks(self):
  127.  
  128.         screen = self.top.getScreen()
  129.                 
  130.         screen.clearListBoxGFC(self.top.LIST_ID)
  131.         
  132.         # sort Improvements alphabetically
  133.         listSorted=[(0,0)]*gc.getNumReligionInfos()
  134.         for j in range(gc.getNumReligionInfos()):
  135.             listSorted[j] = (gc.getReligionInfo(j).getDescription(), j)
  136.         listSorted.sort()    
  137.             
  138.         iSelected = 0
  139.         i = 0
  140.         for iI in range(gc.getNumReligionInfos()):
  141.             screen.appendListBoxString( self.top.LIST_ID, listSorted[iI][0], WidgetTypes.WIDGET_PEDIA_JUMP_TO_RELIGION, listSorted[iI][1], 0, CvUtil.FONT_LEFT_JUSTIFY )
  142.             if listSorted[iI][1] == self.iReligion:
  143.                 iSelected = i
  144.             i += 1
  145.  
  146.         screen.setSelectedListBoxStringGFC(self.top.LIST_ID, iSelected)
  147.         
  148.     # Will handle the input for this screen...
  149.     def handleInput (self, inputClass):
  150.         return 0
  151.  
  152.  
  153.