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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5. import CvPediaScreen
  6. import ScreenInput
  7. import CvScreenEnums
  8. import string
  9.  
  10. # globals
  11. gc = CyGlobalContext()
  12. ArtFileMgr = CyArtFileMgr()
  13. localText = CyTranslator()
  14.  
  15. class CvPediaTech(CvPediaScreen.CvPediaScreen):
  16.     "Civilopedia Screen for Techs"
  17.  
  18.     def __init__(self, main):
  19.         self.iTech = -1
  20.         self.top = main
  21.     
  22.         self.X_TECH_PANE = 20
  23.         self.Y_TECH_PANE = 70
  24.         self.W_TECH_PANE = 433
  25.         self.H_TECH_PANE = 210
  26.  
  27.         self.X_ICON = 48
  28.         self.Y_ICON = 105
  29.         self.W_ICON = 150
  30.         self.H_ICON = 150
  31.         self.ICON_SIZE = 64
  32.  
  33.         self.X_COST = 210
  34.         self.Y_COST = 165
  35.         
  36.         self.BUTTON_SIZE = 64
  37.  
  38.         self.X_QUOTE_PANE = 475
  39.         self.Y_QUOTE_PANE = 70
  40.         self.W_QUOTE_PANE = 303
  41.         self.H_QUOTE_PANE = 210
  42.  
  43.         self.X_UNIT_PANE = 410
  44.         self.Y_UNIT_PANE = 430
  45.         self.W_UNIT_PANE = 368
  46.         self.H_UNIT_PANE = 124
  47.  
  48.         self.X_BUILDING_PANE = 410
  49.         self.Y_BUILDING_PANE = 568
  50.         self.W_BUILDING_PANE = 368
  51.         self.H_BUILDING_PANE = 124
  52.  
  53.         self.X_PREREQ_PANE = 20
  54.         self.Y_PREREQ_PANE = 292
  55.         self.W_PREREQ_PANE = 368
  56.         self.H_PREREQ_PANE = 124
  57.  
  58.         self.X_LEADS_TO_PANE = 410
  59.         self.Y_LEADS_TO_PANE = 292
  60.         self.W_LEADS_TO_PANE = 368
  61.         self.H_LEADS_TO_PANE = 124
  62.  
  63.         self.X_SPECIAL_PANE = 20
  64.         self.Y_SPECIAL_PANE = 430
  65.         self.W_SPECIAL_PANE = 368
  66.         self.H_SPECIAL_PANE = 262
  67.  
  68.     def interfaceScreen(self, iTech):    
  69.                         
  70.         self.iTech = iTech
  71.     
  72.         self.top.deleteAllWidgets()                        
  73.                             
  74.         screen = self.top.getScreen()
  75.         
  76.         bNotActive = (not screen.isActive())
  77.         if bNotActive:
  78.             self.top.setPediaCommonWidgets()
  79.  
  80.         # Header...
  81.         szHeader = u"<font=4b>" + gc.getTechInfo(self.iTech).getDescription().upper() + u"</font>"
  82.         screen.setText(self.top.getNextWidgetName(), "Background", szHeader, CvUtil.FONT_CENTER_JUSTIFY, self.top.X_SCREEN, self.top.Y_TITLE, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_PEDIA_DESCRIPTION, CivilopediaPageTypes.CIVILOPEDIA_PAGE_TECH, iTech)
  83.         screen.setImageButton(self.top.getNextWidgetName(), ArtFileMgr.getInterfaceArtInfo("INTERFACE_GENERAL_CIVILOPEDIA_ICON").getPath(), self.top.X_EXIT, self.top.Y_TITLE, 32, 32, WidgetTypes.WIDGET_PEDIA_DESCRIPTION,  CivilopediaPageTypes.CIVILOPEDIA_PAGE_TECH, iTech)
  84.         
  85.         # Top
  86.         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_TECH, -1)
  87.  
  88.         if self.top.iLastScreen    != CvScreenEnums.PEDIA_TECH or bNotActive:        
  89.             self.placeLinks()
  90.             self.top.iLastScreen = CvScreenEnums.PEDIA_TECH
  91.  
  92.         screen.addPanel( self.top.getNextWidgetName(), "", "", False, False, self.X_TECH_PANE, self.Y_TECH_PANE, self.W_TECH_PANE, self.H_TECH_PANE, PanelStyles.PANEL_STYLE_BLUE50)
  93.  
  94.         # Icon
  95.         screen.addPanel(self.top.getNextWidgetName(), "", "", false, false, self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, PanelStyles.PANEL_STYLE_MAIN)
  96.         screen.addDDSGFC(self.top.getNextWidgetName(), gc.getTechInfo(self.iTech).getButton(), 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 )
  97.         
  98.         szCostId = self.top.getNextWidgetName()
  99.         if self.top.iActivePlayer == -1:
  100.             szCostText = localText.getText("TXT_KEY_PEDIA_COST", ( gc.getTechInfo(iTech).getResearchCost(), ) ) + u"%c" % (gc.getCommerceInfo(CommerceTypes.COMMERCE_RESEARCH).getChar())
  101.         else:
  102.             szCostText = localText.getText("TXT_KEY_PEDIA_COST", ( gc.getTeam(gc.getGame().getActiveTeam()).getResearchCost(iTech), ) ) + u"%c" % (gc.getCommerceInfo(CommerceTypes.COMMERCE_RESEARCH).getChar())
  103.         screen.setLabel(szCostId, "Background", u"<font=4>" + szCostText.upper() + u"</font>", CvUtil.FONT_LEFT_JUSTIFY, self.X_COST + 25, self.Y_COST, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  104.                         
  105.         # Place Required techs
  106.         self.placePrereqs()
  107.  
  108.         # Place Allowing techs
  109.         self.placeLeadsTo()
  110.         
  111.         # Place Units
  112.         self.placeUnits()
  113.         
  114.         # Place buildings
  115.         self.placeBuildings()
  116.         
  117.         # Place the Special abilities block
  118.         self.placeSpecial()
  119.  
  120.         # Place the quote for this technology        
  121.         self.placeQuote()
  122.             
  123.  
  124.     # Place prereqs...
  125.     def placeLeadsTo(self):
  126.  
  127.         screen = self.top.getScreen()
  128.         
  129.         # add pane and text
  130.         szLeadsTo = localText.getText("TXT_KEY_PEDIA_LEADS_TO", ())
  131.                 
  132.         panelName = self.top.getNextWidgetName()
  133.         screen.addPanel(panelName, szLeadsTo, "", false, true, self.X_LEADS_TO_PANE, self.Y_LEADS_TO_PANE, self.W_LEADS_TO_PANE, self.H_LEADS_TO_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  134.         
  135.         screen.attachLabel(panelName, "", "  ")
  136.  
  137.         for j in range(gc.getNumTechInfos()):
  138.             for k in range(gc.getDefineINT("NUM_OR_TECH_PREREQS")):
  139.                 iPrereq = gc.getTechInfo(j).getPrereqOrTechs(k)
  140.                 if (iPrereq == self.iTech):
  141.                         screen.attachImageButton( panelName, "", gc.getTechInfo(j).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_DERIVED_TECH, j, self.iTech, False )
  142.             for k in range(gc.getDefineINT("NUM_AND_TECH_PREREQS")):
  143.                 iPrereq = gc.getTechInfo(j).getPrereqAndTechs(k)
  144.                 if (iPrereq == self.iTech):
  145.                         screen.attachImageButton( panelName, "", gc.getTechInfo(j).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_DERIVED_TECH, j, self.iTech, False )
  146.  
  147.     # Place prereqs...
  148.     def placePrereqs(self):
  149.         
  150.         screen = self.top.getScreen()
  151.         
  152.         szRequires = localText.getText("TXT_KEY_PEDIA_REQUIRES", ())
  153.         
  154.         panelName = self.top.getNextWidgetName()
  155.         screen.addPanel( panelName, szRequires, "", false, true, self.X_PREREQ_PANE, self.Y_PREREQ_PANE, self.W_PREREQ_PANE, self.H_PREREQ_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  156.         
  157.         screen.attachLabel(panelName, "", "  ")
  158.         
  159.         bFirst = True
  160.         for j in range(gc.getDefineINT("NUM_AND_TECH_PREREQS")):
  161.             eTech = gc.getTechInfo(self.iTech).getPrereqAndTechs(j)
  162.             if (eTech > -1):
  163.                 if (not bFirst):
  164.                     screen.attachLabel(panelName, "", localText.getText("TXT_KEY_AND", ()))
  165.                 else:
  166.                     bFirst = False
  167.                 screen.attachImageButton( panelName, "", gc.getTechInfo(eTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_REQUIRED_TECH, eTech, j, False )
  168.                     
  169.         # count the number of OR techs
  170.         nOrTechs = 0
  171.         for j in range(gc.getDefineINT("NUM_OR_TECH_PREREQS")):
  172.             if (gc.getTechInfo(self.iTech).getPrereqOrTechs(j) > -1):
  173.                 nOrTechs += 1
  174.                 
  175.         szLeftDelimeter = ""
  176.         szRightDelimeter = ""
  177.         #  Display a bracket if we have more than one OR tech and at least one AND tech
  178.         if (not bFirst):
  179.             if (nOrTechs > 1):
  180.                 szLeftDelimeter = localText.getText("TXT_KEY_AND", ()) + "( "
  181.                 szRightDelimeter = " ) "
  182.             elif (nOrTechs > 0):
  183.                 szLeftDelimeter = localText.getText("TXT_KEY_AND", ())
  184.             else:
  185.                 return
  186.  
  187.         if len(szLeftDelimeter) > 0:
  188.             screen.attachLabel(panelName, "", szLeftDelimeter)
  189.             
  190.         bFirst = True
  191.         for j in range(gc.getDefineINT("NUM_OR_TECH_PREREQS")):
  192.             eTech = gc.getTechInfo(self.iTech).getPrereqOrTechs(j)
  193.             if (eTech > -1):
  194.                 if (not bFirst):
  195.                     screen.attachLabel(panelName, "", localText.getText("TXT_KEY_OR", ()))
  196.                 else:
  197.                     bFirst = False
  198.                 screen.attachImageButton( panelName, "", gc.getTechInfo(eTech).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_REQUIRED_TECH, eTech, j, False )                    
  199.             
  200.         if len(szRightDelimeter) > 0:
  201.             screen.attachLabel(panelName, "", szRightDelimeter)
  202.  
  203.                 
  204.     # Place units...
  205.     def placeUnits(self):
  206.  
  207.         screen = self.top.getScreen()
  208.         panelName = self.top.getNextWidgetName()
  209.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_UNITS_ENABLED", ()), "", false, true, self.X_UNIT_PANE, self.Y_UNIT_PANE, self.W_UNIT_PANE, self.H_UNIT_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  210.         
  211.         screen.attachLabel(panelName, "", "  ")
  212.         
  213. #        for j in range( gc.getNumUnitClassInfos() ):
  214. #            eLoopUnit = gc.getCivilizationInfo(gc.getGame().getActiveCivilizationType()).getCivilizationUnits(j)
  215.         for eLoopUnit in range(gc.getNumUnitInfos()):
  216.             if (eLoopUnit != -1):
  217.                 if (isTechRequiredForUnit(self.iTech, eLoopUnit)):
  218.                         screen.attachImageButton( panelName, "", gc.getUnitInfo(eLoopUnit).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT, eLoopUnit, 1, False )
  219.  
  220.     # Place buildings...
  221.     def placeBuildings(self):
  222.  
  223.         screen = self.top.getScreen()
  224.         
  225.         panelName = self.top.getNextWidgetName()
  226.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_BUILDINGS_ENABLED", ()), "", false, true, self.X_BUILDING_PANE, self.Y_BUILDING_PANE, self.W_BUILDING_PANE, self.H_BUILDING_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  227.         
  228.         screen.attachLabel(panelName, "", "  ")
  229.         
  230. #        for j in range(gc.getNumBuildingClassInfos()):
  231. #            eLoopBuilding = gc.getCivilizationInfo(gc.getGame().getActiveCivilizationType()).getCivilizationBuildings(j)
  232.         for eLoopBuilding in range(gc.getNumBuildingInfos()):
  233.             if (eLoopBuilding != -1):
  234.                 if (isTechRequiredForBuilding(self.iTech, eLoopBuilding)):
  235.                         screen.attachImageButton( panelName, "", gc.getBuildingInfo(eLoopBuilding).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_BUILDING, eLoopBuilding, 1, False )
  236.                         
  237.         for eLoopProject in range(gc.getNumProjectInfos()):
  238.             if (isTechRequiredForProject(self.iTech, eLoopProject)):
  239.                     screen.attachImageButton( panelName, "", gc.getProjectInfo(eLoopProject).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM, WidgetTypes.WIDGET_PEDIA_JUMP_TO_PROJECT, eLoopProject, 1, False )
  240.  
  241.     def placeSpecial(self):
  242.  
  243.         screen = self.top.getScreen()
  244.         
  245.         panelName = self.top.getNextWidgetName()
  246.         screen.addPanel( panelName, localText.getText("TXT_KEY_PEDIA_SPECIAL_ABILITIES", ()), "", true, false, self.X_SPECIAL_PANE, self.Y_SPECIAL_PANE, self.W_SPECIAL_PANE, self.H_SPECIAL_PANE, PanelStyles.PANEL_STYLE_BLUE50 )
  247.         
  248.         listName = self.top.getNextWidgetName()
  249.         screen.attachListBoxGFC( panelName, listName, "", TableStyles.TABLE_STYLE_EMPTY )
  250.         screen.enableSelect(listName, False)
  251.         
  252.         szSpecialText = CyGameTextMgr().getTechHelp(self.iTech, True, False, False, False, -1)
  253.         splitText = string.split( szSpecialText, "\n" )
  254.         for special in splitText:
  255.             if len( special ) != 0:
  256.                 screen.appendListBoxString( listName, special, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY )
  257.  
  258.     def placeQuote(self):
  259.         screen = self.top.getScreen()
  260.         
  261.         panelName = self.top.getNextWidgetName()
  262.         screen.addPanel(panelName, "", "", true, true,
  263.             self.X_QUOTE_PANE, self.Y_QUOTE_PANE, self.W_QUOTE_PANE, self.H_QUOTE_PANE, PanelStyles.PANEL_STYLE_BLUE50)
  264.  
  265.         szQuote = gc.getTechInfo(self.iTech).getQuote()
  266.         
  267.         szQuoteTextWidget = self.top.getNextWidgetName()
  268.         screen.addMultilineText( szQuoteTextWidget, szQuote, self.X_QUOTE_PANE + 15, self.Y_QUOTE_PANE + 15,
  269.             self.W_QUOTE_PANE - (15 * 2), self.H_QUOTE_PANE - (15 * 2), WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  270.         
  271.     def placeLinks(self):
  272.  
  273.         screen = self.top.getScreen()
  274.         
  275.         screen.clearListBoxGFC(self.top.LIST_ID)
  276.         
  277.         techsList = self.getSortedList( gc.getNumTechInfos(), gc.getTechInfo )
  278.         
  279.         iSelected = 0            
  280.         for iI in range(gc.getNumTechInfos()):
  281.             screen.appendListBoxString(self.top.LIST_ID, techsList[iI][0], WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, techsList[iI][1], 0, CvUtil.FONT_LEFT_JUSTIFY )
  282.             if techsList[iI][1] == self.iTech:
  283.                 iSelected = iI            
  284.  
  285.         screen.setSelectedListBoxStringGFC(self.top.LIST_ID, iSelected)
  286.                                 
  287.     # Will handle the input for this screen...
  288.     def handleInput (self, inputClass):
  289.         return 0
  290.