home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2006 January / Gamestar_80_2006-01_dvd.iso / Dema / Civilization4 / data1.cab / Civ4DemoComponent / Assets / Python / Screens / CvPediaUnitChart.py < prev    next >
Encoding:
Python Source  |  2005-11-09  |  5.9 KB  |  145 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 CvPediaUnitChart:
  14.     "Civilopedia Screen for Unit Combat Groups"
  15.  
  16.     def __init__(self, main):
  17.         self.iGroup = -1
  18.         self.top = main
  19.             
  20.         self.X_UNITS = 50
  21.         self.Y_UNITS = 95
  22.         self.W_UNITS = 700
  23.         self.H_UNITS = 570
  24.         self.DX_UNITS = 150
  25.         self.DY_UNITS = 40
  26.         self.Y_TEXT_MARGIN = 6
  27.  
  28.     # Screen construction function
  29.     def interfaceScreen(self, iGroup):    
  30.             
  31.         self.iGroup = iGroup
  32.     
  33.         self.top.deleteAllWidgets()                        
  34.                             
  35.         screen = self.top.getScreen()
  36.         
  37.         bNotActive = (not screen.isActive())
  38.         if bNotActive:
  39.             self.top.setPediaCommonWidgets()
  40.  
  41.         # Header...
  42.         if (self.iGroup >= gc.getNumUnitCombatInfos()):
  43.             szHeader = localText.getText("TXT_KEY_PEDIA_ALL_UNITS", ())
  44.         else:
  45.             szHeader = gc.getUnitCombatInfo(self.iGroup).getDescription()
  46.         szHeader = u"<font=4b>" + szHeader.upper() + u"</font>"
  47.         szHeaderId = self.top.getNextWidgetName()
  48.         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)
  49.         
  50.         # Top
  51.         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_UNIT_GROUP, -1)
  52.  
  53.         if self.top.iLastScreen    != CvScreenEnums.PEDIA_UNIT_CHART or bNotActive:        
  54.             self.placeLinks()
  55.             self.top.iLastScreen = CvScreenEnums.PEDIA_UNIT_CHART
  56.                 
  57.         self.placeUnitTable()
  58.                         
  59.     def placeUnitTable(self):
  60.         screen = self.top.getScreen()
  61.         
  62.         panelName = self.top.getNextWidgetName()
  63.         screen.addPanel( panelName, "", "", true, true,
  64.             self.X_UNITS, self.Y_UNITS, self.W_UNITS, self.H_UNITS, PanelStyles.PANEL_STYLE_BLUE50 )
  65.         
  66.         iMargin = 40
  67.         panelName2 = self.top.getNextWidgetName()
  68.         screen.addPanel( panelName2, "", "", true, true,
  69.                                  self.X_UNITS + iMargin, self.Y_UNITS + iMargin, self.W_UNITS - (iMargin * 2), self.H_UNITS - (iMargin * 2), PanelStyles.PANEL_STYLE_BLUE50 )
  70.         szTable = self.top.getNextWidgetName()
  71.         screen.addTableControlGFC(szTable, 4,
  72.             self.X_UNITS + iMargin, self.Y_UNITS + iMargin + 5, self.W_UNITS - (iMargin * 2), self.H_UNITS - (iMargin * 2) - 10, True, False, 32,32, TableStyles.TABLE_STYLE_EMPTY)
  73.         screen.enableSort(szTable)
  74.             
  75. #        screen.attachTableControlGFC( panelName, szTable, 4, False, True, 32, 32, TableStyles.TABLE_STYLE_EMPTY );
  76.             
  77.         iTableWidth = self.W_UNITS - (iMargin * 2)
  78.         iColWidth = int(iTableWidth * (7 / 19.0))
  79.         screen.setTableColumnHeader(szTable, 0, "", iColWidth)
  80.         iColWidth = int(iTableWidth * (4 / 19.0))
  81.         screen.setTableColumnHeader(szTable, 1, u"%c" % CyGame().getSymbolID(FontSymbols.STRENGTH_CHAR), iColWidth)
  82.         screen.setTableColumnHeader(szTable, 2, u"%c" % CyGame().getSymbolID(FontSymbols.MOVES_CHAR), iColWidth)
  83.         screen.setTableColumnHeader(szTable, 3, u"%c" % gc.getYieldInfo(YieldTypes.YIELD_PRODUCTION).getChar(), iColWidth)
  84.                     
  85.         # count units in this group
  86.         nUnits = 0
  87.         for j in range(gc.getNumUnitInfos()):
  88.             if (self.iGroup == gc.getUnitInfo(j).getUnitCombatType() or self.iGroup == gc.getNumUnitCombatInfos()):
  89.                 nUnits += 1
  90.  
  91.         dy = self.DY_UNITS
  92.         yTextMargin = self.Y_TEXT_MARGIN
  93.         if (self.iGroup == gc.getNumUnitCombatInfos()):
  94.             dy = self.DY_UNITS/2
  95.             yTextMargin = 0
  96.  
  97.         # sort Units by strength
  98.         i = 0
  99.         unitsList=[(0,0,0,0,0)]*nUnits
  100.         for j in range(gc.getNumUnitInfos()):
  101.             if (self.iGroup == gc.getUnitInfo(j).getUnitCombatType() or self.iGroup == gc.getNumUnitCombatInfos()):
  102.                 if (gc.getUnitInfo(j).getProductionCost() < 0):
  103.                     szCost = localText.getText("TXT_KEY_NON_APPLICABLE", ())
  104.                 else:
  105.                     szCost = unicode(gc.getUnitInfo(j).getProductionCost())# + u"%c" % gc.getYieldInfo(YieldTypes.YIELD_PRODUCTION).getChar()
  106.                 unitsList[i] = (gc.getUnitInfo(j).getCombat(), gc.getUnitInfo(j).getMoves(), szCost, gc.getUnitInfo(j).getDescription(), j)
  107.                 i += 1
  108.         #unitsList.sort()
  109.  
  110.         for i in range(nUnits):            
  111.             iRow = screen.appendTableRow(szTable)
  112.             screen.setTableText(szTable, 0, iRow, u"<font=3>" + unitsList[i][3] + u"</font>", "", WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)                        
  113.             screen.setTableInt(szTable, 1, iRow, u"<font=3>" + unicode(unitsList[i][0]) + u"</font>", "", WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  114.             screen.setTableInt(szTable, 2, iRow, u"<font=3>" + unicode(unitsList[i][1]) + u"</font>", "", WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  115.             screen.setTableInt(szTable, 3, iRow, u"<font=3>" + unicode(unitsList[i][2]) + u"</font>", "", WidgetTypes.WIDGET_GENERAL, -1, -1, CvUtil.FONT_LEFT_JUSTIFY)
  116.  
  117.     def placeLinks(self):
  118.  
  119.         screen = self.top.getScreen()
  120.                 
  121.         screen.clearListBoxGFC(self.top.LIST_ID)
  122.         
  123.         # sort groups alphabetically
  124.         listSorted=[(0 ,0)] * gc.getNumUnitCombatInfos()
  125.         for j in range(gc.getNumUnitCombatInfos()):
  126.             listSorted[j] = (gc.getUnitCombatInfo(j).getDescription(), j)
  127.         listSorted.sort()            
  128.  
  129.         iSelected = 0            
  130.         screen.appendListBoxString( self.top.LIST_ID, localText.getText("TXT_KEY_PEDIA_ALL_GROUPS", ()), WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT_COMBAT, gc.getNumUnitCombatInfos(), 0, CvUtil.FONT_LEFT_JUSTIFY )
  131.         if self.iGroup == gc.getNumUnitCombatInfos():
  132.             iSelected = 0
  133.  
  134.         for iI in range(gc.getNumUnitCombatInfos()):
  135.             screen.appendListBoxString( self.top.LIST_ID, listSorted[iI][0], WidgetTypes.WIDGET_PEDIA_JUMP_TO_UNIT_COMBAT, listSorted[iI][1], 0, CvUtil.FONT_LEFT_JUSTIFY )
  136.             if listSorted[iI][1] == self.iGroup:
  137.                 iSelected = iI+1            
  138.  
  139.         screen.setSelectedListBoxStringGFC(self.top.LIST_ID, iSelected)
  140.         
  141.     # Will handle the input for this screen...
  142.     def handleInput (self, inputClass):
  143.         return 0
  144.  
  145.