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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3. from CvPythonExtensions import *
  4. import CvUtil
  5. import Popup as PyPopup
  6.  
  7. #globals
  8. gc = CyGlobalContext()
  9.  
  10. # This is an interface file for handling Python Popup Function Calls
  11. # argsList = (iData1, iData2)
  12.  
  13. # Assign the function by using the 'addPythonButton' function in pyHelper/Popup
  14. # This allows you to specify a strFunctionName. If the player clicks that button then this file
  15. # will be called with the specified function name.
  16.  
  17. # ie: addPythonButton( self, strFunctionName, strButtonText, strHelpText, strArtPointer = "Art\Interface\Popups\PopupRadioButton.kfm", iData1 = -1, iData2 = -1, bOption = True):    
  18.  
  19. def initTestPopup():
  20.  
  21.     # make a popup
  22.     popup=CyPopup(-1,EventContextTypes.NO_EVENTCONTEXT, 1)
  23.  
  24.     # set the header string, this will go outside the scrollable area
  25.     popup.setHeaderString("Test Popup", CvUtil.FONT_CENTER_JUSTIFY)
  26.  
  27.     # set a body string
  28.     popup.setBodyString("This is a test popup.", CvUtil.FONT_LEFT_JUSTIFY)
  29.  
  30.     # make 3 buttons
  31.     for i in range(2):
  32.         strButtonText = "Button " + str(i)
  33.         strHelpText = "Help text for button " + str(i)
  34.         popup.addButton(strButtonText)
  35.  
  36.     #make 4 radiobuttons in group 0
  37.     popup.createRadioButtons(2, 0)
  38.     for i in range(2):
  39.         strRadioText = "RadioButton " + str(i)
  40.         # set radioButtons text of button i, group 0 to strRadioText
  41.         popup.setRadioButtonText(i, strRadioText, 0)
  42.  
  43.     # make 5 checkboxes in group 0
  44.     popup.createCheckBoxes(3, 0)
  45.     for i in range(3):
  46.         strCheckboxText = "Checkbox " + str(i)
  47.         # set checkbox text of button i, group 0 to strCheckboxText
  48.         popup.setCheckBoxText(i, strCheckboxText, 0)
  49.  
  50.     # make a editbox
  51.     popup.createEditBox("EditBox1", 0)
  52.  
  53.     # make a pulldown
  54.     popup.createPullDown( 0 )
  55.     # make 5 pulldown strings
  56.     for i in range(5):
  57.         szPullDownString = "PullDown String " + str(i)
  58.         popup.addPullDownString( szPullDownString, i, 0 )
  59.     popup.setSelectedPulldownID( 2, 0 );
  60.  
  61.     # make a listbox
  62.     popup.createListBox( 0 )
  63.     for i in range(6):
  64.         szListBoxString = "ListBox String " + str(i)
  65.         popup.addListBoxString( szListBoxString, i, 0 )
  66.     popup.setSelectedListBoxString( 1, 0 )
  67.  
  68.     # add a dds
  69.     popup.addDDS( "art/interface/buttons/unit/Caravel.dds", 280, 100, 32, 32 )
  70.  
  71.     popup.launch(true, PopupStates.POPUPSTATE_IMMEDIATE)
  72.  
  73. def initPythonTestPopup():
  74.  
  75.     # make a popup
  76.     popup=CyPopup(-1,EventContextTypes.NO_EVENTCONTEXT, 1)
  77.  
  78.     # set the header string, this will go outside the scrollable area
  79.     popup.setHeaderString("Test Popup", CvUtil.FONT_CENTER_JUSTIFY)
  80.  
  81.     # set a body string
  82.     popup.setPythonBodyString("This is a test popup.", "initTestPopup", "Will init the non-python popup", CvUtil.FONT_LEFT_JUSTIFY)
  83.  
  84.     # make 2 python buttons
  85.     strButtonText = "Button 1"
  86.     strHelpText = "Help text for button 1"
  87.     popup.addPythonButton( "showHelp", strButtonText, strHelpText, "art/interface/buttons/building/Granary.dds"  )
  88.  
  89.     strButtonText = "Button 2"
  90.     strHelpText = "Help text for button 2"
  91.     popup.addPythonButton( "showHelp", strButtonText, strHelpText, "art/interface/buttons/building/Granary.dds"  )
  92.  
  93.     #make 4 radiobuttons in group 0
  94.     popup.createPythonRadioButtons(2, 0)
  95.     for i in range(2):
  96.         strRadioText = "RadioButton " + str(i)
  97.         strRadioHelpText = "RadioButton Help Text " + str(i)
  98.         # set radioButtons text of button i, group 0 to strRadioText
  99.         popup.setPythonRadioButtonText(i, strRadioText, strRadioHelpText, 0)
  100.  
  101.     # make 5 checkboxes in group 0
  102.     popup.createPythonCheckBoxes(3, 0)
  103.     for i in range(3):
  104.         strCheckboxText = "Checkbox " + str(i)
  105.         strCheckBoxHelp = "Checkbox Help Text " + str(i)
  106.         # set checkbox text of button i, group 0 to strCheckboxText
  107.         popup.setPythonCheckBoxText(i, strCheckboxText, strCheckBoxHelp, 0)
  108.  
  109.     # make a editbox
  110.     popup.createPythonEditBox("EditBox1", "Editbox Help Text", 0)
  111.  
  112.     # make a pulldown
  113.     popup.createPythonPullDown( "Pulldown Help Text", 0 )
  114.     # make 5 pulldown strings
  115.     for i in range(5):
  116.         szPullDownString = "PullDown String " + str(i)
  117.         popup.addPullDownString( szPullDownString, i, 0 )
  118.     popup.setSelectedPulldownID( 2, 0 );
  119.  
  120.     # make a listbox
  121.     popup.createPythonListBox( "ListBox Help String", 0 )
  122.     for i in range(6):
  123.         szListBoxString = "ListBox String " + str(i)
  124.         popup.addListBoxString( szListBoxString, i, 0 )
  125.     popup.setSelectedListBoxString( 1, 0 )
  126.  
  127.     # make a listbox
  128.     popup.createPythonListBox( "ListBox Help String 2", 1 )
  129.     for i in range(4):
  130.         szListBoxString = "ListBox String " + str(i)
  131.         popup.addListBoxString( szListBoxString, i, 1 )
  132.     popup.setSelectedListBoxString( 1, 1 )
  133.     
  134.     # add a dds
  135.     popup.addPythonDDS( "art/interface/buttons/unit/Caravel.dds", "DDS Help text", 280, 100, 32, 32 )
  136.  
  137.     popup.launch(true, PopupStates.POPUPSTATE_IMMEDIATE)
  138.  
  139.  
  140.