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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5. import ScreenInput
  6. import string
  7.  
  8. localText = CyTranslator()
  9.  
  10. class CvTechSplashScreen:
  11.     "Splash screen for techs"
  12.     def __init__(self, iScreenID):
  13.         self.nScreenId = iScreenID
  14.             
  15.         self.iTech = -1
  16.         self.nWidgetCount = 0
  17.         
  18.         # widget names
  19.         self.WIDGET_ID = "TechSplashScreenWidget"
  20.         self.SCREEN_NAME = "TechSplashScreen"
  21.         self.EXIT_ID = "TechSplashExit"
  22.         
  23.         self.X_SCREEN = 205
  24.         self.Y_SCREEN = 27
  25.         self.W_SCREEN = 1024
  26.         self.H_SCREEN = 768
  27.         self.Z_BACKGROUND = -1.1
  28.         self.Z_CONTROLS = self.Z_BACKGROUND - 0.2
  29.         self.DZ = -0.2
  30.         
  31.         self.Z_HELP_AREA = self.Z_CONTROLS - 2
  32.         self.W_HELP_AREA = 200
  33.         
  34.         # Panels
  35.         
  36.         self.iMarginSpace = 15
  37.         
  38.         self.X_MAIN_PANEL = 205
  39.         self.Y_MAIN_PANEL = 55
  40.         self.W_MAIN_PANEL = 620
  41.         self.H_MAIN_PANEL = 545
  42.         
  43.         # Upper Panel
  44.         
  45.         self.X_UPPER_PANEL = self.X_MAIN_PANEL + self.iMarginSpace
  46.         self.Y_UPPER_PANEL = self.Y_MAIN_PANEL + self.iMarginSpace
  47.         self.W_UPPER_PANEL = self.W_MAIN_PANEL - (self.iMarginSpace * 2)
  48.         self.H_UPPER_PANEL = 200
  49.         
  50.         self.X_TITLE = self.X_MAIN_PANEL + (self.W_MAIN_PANEL / 2)
  51.         self.Y_TITLE = self.Y_UPPER_PANEL + 12
  52.         
  53.         self.W_ICON = 64#90
  54.         self.H_ICON = 64#90
  55.         self.X_ICON = self.X_UPPER_PANEL + 56#23#42
  56.         self.Y_ICON = self.Y_UPPER_PANEL + (self.H_UPPER_PANEL / 2) - (self.H_ICON / 2) + 17
  57.         
  58.         self.X_ICON_PANEL = self.X_UPPER_PANEL + self.iMarginSpace + 2
  59.         self.Y_ICON_PANEL = self.Y_UPPER_PANEL + self.iMarginSpace + 33
  60.         self.W_ICON_PANEL = 140
  61.         self.H_ICON_PANEL = 135#self.H_MAIN_PANEL - (self.iMarginSpace * 2)
  62.         
  63.         self.X_QUOTE = self.X_UPPER_PANEL + self.W_ICON_PANEL + (self.iMarginSpace * 2)
  64.         self.Y_QUOTE = self.Y_UPPER_PANEL + self.iMarginSpace + 36
  65.         self.W_QUOTE = 400
  66.         self.H_QUOTE = self.H_UPPER_PANEL - (self.iMarginSpace * 2) - 38
  67.         
  68.         # Lower Panel
  69.         
  70.         self.X_LOWER_PANEL = self.X_MAIN_PANEL + self.iMarginSpace
  71.         self.Y_LOWER_PANEL = self.Y_UPPER_PANEL + self.H_UPPER_PANEL + self.iMarginSpace - 10
  72.         self.W_LOWER_PANEL = self.W_MAIN_PANEL - (self.iMarginSpace * 2)
  73.         self.H_LOWER_PANEL = 275#self.H_MAIN_PANEL - (self.iMarginSpace * 2)
  74.         
  75.         self.X_SPECIAL_PANEL = self.X_LOWER_PANEL + self.iMarginSpace
  76.         self.Y_SPECIAL_PANEL = self.Y_LOWER_PANEL + self.iMarginSpace + 25
  77.         self.W_SPECIAL_PANEL = self.W_LOWER_PANEL - (self.iMarginSpace * 2)
  78.         self.H_SPECIAL_PANEL = int(self.H_LOWER_PANEL / 2.5)#- (self.iMarginSpace * 2)
  79.         
  80.         self.X_ALLOWS_PANEL = self.X_LOWER_PANEL + self.iMarginSpace
  81.         self.Y_ALLOWS_PANEL = self.Y_SPECIAL_PANEL + self.H_SPECIAL_PANEL+ self.iMarginSpace + 15
  82.         self.W_ALLOWS_PANEL = self.W_LOWER_PANEL - (self.iMarginSpace * 2)
  83.         self.H_ALLOWS_PANEL = 80
  84.         
  85.         # Contents
  86.         
  87.         self.X_EXIT = self.X_MAIN_PANEL + (self.W_MAIN_PANEL / 2) - 55
  88.         self.Y_EXIT = self.Y_MAIN_PANEL + self.H_MAIN_PANEL - 45
  89.         self.W_EXIT = 120
  90.         self.H_EXIT = 30    
  91.         
  92.     def interfaceScreen(self, iTech):
  93.         
  94.         self.EXIT_TEXT = localText.getText("TXT_KEY_SCREEN_CONTINUE", ())
  95.         self.nTechs = CyGlobalContext().getNumTechInfos()
  96.         self.iTech = iTech
  97.         self.nWidgetCount = 0
  98.         
  99.         # Create screen
  100.         
  101.         screen = self.getScreen()
  102.         
  103.         techInfo = CyGlobalContext().getTechInfo(self.iTech)
  104.         
  105.         screen.setSound(techInfo.getSound())
  106.         screen.showScreen(PopupStates.POPUPSTATE_IMMEDIATE, False)
  107.         screen.enableWorldSounds( false )
  108.     
  109. #        screen.setHelpTextArea(self.W_HELP_AREA, FontTypes.SMALL_FONT, self.X_UNIT_PANE, self.Y_UNIT_PANE, self.Z_HELP_AREA, 1, CyArtFileMgr().getInterfaceArtInfo("POPUPS_BACKGROUND_TRANSPARENT").getPath(), True, True, CvUtil.FONT_LEFT_JUSTIFY, 0 )
  110. #        screen.addDDSGFC( "TechSplashBackground", CyArtFileMgr().getInterfaceArtInfo("TEMP_BG").getPath(), 0, 0, self.W_SCREEN, self.H_SCREEN, WidgetTypes.WIDGET_GENERAL, -1, -1 )
  111.         screen.showWindowBackground( False )
  112.         screen.setDimensions(screen.centerX(0), screen.centerY(0), self.W_SCREEN, self.H_SCREEN)
  113.         
  114.         # Create panels
  115.         
  116.         # Main Panel
  117.         szMainPanel = "TechSplashMainPanel"
  118.         screen.addPanel( szMainPanel, "", "", true, true,
  119.             self.X_MAIN_PANEL, self.Y_MAIN_PANEL, self.W_MAIN_PANEL, self.H_MAIN_PANEL, PanelStyles.PANEL_STYLE_MAIN )
  120.         
  121.         # Top Panel
  122.         szHeaderPanel = "TechSplashHeaderPanel"
  123.         screen.addPanel( szHeaderPanel, "", "", true, true,
  124.             self.X_UPPER_PANEL, self.Y_UPPER_PANEL, self.W_UPPER_PANEL, self.H_UPPER_PANEL, PanelStyles.PANEL_STYLE_DAWNBOTTOM )
  125.         screen.setStyle(szHeaderPanel, "Panel_DawnBottom_Style")
  126.         
  127.         # Icon Panel
  128.         szIconPanel = "IconPanel"
  129.         screen.addPanel( szIconPanel, "", "", true, true,
  130.             self.X_ICON_PANEL, self.Y_ICON_PANEL, self.W_UPPER_PANEL-(self.iMarginSpace * 2), self.H_UPPER_PANEL-(self.iMarginSpace * 4), PanelStyles.PANEL_STYLE_MAIN_TAN15 )
  131.         screen.setStyle(szIconPanel, "Panel_TechDiscover_Style")
  132.         
  133.         # Icon Panel
  134.         szIconPanel = "IconPanelGlow"
  135.         screen.addPanel( szIconPanel, "", "", true, true,
  136.             self.X_ICON_PANEL, self.Y_ICON_PANEL, self.W_ICON_PANEL, self.H_ICON_PANEL, PanelStyles.PANEL_STYLE_MAIN_TAN15 )
  137.         screen.setStyle(szIconPanel, "Panel_TechDiscoverGlow_Style")
  138.         
  139.         # Bottom Panel
  140.         szTextPanel = "TechSplashTextPanel"
  141.         screen.addPanel( szTextPanel, "", "", true, true,
  142.             self.X_LOWER_PANEL+self.iMarginSpace, self.Y_LOWER_PANEL, self.W_LOWER_PANEL-(self.iMarginSpace * 2), self.H_LOWER_PANEL, PanelStyles.PANEL_STYLE_MAIN )
  143.         screen.setStyle(szTextPanel, "Panel_TanT_Style")
  144.         
  145.         # Exit Button
  146.         screen.setButtonGFC("Exit", localText.getText("TXT_KEY_SCREEN_CONTINUE", ()), "", self.X_EXIT, self.Y_EXIT, self.W_EXIT , self.H_EXIT, WidgetTypes.WIDGET_CLOSE_SCREEN, -1, -1, ButtonStyles.BUTTON_STYLE_STANDARD )
  147.         
  148.         # Special Panel
  149.         szSpecialPanel = "TechSplashSpecialPanel"
  150.         screen.addPanel( szSpecialPanel, "", "", true, true,
  151.                 self.X_SPECIAL_PANEL+self.iMarginSpace, self.Y_SPECIAL_PANEL, self.W_SPECIAL_PANEL-(self.iMarginSpace * 2), self.H_SPECIAL_PANEL, PanelStyles.PANEL_STYLE_IN )
  152.         screen.setStyle(szSpecialPanel, "Panel_Black25_Style")
  153.         
  154.         # Allows Panel
  155.         panelName = self.getNextWidgetName()
  156.         screen.addPanel( panelName, "", "", false, true,
  157.                                  self.X_ALLOWS_PANEL+self.iMarginSpace, self.Y_ALLOWS_PANEL, self.W_ALLOWS_PANEL-(self.iMarginSpace * 2), self.H_ALLOWS_PANEL, PanelStyles.PANEL_STYLE_IN )
  158.         screen.setStyle(panelName, "Panel_Black25_Style")
  159.         
  160.         # Add Contents
  161.         
  162.         # Title
  163.         szTech = techInfo.getDescription()
  164.         screen.setLabel(self.getNextWidgetName(), "Background", u"<font=4>" + szTech.upper() + u"</font>", CvUtil.FONT_CENTER_JUSTIFY,
  165.             self.X_TITLE, self.Y_TITLE, self.Z_CONTROLS, FontTypes.GAME_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1 )
  166.         
  167.         # Tech Icon
  168.         screen.addDDSGFC(self.getNextWidgetName(), techInfo.getButton(), self.X_ICON, self.Y_ICON, self.W_ICON, self.H_ICON, WidgetTypes.WIDGET_PEDIA_JUMP_TO_TECH, self.iTech, -1 )
  169.         
  170.         # Tech Quote
  171.         if techInfo.getQuote():
  172.             szQuotePanel = "TechSplashQuotePanel"
  173.             #screen.addPanel( szQuotePanel, "", "", true, true,
  174.              #                    self.X_QUOTE, self.Y_QUOTE, self.W_QUOTE, self.H_QUOTE, PanelStyles.PANEL_STYLE_IN )
  175.         
  176. #            screen.attachMultilineText( szQuotePanel, "Text", techInfo.getQuote(), WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  177.             screen.addMultilineText( "Text", techInfo.getQuote(),
  178.                          self.X_QUOTE, self.Y_QUOTE + self.iMarginSpace*2, self.W_QUOTE - (self.iMarginSpace * 2), self.H_QUOTE - (self.iMarginSpace * 2), WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_CENTER_JUSTIFY)
  179. #            screen.attachTextGFC(szQuotePanel, "", techInfo.getQuote(), FontTypes.GAME_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  180.         
  181.         # Special
  182.         szSpecialTitle = u"<font=3b>" + localText.getText("TXT_KEY_PEDIA_SPECIAL_ABILITIES", ()) + u"</font>"
  183.         szSpecialTitleWidget = "SpecialTitle"
  184.         screen.setText(szSpecialTitleWidget, "", szSpecialTitle, CvUtil.FONT_LEFT_JUSTIFY,
  185.                    self.X_SPECIAL_PANEL+self.iMarginSpace, self.Y_SPECIAL_PANEL - 20, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  186.         
  187.         listName = self.getNextWidgetName()
  188.         screen.attachListBoxGFC( szSpecialPanel, listName, "", TableStyles.TABLE_STYLE_EMPTY )
  189.         screen.enableSelect(listName, False)
  190.         
  191.         szSpecialText = CyGameTextMgr().getTechHelp(self.iTech, True, False, False, True, -1)
  192.         splitText = string.split( szSpecialText, "\n" )
  193.         for special in splitText:
  194.             if len( special ) != 0:
  195.                 screen.appendListBoxString( listName, special, WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY )
  196.         
  197.         # Allows
  198.         szAllowsTitleDesc = u"<font=3b>" + localText.getText("TXT_KEY_PEDIA_ALLOWS", ()) + ":" + u"</font>"
  199.         szAllowsTitleWidget = "AllowsTitle"
  200.         screen.setText(szAllowsTitleWidget, "", szAllowsTitleDesc, CvUtil.FONT_LEFT_JUSTIFY,
  201.                    self.X_ALLOWS_PANEL+self.iMarginSpace, self.Y_ALLOWS_PANEL - 20, 0, FontTypes.TITLE_FONT, WidgetTypes.WIDGET_GENERAL, -1, -1)
  202.         
  203.         for j in range( CyGlobalContext().getNumUnitClassInfos() ):
  204.             eLoopUnit = CyGlobalContext().getCivilizationInfo(CyGlobalContext().getGame().getActiveCivilizationType()).getCivilizationUnits(j)
  205.             if (eLoopUnit != -1):
  206.                 if (isTechRequiredForUnit(self.iTech, eLoopUnit)):
  207.                         screen.attachImageButton( panelName, "", CyGlobalContext().getUnitInfo(eLoopUnit).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM,
  208.                                   WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT, eLoopUnit, 1, False )
  209.  
  210.         for j in range(CyGlobalContext().getNumBuildingClassInfos()):
  211.             bTechFound = 0
  212.             eLoopBuilding = CyGlobalContext().getCivilizationInfo(CyGlobalContext().getGame().getActiveCivilizationType()).getCivilizationBuildings(j)
  213.             if (eLoopBuilding != -1):
  214.                 if (isTechRequiredForBuilding(self.iTech, eLoopBuilding)):
  215.                         screen.attachImageButton( panelName, "", CyGlobalContext().getBuildingInfo(eLoopBuilding).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM,
  216.                                   WidgetTypes.WIDGET_PEDIA_JUMP_TO_BUILDING, eLoopBuilding, 1, False )
  217.  
  218.         for j in range(CyGlobalContext().getNumProjectInfos()):
  219.             bTechFound = 0
  220.             if (isTechRequiredForProject(self.iTech, j)):
  221.                 screen.attachImageButton( panelName, "", CyGlobalContext().getProjectInfo(j).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM,
  222.                               WidgetTypes.WIDGET_PEDIA_JUMP_TO_PROJECT, j, 1, False )
  223.                               
  224.         for j in range(CyGlobalContext().getNumPromotionInfos()):
  225.             if (CyGlobalContext().getPromotionInfo(j).getTechPrereq() == self.iTech):
  226.                 screen.attachImageButton( panelName, "", CyGlobalContext().getPromotionInfo(j).getButton(), GenericButtonSizes.BUTTON_SIZE_CUSTOM,
  227.                               WidgetTypes.WIDGET_PEDIA_JUMP_TO_PROMOTION, j, 1, False )
  228.                 
  229.  
  230.     # returns a unique ID for a widget in this screen
  231.     def getNextWidgetName(self):
  232.         szName = self.WIDGET_ID + str(self.nWidgetCount * self.nTechs + self.iTech)
  233.         self.nWidgetCount += 1
  234.         return szName
  235.         
  236.     # returns a unique ID for this screen
  237.     def getScreen(self):
  238.         screen = CyGInterfaceScreen(self.SCREEN_NAME + str(self.iTech), self.nScreenId)
  239.         return screen
  240.                     
  241.     def handleInput( self, inputClass ):
  242.         if ( inputClass.getData() == int(InputTypes.KB_RETURN) ):
  243.             self.getScreen().hideScreen()
  244.             return 1
  245.         if (inputClass.getNotifyCode() == NotifyCode.NOTIFY_CLICKED):
  246.             if (inputClass.getFunctionName() == self.EXIT_ID):
  247.                 self.getScreen().hideScreen()
  248.             return 1
  249.         return 0
  250.         
  251.     def update(self, fDelta):
  252.         return
  253.  
  254.         
  255.         
  256.