Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
446 lines (379 sloc)
11.5 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //----------------------------------------------------------------------------- | |
| // Copyright (c) 2012 GarageGames, LLC | |
| // | |
| // Permission is hereby granted, free of charge, to any person obtaining a copy | |
| // of this software and associated documentation files (the "Software"), to | |
| // deal in the Software without restriction, including without limitation the | |
| // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or | |
| // sell copies of the Software, and to permit persons to whom the Software is | |
| // furnished to do so, subject to the following conditions: | |
| // | |
| // The above copyright notice and this permission notice shall be included in | |
| // all copies or substantial portions of the Software. | |
| // | |
| // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | |
| // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | |
| // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | |
| // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | |
| // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | |
| // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS | |
| // IN THE SOFTWARE. | |
| //----------------------------------------------------------------------------- | |
| $PostFXManager::vebose = true; | |
| function postVerbose(%string) | |
| { | |
| if($PostFXManager::vebose == true) | |
| { | |
| echo(%string); | |
| } | |
| } | |
| function PostFXManager::onDialogPush( %this ) | |
| { | |
| //Apply the settings to the controls | |
| postVerbose("% - PostFX Manager - Loading GUI."); | |
| %this.settingsRefreshAll(); | |
| } | |
| // :: Controls for the overall postFX manager dialog | |
| function ppOptionsEnable::onAction(%this) | |
| { | |
| //Disable / Enable all PostFX | |
| if(ppOptionsEnable.getValue()) | |
| { | |
| %toEnable = true; | |
| } | |
| else | |
| { | |
| %toEnable = false; | |
| } | |
| PostFXManager.settingsSetEnabled(%toEnable); | |
| } | |
| function PostFXManager::getEnableResultFromControl(%this, %control) | |
| { | |
| %toEnable = -1; | |
| %bTest = %control.getValue(); | |
| if(%bTest == 1) | |
| { | |
| %toEnable = true; | |
| } | |
| else | |
| { | |
| %toEnable = false; | |
| } | |
| return %toEnable; | |
| } | |
| function ppOptionsEnableSSAO::onAction(%this) | |
| { | |
| %toEnable = PostFXManager.getEnableResultFromControl(%this); | |
| PostFXManager.settingsEffectSetEnabled("SSAO", %toEnable); | |
| } | |
| function ppOptionsEnableHDR::onAction(%this) | |
| { | |
| %toEnable = PostFXManager.getEnableResultFromControl(%this); | |
| PostFXManager.settingsEffectSetEnabled("HDR", %toEnable); | |
| } | |
| function ppOptionsEnableLightRays::onAction(%this) | |
| { | |
| %toEnable = PostFXManager.getEnableResultFromControl(%this); | |
| PostFXManager.settingsEffectSetEnabled("LightRays", %toEnable); | |
| } | |
| function ppOptionsEnableDOF::onAction(%this) | |
| { | |
| %toEnable = PostFXManager.getEnableResultFromControl(%this); | |
| PostFXManager.settingsEffectSetEnabled("DOF", %toEnable); | |
| } | |
| function ppOptionsEnableVignette::onAction(%this) | |
| { | |
| %toEnable = PostFXManager.getEnableResultFromControl(%this); | |
| PostFXManager.settingsEffectSetEnabled("Vignette", %toEnable); | |
| } | |
| function ppOptionsSavePreset::onClick(%this) | |
| { | |
| //Stores the current settings into a preset file for loading and use later on | |
| } | |
| function ppOptionsLoadPreset::onClick(%this) | |
| { | |
| //Loads and applies the settings from a postfxpreset file | |
| } | |
| //Other controls, Quality dropdown | |
| function ppOptionsSSAOQuality::onSelect( %this, %id, %text ) | |
| { | |
| if(%id > -1 && %id < 3) | |
| { | |
| $SSAOPostFx::quality = %id; | |
| } | |
| } | |
| //SSAO Slider controls | |
| //General Tab | |
| function ppOptionsSSAOOverallStrength::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::overallStrength = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOBlurDepth::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::blurDepthTol = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOBlurNormal::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::blurNormalTol = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Near Tab | |
| function ppOptionsSSAONearRadius::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sRadius = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAONearStrength::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sStrength = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAONearDepthMin::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sDepthMin = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAONearDepthMax::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sDepthMax = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAONearToleranceNormal::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sNormalTol = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAONearTolerancePower::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::sNormalPow = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Far Tab | |
| function ppOptionsSSAOFarRadius::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lRadius = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOFarStrength::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lStrength = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOFarDepthMin::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lDepthMin = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOFarDepthMax::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lDepthMax = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOFarToleranceNormal::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lNormalTol = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsSSAOFarTolerancePower::onMouseDragged(%this) | |
| { | |
| $SSAOPostFx::lNormalPow = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //HDR Slider Controls | |
| //Brighness tab | |
| function ppOptionsHDRToneMappingAmount::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::enableToneMapping = %this.value; | |
| %this.ToolTip = "value : " @ %this.value; | |
| } | |
| function ppOptionsHDRKeyValue::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::keyValue = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRMinLuminance::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::minLuminace = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRWhiteCutoff::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::whiteCutoff = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRBrightnessAdaptRate::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::adaptRate = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Blur tab | |
| function ppOptionsHDRBloomBlurBrightPassThreshold::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::brightPassThreshold = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRBloomBlurMultiplier::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::gaussMultiplier = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRBloomBlurMean::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::gaussMean = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRBloomBlurStdDev::onMouseDragged(%this) | |
| { | |
| $HDRPostFX::gaussStdDev = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsHDRBloom::onAction(%this) | |
| { | |
| $HDRPostFX::enableBloom = %this.getValue(); | |
| } | |
| function ppOptionsHDRToneMapping::onAction(%this) | |
| { | |
| //$HDRPostFX::enableToneMapping = %this.getValue(); | |
| } | |
| function ppOptionsHDREffectsBlueShift::onAction(%this) | |
| { | |
| $HDRPostFX::enableBlueShift = %this.getValue(); | |
| } | |
| //Controls for color range in blue Shift dialog | |
| function ppOptionsHDREffectsBlueShiftColorBlend::onAction(%this) | |
| { | |
| $HDRPostFX::blueShiftColor = %this.PickColor; | |
| %this.ToolTip = "Color Values : " @ %this.PickColor; | |
| } | |
| function ppOptionsHDREffectsBlueShiftColorBaseColor::onAction(%this) | |
| { | |
| //This one feeds the one above | |
| ppOptionsHDREffectsBlueShiftColorBlend.baseColor = %this.PickColor; | |
| %this.ToolTip = "Color Values : " @ %this.PickColor; | |
| } | |
| //Light rays Brightness Slider Controls | |
| function ppOptionsLightRaysBrightScalar::onMouseDragged(%this) | |
| { | |
| $LightRayPostFX::brightScalar = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Light rays Number of Samples Slider Control | |
| function ppOptionsLightRaysSampleScalar::onMouseDragged(%this) | |
| { | |
| $LightRayPostFX::numSamples = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Light rays Density Slider Control | |
| function ppOptionsLightRaysDensityScalar::onMouseDragged(%this) | |
| { | |
| $LightRayPostFX::density = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Light rays Weight Slider Control | |
| function ppOptionsLightRaysWeightScalar::onMouseDragged(%this) | |
| { | |
| $LightRayPostFX::weight = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| //Light rays Decay Slider Control | |
| function ppOptionsLightRaysDecayScalar::onMouseDragged(%this) | |
| { | |
| $LightRayPostFX::decay = %this.value; | |
| %this.ToolTip = "Value : " @ %this.value; | |
| } | |
| function ppOptionsUpdateDOFSettings() | |
| { | |
| DOFPostEffect.setFocusParams( $DOFPostFx::BlurMin, $DOFPostFx::BlurMax, $DOFPostFx::FocusRangeMin, $DOFPostFx::FocusRangeMax, -($DOFPostFx::BlurCurveNear), $DOFPostFx::BlurCurveFar ); | |
| DOFPostEffect.setAutoFocus( $DOFPostFx::EnableAutoFocus ); | |
| DOFPostEffect.setFocalDist(0); | |
| if($PostFXManager::PostFX::EnableDOF) | |
| { | |
| DOFPostEffect.enable(); | |
| } | |
| else | |
| { | |
| DOFPostEffect.disable(); | |
| } | |
| } | |
| //DOF General Tab | |
| //DOF Toggles | |
| function ppOptionsDOFEnableDOF::onAction(%this) | |
| { | |
| $PostFXManager::PostFX::EnableDOF = %this.getValue(); | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFEnableAutoFocus::onAction(%this) | |
| { | |
| $DOFPostFx::EnableAutoFocus = %this.getValue(); | |
| DOFPostEffect.setAutoFocus( %this.getValue() ); | |
| } | |
| //DOF AutoFocus Slider controls | |
| function ppOptionsDOFFarBlurMinSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::BlurMin = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFFarBlurMaxSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::BlurMax = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFFocusRangeMinSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::FocusRangeMin = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFFocusRangeMaxSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::FocusRangeMax = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFBlurCurveNearSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::BlurCurveNear = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsDOFBlurCurveFarSlider::onMouseDragged(%this) | |
| { | |
| $DOFPostFx::BlurCurveFar = %this.value; | |
| ppOptionsUpdateDOFSettings(); | |
| } | |
| function ppOptionsEnableHDRDebug::onAction(%this) | |
| { | |
| if ( %this.getValue() ) | |
| LuminanceVisPostFX.enable(); | |
| else | |
| LuminanceVisPostFX.disable(); | |
| } | |
| function ppOptionsUpdateVignetteSettings() | |
| { | |
| if($PostFXManager::PostFX::EnableVignette) | |
| { | |
| VignettePostEffect.enable(); | |
| } | |
| else | |
| { | |
| VignettePostEffect.disable(); | |
| } | |
| } | |
| function ppOptionsVignetteEnableVignette::onAction(%this) | |
| { | |
| $PostFXManager::PostFX::EnableVignette = %this.getValue(); | |
| ppOptionsUpdateVignetteSettings(); | |
| } | |
| function ppColorCorrection_selectFile() | |
| { | |
| %filter = "Image Files (*.png, *.jpg, *.dds, *.bmp, *.gif, *.jng. *.tga)|*.png;*.jpg;*.dds;*.bmp;*.gif;*.jng;*.tga|All Files (*.*)|*.*|"; | |
| getLoadFilename( %filter, "ppColorCorrection_selectFileHandler"); | |
| } | |
| function ppColorCorrection_selectFileHandler( %filename ) | |
| { | |
| if ( %filename $= "" || !isFile( %filename ) ) | |
| %filename = "core/scripts/client/postFx/null_color_ramp.png"; | |
| else | |
| %filename = makeRelativePath( %filename, getMainDotCsDir() ); | |
| $HDRPostFX::colorCorrectionRamp = %filename; | |
| PostFXManager-->ColorCorrectionFileName.Text = %filename; | |
| } |