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

  1. from CvPythonExtensions import *
  2. import CvScreensInterface
  3. import Popup as PyPopup
  4. import CvUtil
  5. import string
  6.  
  7. localText = CyTranslator()
  8. UserProfile = CyUserProfile()
  9.  
  10. #"""
  11. #OPTIONS SCREEN CALLBACK INTERFACE - Any time something is changed in the Options Screen the result is determined here
  12. #"""
  13.  
  14. def saveProfile():
  15.     if (UserProfile.getProfileName() != ""):
  16.         UserProfile.writeToFile(UserProfile.getProfileName())
  17.     
  18. def getOptionsScreen():
  19.     return CvScreensInterface.optionsScreen
  20.     
  21. def getTabControl():
  22.     return getOptionsScreen().getTabControl()
  23.  
  24. def refresh():
  25.     getOptionsScreen().refreshScreen()
  26.     
  27. def restartPopup(bForceShowing = false):
  28.     
  29.     if (CyInterface().isInMainMenu() == false or bForceShowing == true):
  30.         
  31.         # create popup
  32.         popup = PyPopup.PyPopup()
  33.         popup.setHeaderString("")
  34.         popup.setBodyString(localText.getText("TXT_KEY_OPTIONS_NEED_TO_RESTART", ()))
  35.         popup.launch()
  36.  
  37. def isNumber(s):
  38.     
  39.     for l in s:
  40.         if l not in string.digits:
  41.             return False
  42.             
  43.     return True
  44.  
  45. def DummyCallback( argsList ):
  46.     "This is the callback function for controls which shouldn't do anything when modified (editboxes, mainly)"
  47.     return
  48.     
  49. ######################################## GAME OPTIONS ########################################
  50.     
  51. def handleGameOptionsClicked ( argsList ): 
  52.     "Handles checkbox clicked input"
  53.     bValue, szName = argsList
  54.     
  55.     iGameOption = int(szName[szName.find("_")+1:])
  56.     CyMessageControl().sendPlayerOption(iGameOption, bValue)
  57.     return 1
  58.     
  59. def handleLanguagesDropdownBoxInput ( argsList ):
  60.     "Handles Languages Dropdown Box input"
  61.     iValue, szName = argsList
  62.     
  63.     CyGame().setCurrentLanguage(iValue)
  64.     
  65.     popup = PyPopup.PyPopup()
  66.     popup.setHeaderString("")
  67.     popup.setBodyString(localText.getText("TXT_KEY_FEAT_ACCOMPLISHED_OK", ()))
  68.     popup.launch()
  69.     
  70.     return 1
  71.     
  72. def handleGameReset ( argsList ):
  73.     "Resets these options"
  74.     szName = argsList
  75.     
  76.     UserProfile.resetOptions(TabGroupTypes.TABGROUP_GAME)
  77.     refresh()
  78.     saveProfile()
  79.     
  80.     return 1
  81.     
  82. ######################################## GRAPHIC OPTIONS ########################################
  83.     
  84. def handleGraphicOptionsClicked ( argsList ): 
  85.     "Handles checkbox clicked input"
  86.     bValue, szName = argsList
  87.     iGraphicOption = int(szName[szName.find("_")+1:])
  88.     
  89.     UserProfile.setGraphicOption(iGraphicOption, bValue)
  90.     
  91.     if (iGraphicOption == GraphicOptionTypes.GRAPHICOPTION_SINGLE_UNIT_GRAPHICS):
  92.         restartPopup(true)
  93.         
  94.     return 1
  95.     
  96. def handleGraphicsLevelDropdownBoxInput ( argsList ):
  97.     "Handles Graphics Level Dropdown Box input"
  98.     iValue, szName = argsList
  99.     
  100.     UserProfile.setGraphicsLevel(iValue)
  101.     refresh()
  102.     
  103.     restartPopup(true)
  104.     return 1
  105.     
  106. def handleRenderQualityDropdownBoxInput ( argsList ):
  107.     "Handles Render Quality Dropdown Box input"
  108.     iValue, szName = argsList
  109.     
  110.     UserProfile.setRenderQualityLevel(iValue)
  111.     
  112.     return 1
  113.     
  114. def handleGlobeViewDropdownBoxInput ( argsList ):
  115.     "Handles Globe View Dropdown Box input"
  116.     iValue, szName = argsList
  117.     
  118.     UserProfile.setGlobeViewRenderLevel(iValue)
  119.     
  120.     return 1
  121.     
  122. def handleResolutionDropdownInput ( argsList ):
  123.     "Handles Resolution Dropdown Box input"
  124.     iValue, szName = argsList
  125.     
  126.     UserProfile.setResolution(iValue)
  127.     
  128.     return 1
  129.     
  130. def handleAntiAliasingDropdownInput ( argsList ):
  131.     "Handles Anti-Aliasing Dropdown Box input"
  132.     iValue, szName = argsList
  133.     
  134.     UserProfile.setAntiAliasing(iValue)
  135.     return 1
  136.     
  137. def handleGraphicsReset ( argsList ):
  138.     "Resets these options"
  139.     szName = argsList
  140.     
  141.     UserProfile.resetOptions(TabGroupTypes.TABGROUP_GRAPHICS)
  142.     refresh()
  143.     restartPopup()
  144.     saveProfile()
  145.     
  146.     return 1
  147.     
  148. ######################################## AUDIO OPTIONS ########################################
  149.     
  150. def handleVolumeSlidersInput ( argsList ):
  151.     "Handles Volume slider input"
  152.     iValue, szName = argsList
  153.     iVolumeType = int(szName[szName.find("_")+1:])
  154.     
  155.      iMax = UserProfile.getVolumeStops()
  156.     
  157.     if (iVolumeType == 0):        # Master Volume
  158.         UserProfile.setMasterVolume(iMax - iValue)
  159.     elif (iVolumeType == 1):    # Music Volume
  160.         UserProfile.setMusicVolume(iMax - iValue)
  161.     elif (iVolumeType == 2):    # Sound Effects Volume
  162.         UserProfile.setSoundEffectsVolume(iMax - iValue)
  163.     elif (iVolumeType == 3):    # Speech Volume
  164.         UserProfile.setSpeechVolume(iMax - iValue)
  165.     elif (iVolumeType == 4):    # Ambience Volume
  166.         UserProfile.setAmbienceVolume(iMax - iValue)
  167.     elif (iVolumeType == 5):    # Interface Volume
  168.         UserProfile.setInterfaceVolume(iMax - iValue)
  169.     
  170.     return 1
  171.     
  172. def handleVolumeCheckboxesInput ( argsList ): 
  173.     "Handles checkbox clicked input"
  174.     bValue, szName = argsList
  175.     iVolumeType = int(szName[szName.find("_")+1:])
  176.     
  177.     if (iVolumeType == 0):        # Master Volume
  178.         UserProfile.setMasterNoSound(bValue)
  179.     elif (iVolumeType == 1):    # Music Volume
  180.         UserProfile.setMusicNoSound(bValue)
  181.     elif (iVolumeType == 2):    # Sound Effects Volume
  182.         UserProfile.setSoundEffectsNoSound(bValue)
  183.     elif (iVolumeType == 3):    # Speech Volume
  184.         UserProfile.setSpeechNoSound(bValue)
  185.     elif (iVolumeType == 4):    # Ambience Volume
  186.         UserProfile.setAmbienceNoSound(bValue)
  187.     elif (iVolumeType == 5):    # Interface Volume
  188.         UserProfile.setInterfaceNoSound(bValue)
  189.     
  190.     return 1
  191.     
  192. def handleCustomMusicPathCheckboxInput ( argsList ): 
  193.     "Handles Custom Music Path text changed input"
  194.     bValue, szName = argsList
  195.     
  196.     if (bValue):
  197.         UserProfile.setMusicPath(str(getOptionsScreen().getMusicPath()))
  198.     else:
  199.         UserProfile.setMusicPath("")
  200.     
  201.     return 1
  202.     
  203. def handleCustomMusicPathButtonInput ( argsList ):
  204.     "Handles Custom Music Path Browse Button clicked input"
  205.     szName = argsList
  206.     
  207.     UserProfile.musicPathDialogBox()
  208.     return 1
  209.     
  210. def handleSpeakerConfigDropdownInput ( argsList ):
  211.     "Handles Speaker Config Dropdown Box input"
  212.     iValue, szName = argsList
  213.     szSpeakerConfigName = UserProfile.getSpeakerConfigFromList(iValue)
  214.     
  215.     UserProfile.setSpeakerConfig(szSpeakerConfigName)
  216.     restartPopup(true)
  217.     
  218.     return 1
  219.     
  220. def handleVoiceCheckboxInput ( argsList ): 
  221.     "Handles voice checkbox clicked input"
  222.     bValue, szName = argsList
  223.     UserProfile.setUseVoice(bValue)
  224.     return 1
  225.     
  226. def handleCaptureDeviceDropdownInput ( argsList ): 
  227.     "Handles Capture Device Config Dropdown Box input"
  228.     iValue, szName = argsList
  229.     UserProfile.setCaptureDevice(iValue)
  230.     return 1
  231.     
  232. def handleCaptureVolumeSliderInput ( argsList ):
  233.     "Handles Capture Volume slider input"
  234.     iValue, szName = argsList
  235.      iMax = UserProfile.getMaxPlaybackVolume()
  236.     
  237.     UserProfile.setCaptureVolume(iValue)
  238.     return 1
  239.     
  240. def handlePlaybackDeviceDropdownInput ( argsList ): 
  241.     "Handles Playback Device Dropdown Box input"
  242.     iValue, szName = argsList
  243.     UserProfile.setPlaybackDevice(iValue)
  244.     return 1
  245.     
  246. def handlePlaybackVolumeSliderInput ( argsList ):
  247.     "Handles Playback Volume slider input"
  248.     iValue, szName = argsList
  249.      iMax = UserProfile.getMaxPlaybackVolume()
  250.  
  251. #     UserProfile.setPlaybackVolume(iMax - iValue)
  252.      UserProfile.setPlaybackVolume(iValue)
  253.     return 1
  254.     
  255. def handleAudioReset ( argsList ):
  256.     "Resets these options"
  257.     szName = argsList
  258.     
  259.     UserProfile.resetOptions(TabGroupTypes.TABGROUP_AUDIO)
  260.     refresh()
  261.     restartPopup(true)
  262.     saveProfile()
  263.     
  264.     return 1
  265.     
  266. ######################################## NETWORK OPTIONS ########################################
  267.  
  268. def handleBroadbandSelected ( argsList ):
  269.     "Handles bandwidth selection"
  270.     bSelected, szName = argsList
  271.     if (bSelected):
  272.         CyGame().setModem(false)
  273.     return 1
  274.     
  275. def handleModemSelected ( argsList ):
  276.     "Handles bandwidth selection"
  277.     bSelected, szName = argsList
  278.     if (bSelected):
  279.         CyGame().setModem(true)
  280.     return 1
  281.     
  282. ######################################## CLOCK OPTIONS ########################################
  283.     
  284. def handleClockOnCheckboxInput ( argsList ):
  285.     "Handles Clock On/Off checkbox clicked input"
  286.     bValue, szName = argsList
  287.     
  288.     UserProfile.setClockOn(bValue)
  289.     return 1
  290.     
  291. def handle24HourClockCheckboxInput ( argsList ):
  292.     "Handles 24 Hour Clock On/Off checkbox clicked input"
  293.     bValue, szName = argsList
  294.     
  295.     UserProfile.set24Hours(bValue)
  296.     return 1
  297.     
  298. def handleAlarmOnCheckboxInput ( argsList ):
  299.     "Handles Alarm On/Off checkbox clicked input"
  300.     bValue, szName = argsList
  301.     
  302.     iHour = getOptionsScreen().getAlarmHour()
  303.     iMin = getOptionsScreen().getAlarmMin()
  304.     
  305.     if (isNumber(iHour) and iHour != "" and isNumber(iMin) and iMin != "" ):
  306.         
  307.         iHour = int(iHour)
  308.         iMin = int(iMin)
  309.         
  310.         if (iHour > 0 or iMin > 0):
  311.             toggleAlarm(bValue, iHour, iMin)
  312.     
  313.     return 1
  314.     
  315. def handleOtherReset ( argsList ):
  316.     "Resets these options"
  317.     szName = argsList
  318.     
  319.     UserProfile.resetOptions(TabGroupTypes.TABGROUP_CLOCK)
  320.     refresh()
  321.     saveProfile()
  322.     
  323.     return 1
  324.     
  325. ######################################## PROFILES ########################################
  326.     
  327. def handleProfilesDropdownInput ( argsList ):
  328.     "Handles Profiles tab dropdown box input"
  329.     
  330.     iValue, szName = argsList
  331.     saveProfile()
  332.         
  333.     # Load other file
  334.     szFilename = UserProfile.getProfileFileName(iValue)
  335.     szProfile = szFilename[szFilename.find("PROFILES\\")+9:-4]
  336.     
  337.     bSuccess = loadProfile(szProfile)
  338.     return bSuccess
  339.     
  340. def handleNewProfileButtonInput ( argsList ):
  341.     "Handles New Profile Button clicked input"
  342.     szName = argsList
  343.     
  344.     saveProfile()
  345.     
  346.     szNewProfileName = getOptionsScreen().getProfileEditCtrlText()
  347.     szNarrow = szNewProfileName.encode("latin_1")
  348.     UserProfile.setProfileName(szNarrow)
  349.     UserProfile.writeToFile(szNarrow)
  350.     
  351.     # Recalculate file info when new file is saved out
  352.     UserProfile.loadProfileFileNames()
  353.     
  354.     saveProfile()
  355.     
  356.     refresh()
  357.     
  358.     # create popup
  359.     popup = PyPopup.PyPopup()
  360.     popup.setHeaderString("")
  361.     popup.setBodyString(localText.getText("TXT_KEY_OPTIONS_SAVED_PROFILE", (szNewProfileName, )))
  362.     popup.launch()
  363.     
  364.     return 1
  365.     
  366. def handleDeleteProfileButtonInput ( argsList ):
  367.     "Handles Delete Profile Button clicked input"
  368.     szName = argsList
  369.     
  370.     szProfileName =CvUtil.convertToStr(getOptionsScreen().getProfileEditCtrlText())
  371.     
  372.     if (UserProfile.deleteProfileFile(szProfileName)):    # Note that this function automatically checks to see if the string passed is a valid file to be deleted (it must have the proper file extension though)
  373.         
  374.         # Recalculate list of stuff
  375.         UserProfile.loadProfileFileNames()
  376.         
  377.         # create popup
  378.         popup = PyPopup.PyPopup()
  379.         popup.setHeaderString("")
  380.         popup.setBodyString(localText.getText("TXT_KEY_OPTIONS_DELETED_PROFILE", (szProfileName, )))
  381.         popup.launch()
  382.         
  383.         bSuccess = true
  384.         
  385.         if (szProfileName == UserProfile.getProfileName()):
  386.             
  387.             UserProfile.setProfileName("")
  388.                 
  389.             # Load other file
  390.             szFilename = UserProfile.getProfileFileName(0)
  391.             szProfile = szFilename[szFilename.find("PROFILES\\")+9:-4]
  392.             
  393.             bSuccess = loadProfile(szProfile)
  394.         
  395.         refresh()
  396.         
  397.         return bSuccess
  398.         
  399.     return 0
  400.     
  401. def loadProfile(szProfile):
  402.     
  403.     bReadSuccessful = UserProfile.readFromFile(szProfile)
  404.     
  405.     if (bReadSuccessful):
  406.         UserProfile.recalculateAudioSettings()
  407.         
  408.         getOptionsScreen().setProfileEditCtrlText(szProfile)
  409.         
  410.         ########### Now we have to update everything we loaded since nothing is done except the serialization on load ###########
  411.         
  412.         # Game Options
  413.         for iOptionLoop in range(PlayerOptionTypes.NUM_PLAYEROPTION_TYPES):
  414.             bValue = UserProfile.getPlayerOption(iOptionLoop)
  415.             CyMessageControl().sendPlayerOption(iOptionLoop, bValue)
  416.         
  417.         # Graphics Options
  418.         for iOptionLoop in range(GraphicOptionTypes.NUM_GRAPHICOPTION_TYPES):
  419.             bValue = UserProfile.getGraphicOption(iOptionLoop)
  420.             UserProfile.setGraphicOption(iOptionLoop, bValue)
  421.             
  422.         # Beware! These guys aren't safe to change:
  423.         UserProfile.setAntiAliasing(UserProfile.getAntiAliasing())
  424.         UserProfile.setResolution(UserProfile.getResolution())
  425.         
  426.         # Audio Options
  427.         UserProfile.setSpeakerConfig(UserProfile.getSpeakerConfig())
  428.         UserProfile.setMusicPath(UserProfile.getMusicPath())
  429.         UserProfile.setUseVoice(UserProfile.useVoice())
  430.         UserProfile.setCaptureDevice(UserProfile.getCaptureDeviceIndex())
  431.         UserProfile.setPlaybackDevice(UserProfile.getPlaybackDeviceIndex())
  432.         UserProfile.setCaptureVolume(UserProfile.getCaptureVolume())
  433.         UserProfile.setPlaybackVolume(UserProfile.getPlaybackVolume())
  434.         
  435.         # Clock Options
  436.         UserProfile.setClockOn(UserProfile.isClockOn())
  437.         
  438.         #################
  439.         
  440.         # create popup
  441.         popup = PyPopup.PyPopup()
  442.         popup.setHeaderString("")
  443.         popup.setBodyString(localText.getText("TXT_KEY_OPTIONS_LOADED_PROFILE", (szProfile, )))
  444.         popup.launch()
  445.         
  446.         # Refresh options screen with updated values
  447.         refresh()
  448.         
  449.         return 1
  450.         
  451.     # Load failed
  452.     else:
  453.         
  454.         # create popup
  455.         popup = PyPopup.PyPopup()
  456.         popup.setHeaderString("")
  457.         popup.setBodyString(localText.getText("TXT_KEY_OPTIONS_LOAD_PROFILE_FAIL", ()))
  458.         popup.launch()
  459.         
  460.         return 0
  461.         
  462. def handleExitButtonInput ( argsList ):
  463.     "Exits the screen"
  464.     szName = argsList
  465.     
  466.     saveProfile()
  467.     getTabControl().destroy()
  468.     
  469.     return 1
  470.