]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_settings_effects.qc
Merge branch 'master' into Lyberta/StandaloneOverkillWeapons
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_settings_effects.qc
1 #include "dialog_settings_effects.qh"
2
3 #include "slider_picmip.qh"
4 #include "slider_sbfadetime.qh"
5 #include "weaponslist.qh"
6 #include "keybinder.qh"
7 #include "commandbutton.qh"
8 #include "textlabel.qh"
9 #include "checkbox.qh"
10 #include "textslider.qh"
11 #include "slider.qh"
12 #include "radiobutton.qh"
13 #include "checkbox_slider_invalid.qh"
14
15 entity makeXonoticEffectsSettingsTab()
16 {
17         entity me;
18         me = NEW(XonoticEffectsSettingsTab);
19         me.configureDialog(me);
20         return me;
21 }
22
23 float someShadowCvarIsEnabled(entity box)
24 {
25         if(cvar("r_shadow_realtime_dlight"))
26                 if(cvar("r_shadow_realtime_dlight_shadows"))
27                         return true;
28         if(cvar("r_shadow_realtime_world"))
29                 if(cvar("r_shadow_realtime_world_shadows"))
30                         return true;
31         return false;
32 }
33
34 void XonoticEffectsSettingsTab_fill(entity me)
35 {
36         entity e, s;
37         entity effectsApplyButton = makeXonoticCommandButton(_("Apply immediately"), '0 0 0', "vid_restart", COMMANDBUTTON_APPLY);
38         effectsApplyButton.disableOnClick = true;
39         float n;
40         me.TR(me);
41                 me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Quality preset:")));
42                 n = 5 + 2 * boolean(cvar("developer"));
43                 if(cvar("developer"))
44                 {
45                         me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^OMG!")), '1 0 1', "exec effects-omg.cfg", 0));
46                                 e.applyButton = effectsApplyButton;
47                 }
48                 me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^Low")), '0 0 0', "exec effects-low.cfg", 0));
49                         e.applyButton = effectsApplyButton;
50                 me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^Medium")), '0 0 0', "exec effects-med.cfg", 0));
51                         e.applyButton = effectsApplyButton;
52                 me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^Normal")), '0 0 0', "exec effects-normal.cfg", 0));
53                         e.applyButton = effectsApplyButton;
54                 me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^High")), '0 0 0', "exec effects-high.cfg", 0));
55                         e.applyButton = effectsApplyButton;
56                 me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^Ultra")), '0 0 0', "exec effects-ultra.cfg", 0));
57                         e.applyButton = effectsApplyButton;
58                 if(cvar("developer"))
59                 {
60                         me.TD(me, 1, 5 / n, e = makeXonoticCommandButton(ZCTX(_("PRE^Ultimate")), '0.5 0 0', "exec effects-ultimate.cfg", 0));
61                                 e.applyButton = effectsApplyButton;
62                 }
63
64         me.gotoRC(me, 1.25, 0);
65                 me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Geometry detail:")));
66                 me.TD(me, 1, 2, e = makeXonoticTextSlider_T("r_subdivisions_tolerance",
67                         _("Change the smoothness of the curves on the map (default: normal)")));
68                         e.addValue(e, ZCTX(_("DET^Lowest")), "16");
69                         e.addValue(e, ZCTX(_("DET^Low")), "8");
70                         e.addValue(e, ZCTX(_("DET^Normal")), "4");
71                         e.addValue(e, ZCTX(_("DET^Good")), "3");
72                         e.addValue(e, ZCTX(_("DET^Best")), "2");
73                         e.addValue(e, ZCTX(_("DET^Insane")), "1");
74                         e.configureXonoticTextSliderValues(e);
75                         e.applyButton = effectsApplyButton;
76         me.TR(me);
77                 me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Player detail:")));
78                 me.TD(me, 1, 2, e = makeXonoticTextSlider("cl_playerdetailreduction"));
79                         e.addValue(e, ZCTX(_("PDET^Low")), "4");
80                         e.addValue(e, ZCTX(_("PDET^Medium")), "3");
81                         e.addValue(e, ZCTX(_("PDET^Normal")), "2");
82                         e.addValue(e, ZCTX(_("PDET^Good")), "1");
83                         e.addValue(e, ZCTX(_("PDET^Best")), "0");
84                         e.configureXonoticTextSliderValues(e);
85                         e.applyButton = effectsApplyButton;
86         me.TR(me);
87                 me.TD(me, 1, 1, e = makeXonoticTextLabel(0, _("Texture resolution:")));
88                         setDependent(e, "r_showsurfaces", 0, 0);
89                 me.TD(me, 1, 2, e = makeXonoticPicmipSlider());
90                         if(cvar("developer"))
91                                 e.addValue(e, ZCTX(_("RES^Leet")), "1337");
92                         e.addValue(e, ZCTX(_("RES^Lowest")), "3");
93                         e.addValue(e, ZCTX(_("RES^Very low")), "2");
94                         e.addValue(e, ZCTX(_("RES^Low")), "1");
95                         e.addValue(e, ZCTX(_("RES^Normal")), "0");
96                         e.addValue(e, ZCTX(_("RES^Good")), "-1");
97                         e.addValue(e, ZCTX(_("RES^Best")), "-2");
98                         e.configureXonoticTextSliderValues(e);
99                         setDependent(e, "r_showsurfaces", 0, 0);
100                         e.applyButton = effectsApplyButton;
101         me.TR(me);
102                 me.TDempty(me, 0.2);
103                 {
104                         // detect texture compression method
105                         float f;
106                         f = updateCompression();
107                         switch(f)
108                         {
109                                 case 0:
110                                         me.TD(me, 1, 2.8, e = makeXonoticCheckBox(1, "r_texture_dds_load", _("Avoid lossy texture compression")));
111                                                 e.disabled = 1; // just show the checkbox anyway, but with no ability to control it
112                                                 e.applyButton = effectsApplyButton;
113                                         break;
114                                 case 1:
115                                         me.TD(me, 1, 2.8, e = makeXonoticCheckBox(1, "r_texture_dds_load", _("Avoid lossy texture compression")));
116                                                 setDependent(e, "r_showsurfaces", 0, 0);
117                                                 e.applyButton = effectsApplyButton;
118                                         break;
119                                 case 2:
120                                         me.TD(me, 1, 2.8, e = makeXonoticCheckBox(1, "r_texture_dds_load", _("Avoid lossy texture compression")));
121                                                 setDependent(e, "r_showsurfaces", 0, 0);
122                                                 makeMulti(e, "gl_texturecompression");
123                                                 e.applyButton = effectsApplyButton;
124                                         break;
125                         }
126                 }
127         me.TR(me);
128                 if(cvar("developer"))
129                 {
130                         me.TDempty(me, 0.2);
131                         me.TD(me, 1, 2.8, e = makeXonoticCheckBoxEx_T(3, 0, "r_showsurfaces", _("Show surfaces"),
132                                 _("Disable textures completely for very slow hardware. This gives a huge performance boost, but looks very ugly. (default: disabled)")));
133                 }
134         me.TR(me);
135                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(1, "mod_q3bsp_nolightmaps", _("Use lightmaps"),
136                         _("Use high resolution lightmaps, which will look pretty but use up some extra video memory (default: enabled)")));
137                         e.applyButton = effectsApplyButton;
138                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_glsl_deluxemapping", _("Deluxe mapping"),
139                         _("Use per-pixel lighting effects (default: enabled)")));
140                         setDependentAND(e, "vid_gl20", 1, 1, "mod_q3bsp_nolightmaps", 0, 0);
141                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_shadow_gloss", _("Gloss"),
142                         _("Enable the use of glossmaps on textures supporting it (default: enabled)")));
143                         setDependentAND3(e, "vid_gl20", 1, 1, "mod_q3bsp_nolightmaps", 0, 0, "r_glsl_deluxemapping", 1, 1);
144         me.TR(me);
145                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_glsl_offsetmapping", _("Offset mapping"),
146                         _("Offset mapping effect that will make textures with bumpmaps appear like they \"pop out\" of the flat 2D surface (default: disabled)")));
147                         setDependent(e, "vid_gl20", 1, 1);
148                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_glsl_offsetmapping_reliefmapping", _("Relief mapping"),
149                         _("Higher quality offset mapping, which also has a huge impact on performance (default: disabled)")));
150                         setDependentAND(e, "vid_gl20", 1, 1, "r_glsl_offsetmapping", 1, 1);
151         me.TR(me);
152                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_water", _("Reflections:"),
153                         _("Reflection and refraction quality, has a huge impact on performance on maps with reflecting surfaces (default: disabled)")));
154                         setDependent(e, "vid_gl20", 1, 1);
155                 me.TD(me, 1, 2, e = makeXonoticTextSlider_T("r_water_resolutionmultiplier",
156                         _("Resolution of reflections/refractions (default: good)")));
157                         e.addValue(e, _("Blurred"), "0.25");
158                         e.addValue(e, ZCTX(_("REFL^Good")), "0.5");
159                         e.addValue(e, _("Sharp"), "1");
160                         e.configureXonoticTextSliderValues(e);
161                         setDependentAND(e, "vid_gl20", 1, 1, "r_water", 1, 1);
162         me.TR(me);
163                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "cl_decals", _("Decals"),
164                         _("Enable decals (bullet holes and blood) (default: enabled)")));
165                 me.TD(me, 1, 2, e = makeXonoticCheckBox(0, "cl_decals_models", _("Decals on models")));
166                         setDependent(e, "cl_decals", 1, 1);
167         me.TR(me);
168                 me.TDempty(me, 0.2);
169                 me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Distance:")));
170                         setDependent(e, "cl_decals", 1, 1);
171                 me.TD(me, 1, 2, e = makeXonoticSlider_T(200, 500, 20, "r_drawdecals_drawdistance",
172                         _("Decals further away than this will not be drawn (default: 300)")));
173                         setDependent(e, "cl_decals", 1, 1);
174         me.TR(me);
175                 me.TDempty(me, 0.2);
176                 me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Time:")));
177                         setDependent(e, "cl_decals", 1, 1);
178                 me.TD(me, 1, 2, e = makeXonoticSlider_T(1, 20, 1, "cl_decals_fadetime",
179                         _("Time in seconds before decals fade away (default: 2)")));
180                         setDependent(e, "cl_decals", 1, 1);
181         me.TR(me);
182                 me.TDempty(me, 0.2);
183                 me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Damage effects:")));
184                 me.TD(me, 1, 2, e = makeXonoticTextSlider("cl_damageeffect"));
185                         e.addValue(e, ZCTX(_("DMGFX^Disabled")), "0");
186                         e.addValue(e, _("Skeletal"), "1");
187                         e.addValue(e, ZCTX(_("DMGFX^All")), "2");
188                         e.configureXonoticTextSliderValues(e);
189
190         me.gotoRC(me, 1.25, 3.2); me.setFirstColumn(me, me.currentColumn);
191                 me.TD(me, 1, 3, e = makeXonoticRadioButton_T(1, "r_coronas", "0", _("No dynamic lighting"),
192                         _("Enable corona flares around certain lights (default: enabled)")));
193         me.TR(me);
194                 me.TD(me, 1, 3, e = makeXonoticRadioButton_T(1, "gl_flashblend", string_null, _("Fake corona lighting"),
195                         _("Enable faster but uglier dynamic lights by rendering bright coronas instead of real dynamic lights (default: disabled)")));
196                 makeMulti(e, "r_coronas");
197         me.TR(me);
198                 me.TD(me, 1, 2, e = makeXonoticRadioButton_T(1, "r_shadow_realtime_dlight", string_null, _("Realtime dynamic lighting"),
199                         _("Enable rendering of dynamic lights such as explosions and rocket lights (default: enabled)")));
200                 makeMulti(e, "r_coronas");
201                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_shadow_realtime_dlight_shadows", _("Shadows"),
202                         _("Enable rendering of shadows from dynamic lights (default: disabled)")));
203                         setDependent(e, "r_shadow_realtime_dlight", 1, 1);
204         me.TR(me);
205                 me.TD(me, 1, 2, e = makeXonoticCheckBox_T(0, "r_shadow_realtime_world", _("Realtime world lighting"),
206                         _("Enable rendering of full realtime world lighting on maps that support it. Note that this might have a big impact on performance. (default: disabled)")));
207                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_shadow_realtime_world_shadows", _("Shadows"),
208                         _("Enable rendering of shadows from realtime world lights (default: disabled)")));
209                         setDependent(e, "r_shadow_realtime_world", 1, 1);
210         me.TR(me);
211                 me.TDempty(me, 0.2);
212                 me.TD(me, 1, 1.8, e = makeXonoticCheckBox_T(0, "r_shadow_usenormalmap", _("Use normal maps"),
213                         _("Enable use of directional shading on textures (default: enabled)")));
214                         setDependentOR(e, "r_shadow_realtime_dlight", 1, 1, "r_shadow_realtime_world", 1, 1);
215                 me.TD(me, 1, 1, e = makeXonoticCheckBox(0, "r_shadow_shadowmapping", _("Soft shadows")));
216                         setDependentWeird(e, someShadowCvarIsEnabled);
217         me.TR(me);
218                 me.TDempty(me, 0.2);
219                 me.TD(me, 1, 2.8, e = makeXonoticCheckBox_T(0, "r_coronas_occlusionquery", _("Fade corona according to visibility"),
220                         _("Fade coronas according to visibility (default: enabled)")));
221                         setDependent(e, "r_coronas", 1, 1);
222         me.TR(me);
223         me.TR(me);
224                 me.TD(me, 1, 1, e = makeXonoticCheckBox_T(0, "r_bloom", _("Bloom"),
225                         _("Enable bloom effect, which brightens the neighboring pixels of very bright pixels. Has a big impact on performance. (default: disabled)")));
226                 me.TD(me, 1, 2, e = makeXonoticCheckBoxEx_T(0.5, 0, "hud_postprocessing_maxbluralpha", _("Extra postprocessing effects"),
227                         _("Enables special postprocessing effects for when damaged or under water or using a powerup (default: disabled)")));
228                         makeMulti(e, "hud_powerup");
229                         setDependent(e, "vid_gl20", 1, 1);
230         me.TR(me);
231                 s = makeXonoticSlider_T(0.1, 1, 0.1, "r_motionblur",
232                         _("Motion blur strength - 0.4 recommended"));
233                 me.TD(me, 1, 1, e = makeXonoticSliderCheckBox(0, 1, s, _("Motion blur:")));
234                 if(s.value != e.savedValue)
235                         e.savedValue = 0.4; // default
236                 me.TD(me, 1, 2, s);
237         me.TR(me);
238         me.TR(me);
239                 me.TD(me, 1, 1, e = makeXonoticCheckBox(0, "cl_particles", _("Particles")));
240                 me.TD(me, 1, 2, e = makeXonoticCheckBox_T(0, "cl_spawn_point_particles", _("Spawnpoint effects"),
241                         _("Particles effects at all spawn points and whenever a player spawns")));
242                         makeMulti(e, "cl_spawn_event_particles");
243                         setDependent(e, "cl_particles", 1, 1);
244         me.TR(me);
245                 me.TDempty(me, 0.2);
246                 me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Quality:")));
247                         setDependent(e, "cl_particles", 1, 1);
248                 me.TD(me, 1, 2, e = makeXonoticSlider_T(0, 3.0, 0.25, "cl_particles_quality",
249                         _("Multiplier for amount of particles. Less means less particles, which in turn gives for better performance (default: 1.0)")));
250                         setDependent(e, "cl_particles", 1, 1);
251         me.TR(me);
252                 me.TDempty(me, 0.2);
253                 me.TD(me, 1, 0.8, e = makeXonoticTextLabel(0, _("Distance:")));
254                         setDependent(e, "cl_particles", 1, 1);
255                 me.TD(me, 1, 2, e = makeXonoticSlider_T(200, 3000, 200, "r_drawparticles_drawdistance",
256                         _("Particles further away than this will not be drawn (default: 1000)")));
257                         setDependent(e, "cl_particles", 1, 1);
258
259         me.gotoRC(me, me.rows - 1, 0);
260                 me.TD(me, 1, me.columns, effectsApplyButton);
261 }