|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# |
| 3 | +# GPL License and Copyright Notice ============================================ |
| 4 | +# This file is part of Wrye Bash. |
| 5 | +# |
| 6 | +# Wrye Bash is free software; you can redistribute it and/or |
| 7 | +# modify it under the terms of the GNU General Public License |
| 8 | +# as published by the Free Software Foundation; either version 2 |
| 9 | +# of the License, or (at your option) any later version. |
| 10 | +# |
| 11 | +# Wrye Bash is distributed in the hope that it will be useful, |
| 12 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | +# GNU General Public License for more details. |
| 15 | +# |
| 16 | +# You should have received a copy of the GNU General Public License |
| 17 | +# along with Wrye Bash; if not, write to the Free Software Foundation, |
| 18 | +# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 19 | +# |
| 20 | +# Wrye Bash copyright (C) 2005-2009 Wrye, 2010-2019 Wrye Bash Team |
| 21 | +# https://github.com/wrye-bash |
| 22 | +# |
| 23 | +# ============================================================================= |
| 24 | +from collections import OrderedDict |
| 25 | + |
| 26 | +default_tweaks = { |
| 27 | + u'Modding, Enabled [Fallout4Custom].ini': OrderedDict( |
| 28 | + [(u'Archive', OrderedDict( |
| 29 | + [(u'bInvalidateOlderFiles', u'1'), |
| 30 | + (u'sResourceDataDirsFinal', u'')]))]), |
| 31 | + u'Modding, Disabled ~Default [Fallout4Custom].ini': OrderedDict( |
| 32 | + [(u'Archive', OrderedDict( |
| 33 | + [(u'bInvalidateOlderFiles', u'0'), |
| 34 | + (u'sResourceDataDirsFinal', u'STRINGS\\')]))]), |
| 35 | + u'Always Run, Disabled [Fallout4Prefs].ini': OrderedDict( |
| 36 | + [(u'Controls', OrderedDict([(u'bAlwaysRunByDefault', u'0')]))]), |
| 37 | + u'Always Run, Enabled ~Default [Fallout4Prefs].ini': OrderedDict( |
| 38 | + [(u'Controls', OrderedDict([(u'bAlwaysRunByDefault', u'1')]))]), |
| 39 | + u'Colour HUD, Buff [Fallout4Prefs].ini': OrderedDict( |
| 40 | + [(u'Interface', OrderedDict( |
| 41 | + [(u'iHUDColorG', u'180'), (u'iHUDColorR', u'238'), |
| 42 | + (u'iHUDColorB', u'34')]))]), |
| 43 | + u'Colour HUD, Coral [Fallout4Prefs].ini': OrderedDict( |
| 44 | + [(u'Interface', OrderedDict( |
| 45 | + [(u'iHUDColorG', u'114'), (u'iHUDColorR', u'255'), |
| 46 | + (u'iHUDColorB', u'86')]))]), |
| 47 | + u'Colour HUD, Cream [Fallout4Prefs].ini': OrderedDict( |
| 48 | + [(u'Interface', OrderedDict( |
| 49 | + [(u'iHUDColorG', u'230'), (u'iHUDColorR', u'238'), |
| 50 | + (u'iHUDColorB', u'133')]))]), |
| 51 | + u'Colour HUD, Green ~Default [Fallout4Prefs].ini': OrderedDict([( |
| 52 | + u'Interface', OrderedDict( |
| 53 | + [(u'iHUDColorG', u'255'), (u'iHUDColorR', u'18'), |
| 54 | + (u'iHUDColorB', u'21')]))]), |
| 55 | + u'Colour HUD, Mauve [Fallout4Prefs].ini': OrderedDict( |
| 56 | + [(u'Interface', OrderedDict( |
| 57 | + [(u'iHUDColorG', u'58'), (u'iHUDColorR', u'178'), |
| 58 | + (u'iHUDColorB', u'238')]))]), |
| 59 | + u'Colour HUD, Red [Fallout4Prefs].ini': OrderedDict( |
| 60 | + [(u'Interface', OrderedDict( |
| 61 | + [(u'iHUDColorG', u'0'), (u'iHUDColorR', u'205'), |
| 62 | + (u'iHUDColorB', u'0')]))]), |
| 63 | + u'Colour HUD, SeaGreen [Fallout4Prefs].ini': OrderedDict( |
| 64 | + [(u'Interface', OrderedDict( |
| 65 | + [(u'iHUDColorG', u'178'), (u'iHUDColorR', u'32'), |
| 66 | + (u'iHUDColorB', u'170')]))]), |
| 67 | + u'Colour PipBoy, Buff [Fallout4Prefs].ini': OrderedDict( |
| 68 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.0900'), |
| 69 | + (u'fPipboyEffectColorR', u'0.8840'), |
| 70 | + (u'fPipboyEffectColorG', u'0.6940')]))]), |
| 71 | + u'Colour PipBoy, Coral [Fallout4Prefs].ini': OrderedDict( |
| 72 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.3397'), |
| 73 | + (u'fPipboyEffectColorR', u'0.8314'), |
| 74 | + (u'fPipboyEffectColorG', u'0.4071')]))]), |
| 75 | + u'Colour PipBoy, Cream [Fallout4Prefs].ini': OrderedDict( |
| 76 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.4867'), |
| 77 | + (u'fPipboyEffectColorR', u'0.8771'), |
| 78 | + (u'fPipboyEffectColorG', u'0.8412')]))]), |
| 79 | + u'Colour PipBoy, Green ~Default [Fallout4Prefs].ini': OrderedDict([( |
| 80 | + u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.0900'), |
| 81 | + (u'fPipboyEffectColorR', u'0.0800'), |
| 82 | + (u'fPipboyEffectColorG', u'1.0000')]))]), |
| 83 | + u'Colour PipBoy, Mauve [Fallout4Prefs].ini': OrderedDict( |
| 84 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.8579'), |
| 85 | + (u'fPipboyEffectColorR', u'0.6534'), |
| 86 | + (u'fPipboyEffectColorG', u'0.1853')]))]), |
| 87 | + u'Colour PipBoy, Red [Fallout4Prefs].ini': OrderedDict( |
| 88 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.0349'), |
| 89 | + (u'fPipboyEffectColorR', u'0.6436'), |
| 90 | + (u'fPipboyEffectColorG', u'0.0359')]))]), |
| 91 | + u'Colour PipBoy, SeaGreen [Fallout4Prefs].ini': OrderedDict( |
| 92 | + [(u'Pipboy', OrderedDict([(u'fPipboyEffectColorB', u'0.5983'), |
| 93 | + (u'fPipboyEffectColorR', u'0.0973'), |
| 94 | + (u'fPipboyEffectColorG', u'0.6185')]))]), |
| 95 | + u'DebugLog, Disabled ~Default [Fallout4Custom].ini': OrderedDict([( |
| 96 | + u'Papyrus', OrderedDict( |
| 97 | + [(u'bEnableLogging', u'0'), (u'bLoadDebugInformation', u'0'), |
| 98 | + (u'bEnableTrace', u'0')]))]), |
| 99 | + u'DebugLog, Enabled [Fallout4Custom].ini': OrderedDict( |
| 100 | + [(u'Papyrus', OrderedDict( |
| 101 | + [(u'bEnableLogging', u'1'), (u'bLoadDebugInformation', u'1'), |
| 102 | + (u'bEnableTrace', u'1')]))]), |
| 103 | + u'Depth Of Field, Off [Fallout4Prefs].ini': OrderedDict( |
| 104 | + [(u'Imagespace', OrderedDict([(u'bDoDepthOfField', u'0')]))]), |
| 105 | + u'Depth Of Field, On ~Default [Fallout4Prefs].ini': OrderedDict( |
| 106 | + [(u'Imagespace', OrderedDict([(u'bDoDepthOfField', u'1')]))]), |
| 107 | + u'Max Particles, 3000 [Fallout4Prefs].ini': OrderedDict( |
| 108 | + [(u'Particles', OrderedDict([(u'iMaxDesired', u'3000')]))]), |
| 109 | + u'Max Particles, 4000 [Fallout4Prefs].ini': OrderedDict( |
| 110 | + [(u'Particles', OrderedDict([(u'iMaxDesired', u'4000')]))]), |
| 111 | + u'Max Particles, 5000 [Fallout4Prefs].ini': OrderedDict( |
| 112 | + [(u'Particles', OrderedDict([(u'iMaxDesired', u'5000')]))]), |
| 113 | + u'Max Particles, 6000 ~Default [Fallout4Prefs].ini': OrderedDict( |
| 114 | + [(u'Particles', OrderedDict([(u'iMaxDesired', u'6000')]))]), |
| 115 | + u'Max Particles, 7000 [Fallout4Prefs].ini': OrderedDict( |
| 116 | + [(u'Particles', OrderedDict([(u'iMaxDesired', u'7000')]))]), |
| 117 | + u'ShadowMap, res 1024 [Fallout4Prefs].ini': OrderedDict( |
| 118 | + [(u'Display', OrderedDict([(u'iShadowMapResolution', u'1024')]))]), |
| 119 | + u'ShadowMap, res 2048 [Fallout4Prefs].ini': OrderedDict( |
| 120 | + [(u'Display', OrderedDict([(u'iShadowMapResolution', u'2048')]))]), |
| 121 | + u'ShadowMap, res 4096 [Fallout4Prefs].ini': OrderedDict( |
| 122 | + [(u'Display', OrderedDict([(u'iShadowMapResolution', u'4096')]))]), |
| 123 | + u'ShadowMap, res 512 [Fallout4Prefs].ini': OrderedDict( |
| 124 | + [(u'Display', OrderedDict([(u'iShadowMapResolution', u'512')]))]), |
| 125 | + u'VR Render Size Multiplier, 0.8 [Fallout4Custom].ini': OrderedDict( |
| 126 | + [(u'VRDisplay', OrderedDict([(u'fRenderTargetSizeMultiplier', u'0.8')]))]), |
| 127 | + u'VR Render Size Multiplier, 1.0 [Fallout4Custom].ini': OrderedDict( |
| 128 | + [(u'VRDisplay', OrderedDict([(u'fRenderTargetSizeMultiplier', u'1.0')]))]), |
| 129 | + u'VR Render Size Multiplier, 1.2 [Fallout4Custom].ini': OrderedDict( |
| 130 | + [(u'VRDisplay', OrderedDict([(u'fRenderTargetSizeMultiplier', u'1.2')]))]), |
| 131 | + u'VR Render Size Multiplier, 1.4 [Fallout4Custom].ini': OrderedDict( |
| 132 | + [(u'VRDisplay', OrderedDict([(u'fRenderTargetSizeMultiplier', u'1.4')]))]), |
| 133 | + u'VR Scale, 70 [Fallout4VrCustom].ini': OrderedDict( |
| 134 | + [(u'VR', OrderedDict([(u'fVrScale', u'70')]))]), |
| 135 | + u'VR Scale, 75 [Fallout4VrCustom].ini': OrderedDict( |
| 136 | + [(u'VR', OrderedDict([(u'fVrScale', u'75')]))]), |
| 137 | + u'VR Scale, 80 [Fallout4VrCustom].ini': OrderedDict( |
| 138 | + [(u'VR', OrderedDict([(u'fVrScale', u'80')]))]), |
| 139 | +} |
0 commit comments