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

  1. ## Sid Meier's Civilization 4
  2. ## Copyright Firaxis Games 2005
  3.  
  4. # For Input see CvOptionsScreenCallbackInterface in Python\EntryPoints\
  5.  
  6. import CvUtil
  7. from CvPythonExtensions import *
  8.  
  9. # globals
  10. gc = CyGlobalContext()
  11. UserProfile = CyUserProfile()
  12. localText = CyTranslator()
  13.  
  14. class CvOptionsScreen:
  15.     "Options Screen"
  16.     
  17.     def __init__(self):
  18.         
  19.         self.iScreenHeight = 50
  20.         
  21.         self.iGameOptionsTabID        = 0
  22.         self.iGraphicOptionsTabID    = 1
  23.         self.iAudioOptionsTabID        = 2
  24.         self.iOtherOptionsTabID            = 3
  25.         
  26.         self.callbackIFace = "CvOptionsScreenCallbackInterface"
  27.         
  28.     def getTabControl(self):
  29.         return self.pTabControl
  30.         
  31.     def getGameOptionsTabName(self):
  32.         return self.szGameOptionsTabName
  33.     def getGraphicOptionsTabName(self):
  34.         return self.szGraphicsOptionsTabName
  35.     def getAudioOptionsTabName(self):
  36.         return self.szAudioOptionsTabName
  37.     def getOtherOptionsTabName(self):
  38.         return self.szOtherOptionsTabName
  39.         
  40.     # Used by Callback Interface to set path via checkbox
  41.     def getMusicPath(self):
  42.         return self.getTabControl().getText("CustomMusicEditBox")
  43.     def getCustomMusicCheckboxName(self):
  44.         return self.szCustomMusicCheckboxName
  45.         
  46.     # Used by Callback Interface to set Alarm time via checkbox
  47.     def getAlarmHour(self):
  48.         return self.getTabControl().getText("AlarmHourEditBox")
  49.     def getAlarmMin(self):
  50.         return self.getTabControl().getText("AlarmMinEditBox")
  51.         
  52.     # Used by Callback Interface to get user defined profile names from editbox
  53.     def setProfileEditCtrlText(self, szProfileName):
  54.         szWideProfName = CvUtil.convertToUnicode(szProfileName)
  55.         self.getTabControl().setText("ProfileNameEditBox", szWideProfName)
  56.     def getProfileEditCtrlText(self):
  57.         return self.getTabControl().getText("ProfileNameEditBox")
  58.         
  59.     # Called from C++ after a custom music path is selected via FileDialogBox
  60.     def updateMusicPath (self, szMusicPath):
  61.         
  62.         self.getTabControl().setText("CustomMusicEditBox", szMusicPath)
  63.         self.getTabControl().setValue(self.getCustomMusicCheckboxName(), true)
  64.         
  65. #########################################################################################
  66. ################################## SCREEN CONSTRUCTION ##################################
  67. #########################################################################################
  68.     
  69.     def initText(self):
  70.         
  71.         self.szTabControlName = localText.getText("TXT_KEY_OPTIONS_TITLE", ())
  72.         
  73.         self.szGameOptionsTabName = localText.getText("TXT_KEY_OPTIONS_GAME", ())
  74.         self.szGraphicsOptionsTabName = localText.getText("TXT_KEY_OPTIONS_GRAPHICS", ())
  75.         self.szAudioOptionsTabName = localText.getText("TXT_KEY_OPTIONS_AUDIO", ())
  76.         self.szOtherOptionsTabName = "Other" #localText.getText("TXT_KEY_OPTIONS_SCREEN_OTHER", ())
  77.         
  78.     def refreshScreen (self):
  79.         
  80.         #################### Game Options ####################
  81.         
  82.         szTab = self.getGameOptionsTabName()
  83.         for iOptionLoop in range(PlayerOptionTypes.NUM_PLAYEROPTION_TYPES):
  84.             szWidgetName = "GameOptionCheckBox_" + str(iOptionLoop)
  85.             bOptionOn = UserProfile.getPlayerOption(iOptionLoop)
  86.             self.pTabControl.setValue(szWidgetName, bOptionOn)
  87.         
  88.         # Languages Dropdown
  89.         self.getTabControl().setValue("LanguagesDropdownBox", CyGame().getCurrentLanguage())
  90.         
  91.         #################### GRAPHICS ####################
  92.         
  93.         szTab = self.getGraphicOptionsTabName()
  94.  
  95.         # Graphics Dropdowns
  96.     
  97.         self.getTabControl().setValue(self.szResolutionComboBoxName, UserProfile.getResolution() )
  98.         self.getTabControl().setValue("AntiAliasingDropdownBox", UserProfile.getAntiAliasing() )
  99.         self.getTabControl().setValue("GraphicsLevelDropdownBox", UserProfile.getGraphicsLevel() )
  100.         self.getTabControl().setValue("RenderQualityDropdownBox", UserProfile.getRenderQualityLevel() )
  101.         self.getTabControl().setValue("GlobeViewDropdownBox", UserProfile.getGlobeViewRenderLevel() )
  102.         
  103.         # Graphic Option Checkboxes
  104.         for iOptionLoop in range(GraphicOptionTypes.NUM_GRAPHICOPTION_TYPES):
  105.             szWidgetName = "GraphicOptionCheckbox_" + str(iOptionLoop)
  106.             bOptionOn = UserProfile.getGraphicOption(iOptionLoop)
  107.             self.pTabControl.setValue(szWidgetName, bOptionOn)
  108.         
  109.         #################### AUDIO ####################
  110.         
  111.         szTab = self.getAudioOptionsTabName()
  112.         
  113.         iMax = UserProfile.getVolumeStops()
  114.         
  115.         # Volume Sliders and No Sound Checkboxes
  116.         for iWidgetNum in range(6):
  117.             if (iWidgetNum == 0):        # Master Volume
  118.                 iInitialVal = iMax-UserProfile.getMasterVolume()-1
  119.                 bNoSoundTrue = UserProfile.isMasterNoSound()
  120.             elif (iWidgetNum == 1):        # Music Volume
  121.                 iInitialVal = iMax-UserProfile.getMusicVolume()-1
  122.                 bNoSoundTrue = UserProfile.isMusicNoSound()
  123.             elif (iWidgetNum == 2):        # Sound Effects Volume
  124.                 iInitialVal = iMax-UserProfile.getSoundEffectsVolume()-1
  125.                 bNoSoundTrue = UserProfile.isSoundEffectsNoSound()
  126.             elif (iWidgetNum == 3):        # Speech Volume
  127.                 iInitialVal = iMax-UserProfile.getSpeechVolume()-1
  128.                 bNoSoundTrue = UserProfile.isSpeechNoSound()
  129.             elif (iWidgetNum == 4):        # Ambience Volume
  130.                 iInitialVal = iMax-UserProfile.getAmbienceVolume()-1
  131.                 bNoSoundTrue = UserProfile.isAmbienceNoSound()
  132.             elif (iWidgetNum == 5):        # Interface Volume
  133.                 iInitialVal = iMax-UserProfile.getInterfaceVolume()-1
  134.                 bNoSoundTrue = UserProfile.isInterfaceNoSound()
  135.                 
  136.             # Volume Slider
  137.             szWidgetName = "VolumeSlider_" + str(iWidgetNum)
  138.                self.getTabControl().setValue(szWidgetName, iInitialVal)
  139.             
  140.             # Volume Checkbox
  141.             szWidgetName = "VolumeNoSoundCheckbox_" + str(iWidgetNum)
  142.             self.pTabControl.setValue(szWidgetName, bNoSoundTrue)
  143.             
  144.         # Voice Capture Dropdown
  145.         self.getTabControl().setValue("CaptureDeviceDropdownBox", UserProfile.getCaptureDeviceIndex() )
  146.         # Voice Capture Slider
  147. #           self.getTabControl().setValue("CaptureVolumeSlider", UserProfile.getMaxCaptureVolume() - UserProfile.getCaptureVolume())
  148.            self.getTabControl().setValue("CaptureVolumeSlider", UserProfile.getCaptureVolume())
  149.         
  150.         # Voice Playback Dropdown
  151.         self.getTabControl().setValue("PlaybackDeviceDropdownBox", UserProfile.getPlaybackDeviceIndex() )
  152.         # Voice Playback Slider
  153. #           self.getTabControl().setValue("PlaybackVolumeSlider", UserProfile.getMaxPlaybackVolume() - UserProfile.getPlaybackVolume())
  154.            self.getTabControl().setValue("PlaybackVolumeSlider", UserProfile.getPlaybackVolume())
  155.         
  156.         # Voice Chatting Checkbox
  157.         self.getTabControl().setValue("VoiceChatCheckbox", UserProfile.useVoice())
  158.         
  159.         # Speaker config
  160.         for iSpeakerConfigLoop in range(16):
  161.             szActiveConfig = UserProfile.getSpeakerConfigFromList(iSpeakerConfigLoop)
  162.             if (UserProfile.getSpeakerConfig() == szActiveConfig):
  163.                 iInitialSelection = iSpeakerConfigLoop
  164.             
  165.         # Speaker Config Dropdown
  166.         self.getTabControl().setValue("SpeakerConfigDropdownBox", iInitialSelection )
  167.         
  168.         # Custom Music Path Checkbox
  169.         bUseCustomMusicPath = false
  170.         if (UserProfile.getMusicPath() != ""):
  171.             bUseCustomMusicPath = true
  172.         self.getTabControl().setValue(self.getCustomMusicCheckboxName(), bUseCustomMusicPath)
  173.         
  174.         # Custom Music Path Editbox
  175.         szEditBoxDesc = ""
  176.         if (UserProfile.getMusicPath() != ""):
  177.             szEditBoxDesc = unicode(UserProfile.getMusicPath())
  178.         self.getTabControl().setText("CustomMusicEditBox", szEditBoxDesc)
  179.         
  180.         #################### CLOCK ####################
  181.         
  182.         szTab = self.getOtherOptionsTabName()
  183.         
  184.         # Clock On Checkbox
  185.         self.getTabControl().setValue("ClockOnCheckbox", UserProfile.isClockOn())
  186.         
  187.         # 24 Hour Clock Checkbox
  188.         self.getTabControl().setValue("24HourClockCheckbox", UserProfile.is24Hours())
  189.         
  190.         # Alarm On Checkbox
  191.         self.getTabControl().setValue("AlarmOnCheckbox", isAlarmOn())
  192.         
  193.         # Alarm Hours
  194.         self.getTabControl().setText("AlarmHourEditBox", str(getAlarmHourLeft()))
  195.         self.getTabControl().setText("AlarmMinEditBox", str(getAlarmMinLeft()))
  196.         
  197.         #################### PROFILE ####################
  198.         
  199.         # Profile Name Editbox
  200.         self.getTabControl().setText("ProfileNameEditBox", CvUtil.convertToUnicode(UserProfile.getProfileName()))
  201.         
  202.         aszDropdownElements = ()
  203.         for iProfileLoop in range(UserProfile.getNumProfileFiles()):
  204.             szProfileFileName = UserProfile.getProfileFileName(iProfileLoop)
  205.             # Cut off file path and extension
  206.             szProfile = szProfileFileName[szProfileFileName.find("PROFILES\\")+9:-4]
  207.             aszDropdownElements = aszDropdownElements + (szProfile,)
  208.             if (UserProfile.getProfileName() == szProfile):
  209.                 iInitialSelection = iProfileLoop
  210.         
  211.         self.getTabControl().changeDropdownContents("ProfilesDropdownBox", aszDropdownElements)
  212.         
  213.         # Profile List Dropdown
  214.         self.getTabControl().setValue("ProfilesDropdownBox", iInitialSelection)
  215.         
  216.         #################### PROFILE ####################
  217.         
  218.         # Broadband Radio Button
  219.            self.getTabControl().setValue("BroadbandSelection", not gc.getGame().isModem())
  220.         
  221.         # Modem Checkbox
  222.            self.getTabControl().setValue("ModemSelection", gc.getGame().isModem())
  223.         
  224.     def interfaceScreen (self):
  225.         "Initial creation of the screen"
  226.         self.initText()
  227.         
  228.         self.pTabControl = CyGTabCtrl(self.szTabControlName, false, false)
  229.         self.pTabControl.setModal(1)
  230.         self.pTabControl.setSize(800,600)
  231.         self.pTabControl.setControlsExpanding(false)
  232.         self.pTabControl.setColumnLength(self.iScreenHeight)
  233.         
  234.         # Set Tabs
  235.         self.pTabControl.attachTabItem("GameForm", self.szGameOptionsTabName)
  236.         self.pTabControl.attachTabItem("GraphicsForm", self.szGraphicsOptionsTabName)
  237.         self.pTabControl.attachTabItem("AudioForm", self.szAudioOptionsTabName)
  238.         self.pTabControl.attachTabItem("OtherForm", self.szOtherOptionsTabName)
  239.         
  240.         self.drawGameOptionsTab()
  241.         self.drawGraphicOptionsTab()
  242.         self.drawAudioOptionsTab()
  243.         self.drawOtherTab()
  244.  
  245.         
  246.     def drawGameOptionsTab(self):
  247.         
  248.         tab = self.pTabControl
  249.         
  250.         tab.attachVBox("GameForm", "GameVBox")        
  251.         
  252.         # Add Game Options
  253.         
  254.         tab.attachPanel("GameVBox", "GamePanelCenter")
  255.         tab.setStyle("GamePanelCenter", "Panel_Tan15_Style")
  256.         tab.setLayoutFlag("GamePanelCenter", "LAYOUT_SIZE_HEXPANDING")
  257.         tab.setLayoutFlag("GamePanelCenter", "LAYOUT_SIZE_VEXPANDING")
  258.             
  259.         tab.attachScrollPanel("GamePanelCenter", "GamePanel")
  260.         tab.setLayoutFlag("GamePanel", "LAYOUT_SIZE_HEXPANDING")
  261.         tab.setLayoutFlag("GamePanel", "LAYOUT_SIZE_VEXPANDING")
  262.         
  263.         tab.attachHBox("GamePanel", "GameHBox")
  264.         tab.setLayoutFlag("GameHBox", "LAYOUT_SIZE_HEXPANDING")
  265.  
  266.         tab.attachVBox("GameHBox", "GameVBox1")
  267.         tab.setLayoutFlag("GameVBox1", "LAYOUT_SIZE_HEXPANDING")
  268.         #tab.attachVSeparator("GameHBox", "GameHBoxSeparator")
  269.         tab.attachVBox("GameHBox", "GameVBox2")
  270.         tab.setLayoutFlag("GameVBox2", "LAYOUT_SIZE_HEXPANDING")
  271.         
  272.         i = 0
  273.         for iOptionLoop in range(PlayerOptionTypes.NUM_PLAYEROPTION_TYPES):
  274.             szOptionDesc = gc.getPlayerOptionsInfoByIndex(iOptionLoop).getDescription()
  275.             szCallbackFunction = "handleGameOptionsClicked"
  276.             szWidgetName = "GameOptionCheckBox_" + str(iOptionLoop)
  277.             bOptionOn = UserProfile.getPlayerOption(iOptionLoop)#gc.getPlayer(gc.getGame().getActivePlayer()).isOption(iOptionLoop)
  278.             if ((i+1) <= (PlayerOptionTypes.NUM_PLAYEROPTION_TYPES+1)/2): 
  279.                 vbox = "GameVBox1"
  280.             else: 
  281.                 vbox = "GameVBox2"
  282.             tab.attachCheckBox(vbox, szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bOptionOn)
  283.             i += 1
  284.                 
  285.     
  286.         tab.attachSpacer("GamePanelCenter")
  287.  
  288.         tab.attachHBox("GamePanelCenter", "LangHBox")
  289.         
  290.         # Languages Dropdown
  291.         tab.attachLabel("LangHBox", "LangLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_LANGUAGE", ()))    # Label
  292.         szDropdownDesc = "LanguagesDropdownBox"
  293.  
  294.         tab.attachSpacer("LangHBox")
  295.         
  296.         aszDropdownElements = ()
  297.         aszDropdownElements = aszDropdownElements + (localText.getText("TXT_KEY_ENGLISH", ()),)
  298.         aszDropdownElements = aszDropdownElements + (localText.getText("TXT_KEY_FRENCH", ()),)
  299.         aszDropdownElements = aszDropdownElements + (localText.getText("TXT_KEY_GERMAN", ()),)
  300.         aszDropdownElements = aszDropdownElements + (localText.getText("TXT_KEY_ITALIAN", ()),)
  301.         aszDropdownElements = aszDropdownElements + (localText.getText("TXT_KEY_SPANISH", ()),)
  302.         
  303.         szCallbackFunction = "handleLanguagesDropdownBoxInput"
  304.         szWidgetName = "LanguagesDropdownBox"
  305.         iInitialSelection = CyGame().getCurrentLanguage()
  306.         tab.attachDropDown("LangHBox", szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  307.         tab.setLayoutFlag(szWidgetName, "LAYOUT_LEFT")
  308.  
  309.         ########## Lower Panel
  310.  
  311.         tab.attachHSeparator("GameVBox", "GameExitSeparator")
  312.         
  313.         tab.attachHBox("GameVBox", "LowerHBox")
  314.         tab.setLayoutFlag("LowerHBox", "LAYOUT_HCENTER")
  315.         
  316.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_RESET", ())
  317.         szCallbackFunction = "handleGameReset"
  318.         szWidgetName = "GameOptionsResetButton"
  319.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  320.         
  321.         szOptionDesc = localText.getText("TXT_KEY_PEDIA_SCREEN_EXIT", ())
  322.         szCallbackFunction = "handleExitButtonInput"
  323.         szWidgetName = "GameOptionsExitButton"
  324.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  325.         
  326.     def drawGraphicOptionsTab(self):
  327.         
  328.         tab = self.pTabControl
  329.         
  330.         tab.attachVBox("GraphicsForm", "GraphicsVBox")        
  331.                     
  332.         tab.attachScrollPanel("GraphicsVBox", "GraphicsPanel")
  333.         tab.setLayoutFlag("GraphicsPanel", "LAYOUT_SIZE_HEXPANDING")
  334.         tab.setLayoutFlag("GraphicsPanel", "LAYOUT_SIZE_VEXPANDING")
  335.         
  336.         tab.attachHBox("GraphicsPanel", "GraphicsPanelHBox")
  337.         tab.setLayoutFlag("GraphicsPanelHBox", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  338.         tab.setLayoutFlag("GraphicsPanelHBox", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  339.         
  340.         
  341.         ####### RESOLUTION
  342.         
  343.         tab.attachVBox("GraphicsPanelHBox", "ResVBox")
  344.         tab.setLayoutFlag("ResVBox", "LAYOUT_SIZE_HEXPANDING")
  345.         tab.setLayoutFlag("ResVBox", "LAYOUT_SIZE_VEXPANDING")
  346.         
  347.         tab.attachPanel("ResVBox", "ResPanel")
  348.         tab.setStyle("ResPanel", "Panel_Tan15_Style")
  349.         tab.setLayoutFlag("ResPanel", "LAYOUT_SIZE_HEXPANDING")
  350.         tab.setLayoutFlag("ResPanel", "LAYOUT_SIZE_VEXPANDING")
  351.  
  352.         hbox = "ResPanelHBox"
  353.         tab.attachHBox("ResPanel", hbox)
  354.         tab.setLayoutFlag(hbox, "LAYOUT_SIZE_HEXPANDING")
  355.         tab.setLayoutFlag(hbox, "LAYOUT_SIZE_VEXPANDING")
  356.  
  357.     
  358.         vbox = "ResPanelVBox"
  359.         tab.attachVBox(hbox, vbox)
  360.         tab.setLayoutFlag(vbox, "LAYOUT_SIZE_HEXPANDING")
  361.         tab.setLayoutFlag(vbox, "LAYOUT_SIZE_VEXPANDING")
  362.  
  363.         # Screen Image
  364.         tab.attachPanel(vbox, "ResScreenPanel")
  365.         tab.setLayoutFlag("ResScreenPanel", "LAYOUT_SIZE_HEXPANDING")
  366.         tab.setStyle("ResScreenPanel", "Panel_Black25_Style")
  367.         
  368.         tab.attachHBox(vbox, "ResHBox")
  369.  
  370.         vbox1 = "ResVBox1"
  371.         vbox2 = "ResVBox2"
  372.         tab.attachVBox("ResHBox", vbox1)
  373.         tab.attachVBox("ResHBox", vbox2)
  374.         
  375.         # Screen Resolution Dropdown
  376.         tab.attachLabel(vbox1, "ResLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_RES", ()))    # Label
  377.         tab.setControlFlag("ResLabel", "CF_LABEL_DEFAULTSIZE")
  378.         szDropdownDesc = "ResolutionDropdownBox"
  379.         aszDropdownElements = ()
  380.         for iResLoop in range(UserProfile.getResolutionMaxModes()):
  381.             aszDropdownElements = aszDropdownElements + (unicode(UserProfile.getResolutionString(iResLoop)),)
  382.         szCallbackFunction = "handleResolutionDropdownInput"
  383.         szWidgetName = self.szResolutionComboBoxName = "ResolutionDropdownBox"
  384.         iInitialSelection = UserProfile.getResolution()
  385.         tab.attachDropDown(vbox2, szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  386.         
  387.         # Anti-Aliasing Dropdown
  388.         tab.attachLabel(vbox1, "AALabel", localText.getText("TXT_KEY_OPTIONS_ANTIALIAS", ()))
  389.         tab.setControlFlag("AALabel", "CF_LABEL_DEFAULTSIZE")
  390.         szDropdownDesc = "AntiAliasingDropdownBox"
  391.         aszDropdownElements = ()
  392.         for iAALoop in range(UserProfile.getAntiAliasingMaxMultiSamples()+1):
  393.             if (iAALoop == 0):
  394.                 aszDropdownElements = aszDropdownElements + (u"0",)
  395.             elif (iAALoop == 1):
  396.                 aszDropdownElements = aszDropdownElements + (u"2",)
  397.             elif (iAALoop == 2):
  398.                 aszDropdownElements = aszDropdownElements + (u"4",)
  399.             elif (iAALoop == 3):
  400.                 aszDropdownElements = aszDropdownElements + (u"8",)
  401.             elif (iAALoop == 4):
  402.                 aszDropdownElements = aszDropdownElements + (u"16",)
  403.             
  404.         szCallbackFunction = "handleAntiAliasingDropdownInput"
  405.         szWidgetName = "AntiAliasingDropdownBox"
  406.         iInitialSelection = UserProfile.getAntiAliasing()
  407.         tab.attachDropDown(vbox2, szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  408.         tab.setLayoutFlag(szWidgetName, "LAYOUT_LEFT")
  409.         
  410.         # Graphics Level
  411.         tab.attachLabel(vbox1, "GraphicsLevelLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_GRAPHICS_LEVEL", ()))    # Label
  412.         tab.setControlFlag("GraphicsLevelLabel", "CF_LABEL_DEFAULTSIZE")
  413.         szDropdownDesc = "GraphicsLevelDropdownBox"
  414.         aszDropdownElements = (localText.getText("TXT_KEY_SEALEVEL_HIGH", ()), localText.getText("TXT_KEY_SEALEVEL_MEDIUM", ()), localText.getText("TXT_KEY_SEALEVEL_LOW", ()))
  415.         szCallbackFunction = "handleGraphicsLevelDropdownBoxInput"
  416.         szWidgetName = szDropdownDesc
  417.         iInitialSelection = UserProfile.getGraphicsLevel()
  418.         tab.attachDropDown(vbox2, szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  419.         
  420.         # Render Quality level
  421.         tab.attachLabel(vbox1, "GraphicsQualityLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_RENDER_QUALITY_LEVEL", ()))    # Label
  422.         tab.setControlFlag("GraphicsQualityLabel", "CF_LABEL_DEFAULTSIZE")
  423.         szDropdownDesc = "RenderQualityDropdownBox"
  424.         aszDropdownElements = (localText.getText("TXT_KEY_SEALEVEL_HIGH", ()), localText.getText("TXT_KEY_SEALEVEL_MEDIUM", ()), localText.getText("TXT_KEY_SEALEVEL_LOW", ()))
  425.         szCallbackFunction = "handleRenderQualityDropdownBoxInput"
  426.         szWidgetName = self.szRenderQualityDropdownBoxName = "RenderQualityDropdownBox"
  427.         iInitialSelection = UserProfile.getRenderQualityLevel()
  428.         tab.attachDropDown(vbox2, szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  429.         
  430.         # Globe view rendering level
  431.         tab.attachLabel(vbox1, "GlobeViewLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_GLOBE", ()))    # Label
  432.         tab.setControlFlag("GlobeViewLabel", "CF_LABEL_DEFAULTSIZE")
  433.                 
  434.         szDropdownDesc = "GlobeViewDropdownBox"
  435.         aszDropdownElements = (localText.getText("TXT_KEY_SEALEVEL_HIGH", ()), localText.getText("TXT_KEY_SEALEVEL_MEDIUM", ()), localText.getText("TXT_KEY_SEALEVEL_LOW", ()))
  436.         szCallbackFunction = "handleGlobeViewDropdownBoxInput"
  437.         szWidgetName = self.szGlobeViewDropdownBoxName = "GlobeViewDropdownBox"
  438.         iInitialSelection = UserProfile.getGlobeViewRenderLevel()
  439.         tab.attachDropDown(vbox2, szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  440.  
  441.  
  442.         ####### GAME GRAPHICS
  443.  
  444.         tab.attachVSeparator(hbox, "GfxSeparator")
  445.         tab.setLayoutFlag("GfxSeparator", "LAYOUT_LEFT")
  446.         
  447.         vbox = "GfxPanelVBox"
  448.         tab.attachVBox(hbox, vbox)
  449.         tab.setLayoutFlag(vbox, "LAYOUT_SIZE_HEXPANDING")
  450.         tab.setLayoutFlag(vbox, "LAYOUT_SIZE_VEXPANDING")
  451.         tab.setLayoutFlag(vbox, "LAYOUT_SPACING_NONE")
  452.             
  453.                 
  454.         # Checkboxes
  455.         for iOptionLoop in range(GraphicOptionTypes.NUM_GRAPHICOPTION_TYPES):
  456.             szOptionDesc = gc.getGraphicOptionsInfoByIndex(iOptionLoop).getDescription()
  457.             szCallbackFunction = "handleGraphicOptionsClicked"
  458.             szWidgetName = "GraphicOptionCheckbox_" + str(iOptionLoop)
  459.             bOptionOn = UserProfile.getGraphicOption(iOptionLoop)
  460.             tab.attachCheckBox(vbox, szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bOptionOn)
  461.             
  462.         ########## EXIT
  463.  
  464.         tab.attachHSeparator("GraphicsVBox", "GraphicsExitSeparator")
  465.         
  466.         tab.attachHBox("GraphicsVBox", "LowerHBox")
  467.         tab.setLayoutFlag("LowerHBox", "LAYOUT_HCENTER")
  468.         
  469.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_RESET", ())
  470.         szCallbackFunction = "handleGraphicsReset"
  471.         szWidgetName = "GraphicOptionsResetButton"
  472.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  473.         
  474.         szOptionDesc = localText.getText("TXT_KEY_PEDIA_SCREEN_EXIT", ())
  475.         szCallbackFunction = "handleExitButtonInput"
  476.         szWidgetName = "GraphicOptionsExitButton"
  477.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  478.         
  479.     def drawAudioOptionsTab(self):
  480.         
  481.         tab = self.pTabControl
  482.         
  483.         tab.attachVBox("AudioForm", "AudioVBox")        
  484.                     
  485.         tab.attachScrollPanel("AudioVBox", "AudioPanel")
  486.         tab.setLayoutFlag("AudioPanel", "LAYOUT_SIZE_HEXPANDING")
  487.         tab.setLayoutFlag("AudioPanel", "LAYOUT_SIZE_VEXPANDING")
  488.         
  489.         tab.attachVBox("AudioPanel", "AudioPanelVBox")
  490.         tab.setLayoutFlag("AudioPanelHBox", "LAYOUT_SPACING_FORM")
  491.         tab.setLayoutFlag("AudioPanelHBox", "LAYOUT_SIZE_HEXPANDING")
  492.         tab.setLayoutFlag("AudioPanelHBox", "LAYOUT_SIZE_VEXPANDING")
  493.     
  494.             
  495.         ######################### Create the 6 volume slider/checkboxes #########################
  496.         
  497.         tab.attachVBox("AudioPanelVBox", "VolumeVBox")
  498.         tab.setLayoutFlag("VolumeVBox", "LAYOUT_SIZE_HEXPANDING")
  499.         tab.setLayoutFlag("VolumeVBox", "LAYOUT_SIZE_VEXPANDING")
  500.         
  501.         #tab.attachLabel("VolumeVBox", "VolumeLabel", "VOLUME")
  502.  
  503.         tab.attachPanel("VolumeVBox", "VolumePanel")
  504.         tab.setStyle("VolumePanel", "Panel_Tan15_Style")
  505.         tab.setLayoutFlag("VolumePanel", "LAYOUT_SIZE_HEXPANDING")
  506.         tab.setLayoutFlag("VolumePanel", "LAYOUT_SIZE_VEXPANDING")
  507.  
  508.         tab.attachVBox("VolumePanel", "VolumePanelVBox")
  509.         tab.setLayoutFlag("VolumePanelVBox", "LAYOUT_SIZE_HEXPANDING")
  510.         tab.setLayoutFlag("VolumePanelVBox", "LAYOUT_SIZE_VEXPANDING")
  511.  
  512.         tab.attachScrollPanel("VolumePanelVBox", "VolumeScrollPanel")
  513.         tab.setLayoutFlag("VolumeScrollPanel", "LAYOUT_SIZE_HEXPANDING")
  514.         tab.setLayoutFlag("VolumeScrollPanel", "LAYOUT_SIZE_VEXPANDING")
  515.         
  516.         tab.attachHBox("VolumeScrollPanel", "VolumePanelHBox")
  517.         tab.setLayoutFlag("VolumePanelHBox", "LAYOUT_HEVENSTRETCH")
  518.         tab.setLayoutFlag("VolumePanelHBox", "LAYOUT_SIZE_VEXPANDING")
  519.         
  520.         for iWidgetNum in range(6):
  521.                         
  522.             # SLIDER
  523.             
  524.             if (iWidgetNum == 0):        # Master Volume
  525.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_MASTERVOLUME", ())
  526.                 iInitialVal = 20-UserProfile.getMasterVolume()-1
  527.                 bNoSoundTrue = UserProfile.isMasterNoSound()
  528.             elif (iWidgetNum == 1):        # Music Volume
  529.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_MUSICVOLUME", ())
  530.                 iInitialVal = 20-UserProfile.getMusicVolume()-1
  531.                 bNoSoundTrue = UserProfile.isMusicNoSound()
  532.             elif (iWidgetNum == 2):        # Sound Effects Volume
  533.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_EFFECTSVOLUME", ())
  534.                 iInitialVal = 20-UserProfile.getSoundEffectsVolume()-1
  535.                 bNoSoundTrue = UserProfile.isSoundEffectsNoSound()
  536.             elif (iWidgetNum == 3):        # Speech Volume
  537.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_SPEECHVOLUME", ())
  538.                 iInitialVal = 20-UserProfile.getSpeechVolume()-1
  539.                 bNoSoundTrue = UserProfile.isSpeechNoSound()
  540.             elif (iWidgetNum == 4):        # Ambience Volume
  541.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_AMBIENCEVOLUME", ())
  542.                 iInitialVal = 20-UserProfile.getAmbienceVolume()-1
  543.                 bNoSoundTrue = UserProfile.isAmbienceNoSound()
  544.             elif (iWidgetNum == 5):        # Interface Volume
  545.                 szWidgetDesc = localText.getText("TXT_KEY_OPTIONS_INTERFACEVOLUME", ())
  546.                 iInitialVal = 20-UserProfile.getInterfaceVolume()-1
  547.                 bNoSoundTrue = UserProfile.isInterfaceNoSound()
  548.             
  549.             islider = str(iWidgetNum)
  550.             
  551.             vbox = "VolumeSliderVBox"+islider
  552.             tab.attachVBox("VolumePanelHBox", vbox)
  553.             
  554.             # Volume Slider
  555.             szSliderDesc = szWidgetDesc
  556.             szWidgetName = "VolumeSliderLabel"+islider
  557.             tab.attachLabel(vbox, szWidgetName, szSliderDesc)
  558.             tab.setLayoutFlag(szWidgetName, "LAYOUT_HCENTER")
  559.             
  560.             szCallbackFunction = "handleVolumeSlidersInput"
  561.             szWidgetName = "VolumeSlider_" + str(iWidgetNum)
  562.             iMin = 0
  563.             iMax = UserProfile.getVolumeStops()
  564.             # iInitialVal set above
  565.             tab.attachVSlider(vbox, szWidgetName, self.callbackIFace, szCallbackFunction, szWidgetName, iMin, iMax, iInitialVal)
  566.             tab.setLayoutFlag(szWidgetName, "LAYOUT_SIZE_VEXPANDING")
  567.             tab.setControlFlag(szWidgetName, "CF_SLIDER_FILL_DOWN")
  568.             
  569.             # CHECKBOX
  570.             
  571.             szOptionDesc = localText.getText("TXT_KEY_OPTIONS_NO_SOUND", ())
  572.             szCallbackFunction = "handleVolumeCheckboxesInput"
  573.             szWidgetName = "VolumeNoSoundCheckbox_" + str(iWidgetNum)
  574.             # bNoSoundTrue set above
  575.             tab.attachCheckBox(vbox, szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bNoSoundTrue)
  576.             tab.setLayoutFlag(szWidgetName, "LAYOUT_HCENTER")
  577.  
  578.             
  579.         tab.attachHSeparator("VolumePanelVBox", "SoundSeparator")
  580.                 
  581.         tab.attachHBox("VolumePanelVBox", "SoundPanelHBox")
  582.         tab.setLayoutFlag("SoundPanelHBox", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  583.         tab.setLayoutFlag("SoundPanelHBox", "LAYOUT_SIZE_VPREFERRED")
  584.             
  585.             
  586.         ######################### Voice Config Section #########################
  587.         
  588.         tab.attachVBox("SoundPanelHBox", "VoiceVBox")
  589.  
  590.         # Capture Device Dropdown
  591.         tab.attachLabel("VoiceVBox", "VoiceCaptureLabel", localText.getText("TXT_KEY_OPTIONS_CAPTURE_DEVICE", ()))
  592.         szDropdownDesc = "CaptureDeviceDropdownBox"
  593.         aszDropdownElements = ()
  594.         for iCaptureDevice in range(UserProfile.getNumCaptureDevices()):
  595.             aszDropdownElements = aszDropdownElements + (unicode(UserProfile.getCaptureDeviceDesc(iCaptureDevice)),)
  596.         szCallbackFunction = "handleCaptureDeviceDropdownInput"
  597.         szWidgetName = "CaptureDeviceDropdownBox"
  598.         iInitialSelection = UserProfile.getCaptureDeviceIndex()
  599.         tab.attachDropDown("VoiceVBox", szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  600.         
  601.         # Capture Volume Slider
  602.         szSliderDesc = localText.getText("TXT_KEY_OPTIONS_CAPTUREVOLUME", ())
  603.         szCallbackFunction = "handleCaptureVolumeSliderInput"
  604.         szWidgetName = "CaptureVolumeSlider"
  605.         iMin = 0
  606.         iMax = UserProfile.getMaxCaptureVolume()
  607. #        iInitialVal = iMax - UserProfile.getCaptureVolume()
  608.         iInitialVal = UserProfile.getCaptureVolume()
  609.         tab.attachHSlider("VoiceVBox", szWidgetName, self.callbackIFace, szCallbackFunction, szWidgetName, iMin, iMax, iInitialVal)
  610.         tab.setControlFlag(szWidgetName, "CF_SLIDER_FILL_UP")
  611.         
  612.         # Playback Device Dropdown
  613.         tab.attachLabel("VoiceVBox", "VoicePlaybackLabel", localText.getText("TXT_KEY_OPTIONS_PLAYBACK_DEVICE", ()))    # Label
  614.         szDropdownDesc = "PlaybackDeviceDropdownBox"
  615.         aszDropdownElements = ()
  616.         for iPlaybackDevice in range(UserProfile.getNumPlaybackDevices()):
  617.             aszDropdownElements = aszDropdownElements + (unicode(UserProfile.getPlaybackDeviceDesc(iPlaybackDevice)),)
  618.         szCallbackFunction = "handlePlaybackDeviceDropdownInput"
  619.         szWidgetName = "PlaybackDeviceDropdownBox"
  620.         iInitialSelection = UserProfile.getPlaybackDeviceIndex()
  621.         tab.attachDropDown("VoiceVBox", szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  622.         
  623.         # Playback Volume Slider
  624.         szSliderDesc = localText.getText("TXT_KEY_OPTIONS_PLAYBACKVOLUME", ())
  625.         szCallbackFunction = "handlePlaybackVolumeSliderInput"
  626.         szWidgetName = "PlaybackVolumeSlider"
  627.         iMin = 0
  628.         iMax = UserProfile.getMaxPlaybackVolume()
  629. #        iInitialVal = iMax - UserProfile.getPlaybackVolume()
  630.         iInitialVal = UserProfile.getPlaybackVolume()
  631.         tab.attachHSlider("VoiceVBox", szWidgetName, self.callbackIFace, szCallbackFunction, szWidgetName, iMin, iMax, iInitialVal)
  632.         tab.setControlFlag(szWidgetName, "CF_SLIDER_FILL_UP")
  633.         
  634.         
  635.         tab.attachVBox("SoundPanelHBox", "SoundConfigVBox")
  636.         
  637.         # Checkbox
  638.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_VOICE", ())
  639.         szCallbackFunction = "handleVoiceCheckboxInput"
  640.         self.szVoiceCheckboxName = "VoiceCheckbox"
  641.         szWidgetName = "VoiceChatCheckbox"
  642.         bUseVoice = UserProfile.useVoice()
  643.         tab.attachCheckBox("SoundConfigVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bUseVoice)
  644.         
  645.         ######################### Speaker Config Dropdown #########################
  646.         
  647.         tab.attachLabel("SoundConfigVBox", "SpeakerConfigLabel", localText.getText("TXT_KEY_OPTIONS_SPEAKERS", ()))    # Label
  648.         szDropdownDesc = "SpeakerConfigDropdownBox"
  649.         aszDropdownElements = ()
  650.         iInitialSelection = 0
  651.         for iSpeakerConfigLoop in range(16):
  652.             szActiveConfig = UserProfile.getSpeakerConfigFromList(iSpeakerConfigLoop)
  653.             aszDropdownElements = aszDropdownElements + (unicode(szActiveConfig),)
  654.             if (UserProfile.getSpeakerConfig() == szActiveConfig):
  655.                 iInitialSelection = iSpeakerConfigLoop
  656.             
  657.         szCallbackFunction = "handleSpeakerConfigDropdownInput"
  658.         szWidgetName = "SpeakerConfigDropdownBox"
  659.         # iInitialSelection set above
  660.         tab.attachDropDown("SoundConfigVBox", szWidgetName, szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  661.         tab.setLayoutFlag(szWidgetName, "LAYOUT_SIZE_HFIXEDEXPANDING")
  662.         tab.setLayoutFlag(szWidgetName, "LAYOUT_LEFT")
  663.             
  664.         ######################### Custom Audio Path #########################
  665.         
  666.         # Checkbox
  667.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_CUSTOM_MUSIC", ())
  668.         szCallbackFunction = "handleCustomMusicPathCheckboxInput"
  669.         self.szCustomMusicCheckboxName = "CustomMusicPathCheckbox"
  670.         szWidgetName = CvUtil.convertToStr(self.szCustomMusicCheckboxName)
  671.         bUseCustomMusicPath = false
  672.         if (UserProfile.getMusicPath() != ""):
  673.             bUseCustomMusicPath = true
  674.         tab.attachCheckBox("SoundConfigVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bUseCustomMusicPath)
  675.                 
  676.         tab.attachHBox("SoundConfigVBox", "AudioPathHBox")
  677.         tab.setLayoutFlag("AudioPathHBox", "LAYOUT_SIZE_HFIXEDEXPANDING")
  678.         
  679.         # Browse Button
  680.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_BROWSE", ())
  681.         szCallbackFunction = "handleCustomMusicPathButtonInput"
  682.         szWidgetName = "CustomMusicPathButton"
  683.         tab.attachButton("AudioPathHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  684.  
  685.         # Edit Box
  686.         szEditBoxDesc = ""
  687.         if (UserProfile.getMusicPath() != ""):
  688.             szEditBoxDesc = unicode(UserProfile.getMusicPath())
  689.         szWidgetName = "CustomMusicEditBox"
  690.         szCallbackFunction = "DummyCallback"
  691.         tab.attachEdit("AudioPathHBox", szWidgetName, szEditBoxDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  692.  
  693.         ########## EXIT
  694.  
  695.         tab.attachHSeparator("AudioVBox", "AudioExitSeparator")
  696.         
  697.         tab.attachHBox("AudioVBox", "LowerHBox")
  698.         tab.setLayoutFlag("LowerHBox", "LAYOUT_HCENTER")
  699.         
  700.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_RESET", ())
  701.         szCallbackFunction = "handleAudioReset"
  702.         szWidgetName = "AudioOptionsResetButton"
  703.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  704.         
  705.         szOptionDesc = localText.getText("TXT_KEY_PEDIA_SCREEN_EXIT", ())
  706.         szCallbackFunction = "handleExitButtonInput"
  707.         szWidgetName = "AudioOptionsExitButton"
  708.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  709.         tab.setLayoutFlag(szWidgetName, "LAYOUT_HCENTER")
  710.         
  711.         
  712.     def drawOtherTab(self):
  713.  
  714.         tab = self.pTabControl
  715.  
  716.         tab.attachVBox("OtherForm", "OtherVBox")        
  717.                     
  718.         tab.attachScrollPanel("OtherVBox", "OtherPanel")
  719.         tab.setLayoutFlag("OtherPanel", "LAYOUT_SIZE_HEXPANDING")
  720.         tab.setLayoutFlag("OtherPanel", "LAYOUT_SIZE_VEXPANDING")
  721.         
  722.         tab.attachHBox("OtherPanel", "OtherPanelHBox")
  723.         tab.setLayoutFlag("OtherPanelHBox", "LAYOUT_SPACING_INNERFORM")
  724.         tab.setLayoutFlag("OtherPanelHBox", "LAYOUT_SIZE_HEXPANDING")
  725.         
  726.         
  727.         ########### CLOCK
  728.         
  729.         tab.attachVBox("OtherPanelHBox", "ClockVBox")
  730.         tab.setLayoutFlag("ClockVBox", "LAYOUT_SIZE_HEXPANDING")
  731.         tab.setLayoutFlag("ClockVBox", "LAYOUT_SIZE_VEXPANDING")
  732.         
  733.         tab.attachLabel("ClockVBox", "ClockLabel", localText.getText("TXT_KEY_OPTIONS_CLOCK", ()).upper() )
  734.  
  735.         tab.attachPanel("ClockVBox", "ClockPanel")
  736.         tab.setStyle("ClockPanel", "Panel_Tan15_Style")
  737.         tab.setLayoutFlag("ClockPanel", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  738.         tab.setLayoutFlag("ClockPanel", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  739.         
  740.         tab.attachVBox("ClockPanel", "ClockPanelVBox")
  741.         tab.setLayoutFlag("ClockPanelVBox", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  742.         tab.setLayoutFlag("ClockPanelVBox", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  743.         
  744.         # Clock On Checkbox
  745.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_CLOCK_ON", ())
  746.         szCallbackFunction = "handleClockOnCheckboxInput"
  747.         szWidgetName = "ClockOnCheckbox"
  748.         bClockOn = UserProfile.isClockOn()
  749.         tab.attachCheckBox("ClockPanelVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bClockOn)
  750.         
  751.         # 24 Hour Clock Checkbox
  752.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_24CLOCK", ())
  753.         szCallbackFunction = "handle24HourClockCheckboxInput"
  754.         szWidgetName = "24HourClockCheckbox"
  755.         b24HourClock = UserProfile.is24Hours()
  756.         tab.attachCheckBox("ClockPanelVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, b24HourClock)
  757.         
  758.         # Edit Box Hours
  759.         tab.attachLabel("ClockPanelVBox", "HoursLabel", localText.getText("TXT_KEY_OPTIONS_HOURS", ()))    # Label
  760.         szEditBoxDesc = str(getAlarmHourLeft())
  761.         szCallbackFunction = "DummyCallback"
  762.         szWidgetName = "AlarmHourEditBox"
  763.         tab.attachEdit("ClockPanelVBox", szWidgetName, szEditBoxDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  764.         
  765.         # Edit Box Mins
  766.         tab.attachLabel("ClockPanelVBox", "MinsLabel", localText.getText("TXT_KEY_OPTIONS_MINS", ()))    # Label
  767.         szEditBoxDesc = str(getAlarmMinLeft())
  768.         szCallbackFunction = "DummyCallback"
  769.         szWidgetName = "AlarmMinEditBox"
  770.         tab.attachEdit("ClockPanelVBox", szWidgetName, szEditBoxDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  771.         
  772.         # Alarm On Checkbox
  773.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_ALARMON", ())
  774.         szCallbackFunction = "handleAlarmOnCheckboxInput"
  775.         szWidgetName = "AlarmOnCheckbox"
  776.         bAlarmOn = isAlarmOn()
  777.         tab.attachCheckBox("ClockPanelVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName, bAlarmOn)
  778.         
  779.         
  780.         ########### PROFILE
  781.         
  782.         UserProfile.loadProfileFileNames()
  783.         
  784.         tab.attachVBox("OtherPanelHBox", "ProfileVBox")
  785.         tab.setLayoutFlag("ProfileVBox", "LAYOUT_SIZE_HEXPANDING")
  786.         tab.setLayoutFlag("ProfileVBox", "LAYOUT_SIZE_VEXPANDING")
  787.         
  788.         tab.attachLabel("ProfileVBox", "ProfileLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_PROFILES", ()).upper() )
  789.  
  790.         tab.attachPanel("ProfileVBox", "ProfilePanel")
  791.         tab.setStyle("ProfilePanel", "Panel_Tan15_Style")
  792.         tab.setLayoutFlag("ProfilePanel", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  793.         tab.setLayoutFlag("ProfilePanel", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  794.         
  795.         tab.attachVBox("ProfilePanel", "ProfilePanelVBox")
  796.         tab.setLayoutFlag("ProfilePanelVBox", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  797.         tab.setLayoutFlag("ProfilePanelVBox", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  798.  
  799.  
  800.         # Profiles Dropdown
  801.         
  802.         tab.attachLabel("ProfilePanelVBox", "ProfileComboLabel", localText.getText("TXT_KEY_OPTIONS_SCREEN_PROFILES", ()))
  803.         
  804.         szDropdownDesc = "ProfilesDropdownBox"
  805.         aszDropdownElements = ()
  806.         iInitialSelection = 0
  807.         for iProfileLoop in range(UserProfile.getNumProfileFiles()):
  808.             szProfileFileName = UserProfile.getProfileFileName(iProfileLoop)
  809.             
  810.             # Cut off file path and extension
  811.             szProfile = szProfileFileName[szProfileFileName.find("PROFILES\\")+9:-4]
  812.             
  813.             aszDropdownElements = aszDropdownElements + (szProfile,)
  814.                         
  815.             if (UserProfile.getProfileName() == szProfile):
  816.                 iInitialSelection = iProfileLoop
  817.             
  818.         szCallbackFunction = "handleProfilesDropdownInput"
  819.         szWidgetName = "ProfilesDropdownBox"
  820.         # iInitialSelection set above
  821.         tab.attachDropDown("ProfilePanelVBox",szWidgetName,szDropdownDesc, aszDropdownElements, self.callbackIFace, szCallbackFunction, szWidgetName, iInitialSelection)
  822.         
  823.         # Edit Box ProfileName
  824.         tab.attachLabel("ProfilePanelVBox","ProfilesName",localText.getText("TXT_KEY_OPTIONS_SCREEN_PROFILE_NAME", ()))    # Label
  825.         
  826.     
  827.         #szCallbackIFace = ""
  828.         szEditBoxDesc = UserProfile.getProfileName()
  829.         szCallbackFunction = "DummyCallback"
  830.         szWidgetName = "ProfileNameEditBox"
  831.         szWideEditBoxDesc = CvUtil.convertToUnicode(szEditBoxDesc)
  832.         tab.attachEdit("ProfilePanelVBox", szWidgetName, szWideEditBoxDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  833.         
  834.         # New Profile Button
  835.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_NEW_PROFILE", ())
  836.         szCallbackFunction = "handleNewProfileButtonInput"
  837.         szWidgetName = "NewProfileButton"
  838.         tab.attachButton("ProfilePanelVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  839.         
  840.         # Delete Profile Button
  841.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_DELETE_PROFILE", ())
  842.         szCallbackFunction = "handleDeleteProfileButtonInput"
  843.         szWidgetName = "DeleteProfileButton"
  844.         tab.attachButton("ProfilePanelVBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  845.         
  846.         
  847.         ########## NETWORKING        
  848.         
  849.         tab.attachVBox("OtherPanelHBox", "NetVBox")
  850.         tab.setLayoutFlag("NetVBox", "LAYOUT_SIZE_HEXPANDING")
  851.         tab.setLayoutFlag("NetVBox", "LAYOUT_SIZE_VEXPANDING")
  852.         
  853.         tab.attachLabel("NetVBox", "NetLabel", localText.getText("TXT_KEY_OPTIONS_NETWORK", ()).upper() )
  854.  
  855.         tab.attachPanel("NetVBox", "NetPanel")
  856.         tab.setStyle("NetPanel", "Panel_Tan15_Style")
  857.         tab.setLayoutFlag("NetPanel", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  858.         tab.setLayoutFlag("NetPanel", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  859.         
  860.         tab.attachVBox("NetPanel", "NetPanelVBox")
  861.         tab.setLayoutFlag("NetPanelVBox", "LAYOUT_SIZE_HPREFERREDEXPANDING")
  862.         tab.setLayoutFlag("NetPanelVBox", "LAYOUT_SIZE_VPREFERREDEXPANDING")
  863.  
  864.         # Radio Buttons
  865.         tab.attachLabel("NetPanelVBox", "NetBandwidthLabel", localText.getText("TXT_KEY_OPTIONS_BANDWIDTH_DESC", ()) )
  866.         
  867.         bIsModem = gc.getGame().isModem()
  868.         szCallbackFunction = "handleBroadbandSelected"
  869.         szWidgetName = "BroadbandSelection"
  870.         szWidgetLbl = localText.getText("TXT_KEY_OPTIONS_BROADBAND_LBL", ())
  871.         tab.attachRadioButton("NetPanelVBox", szWidgetName, szWidgetLbl, self.callbackIFace, szCallbackFunction, str(szWidgetName), (not bIsModem))
  872.         
  873.         szCallbackFunction = "handleModemSelected"
  874.         szWidgetName = "ModemSelection"
  875.         szWidgetLbl = localText.getText("TXT_KEY_OPTIONS_MODEM_LBL", ())
  876.         tab.attachRadioButton("NetPanelVBox", szWidgetName, szWidgetLbl, self.callbackIFace, szCallbackFunction, str(szWidgetName), bIsModem)
  877.  
  878.  
  879.         ########## EXIT
  880.  
  881.         tab.attachHSeparator("OtherVBox", "OtherExitSeparator")
  882.         
  883.         tab.attachHBox("OtherVBox", "LowerHBox")
  884.         tab.setLayoutFlag("LowerHBox", "LAYOUT_HCENTER")
  885.         
  886.         szOptionDesc = localText.getText("TXT_KEY_OPTIONS_RESET", ())
  887.         szCallbackFunction = "handleOtherReset"
  888.         szWidgetName = "OtherOptionsResetButton"
  889.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  890.         
  891.         szOptionDesc = localText.getText("TXT_KEY_PEDIA_SCREEN_EXIT", ())
  892.         szCallbackFunction = "handleExitButtonInput"
  893.         szWidgetName = "OtherOptionsExitButton"
  894.         tab.attachButton("LowerHBox", szWidgetName, szOptionDesc, self.callbackIFace, szCallbackFunction, szWidgetName)
  895.         tab.setLayoutFlag(szWidgetName, "LAYOUT_HCENTER")
  896.         
  897.