Xonotic QuakeC
The free, fast arena FPS with crisp movement and a wide array of weapons
checkbox_slider_invalid.qc
Go to the documentation of this file.
2
3#include "slider.qh"
4
5entity makeXonoticSliderCheckBox(float theOffValue, float isInverted, entity theControlledSlider, string theText)
6{
8 me.configureXonoticSliderCheckBox(me, theOffValue, isInverted, theControlledSlider, theText);
9 return me;
10}
11void XonoticSliderCheckBox_configureXonoticSliderCheckBox(entity me, float theOffValue, float isInverted, entity theControlledSlider, string theText)
12{
13 me.offValue = theOffValue;
14 me.inverted = isInverted;
15 me.checked = (theControlledSlider.value == theOffValue);
16 if(theControlledSlider.value == median(theControlledSlider.valueMin, theControlledSlider.value, theControlledSlider.valueMax))
17 me.savedValue = theControlledSlider.value;
18 else
19 me.savedValue = theControlledSlider.valueMin;
20 me.controlledSlider = theControlledSlider;
21 me.configureCheckBox(me, theText, me.fontSize, me.image);
22 me.controlledCvar = theControlledSlider.controlledCvar; // in case we want to display the cvar in the tooltip
23 me.tooltip = theControlledSlider.tooltip;
24}
26{
27 me.checked = ((me.controlledSlider.value == me.offValue) != me.inverted);
28 if(me.controlledSlider.value == median(me.controlledSlider.valueMin, me.controlledSlider.value, me.controlledSlider.valueMax))
29 me.savedValue = me.controlledSlider.value;
31}
33{
34 if(me.checked == val)
35 return;
36 me.checked = val;
37 if(val == me.inverted)
38 me.controlledSlider.setValue(me.controlledSlider, median(me.controlledSlider.valueMin, me.savedValue, me.controlledSlider.valueMax), autocvar_menu_animations > 0);
39 else
40 me.controlledSlider.setValue(me.controlledSlider, me.offValue, autocvar_menu_animations > 0);
41}
float autocvar_menu_animations
Definition animation.qh:3
void XonoticSliderCheckBox_configureXonoticSliderCheckBox(entity me, float theOffValue, float isInverted, entity theControlledSlider, string theText)
entity makeXonoticSliderCheckBox(float theOffValue, float isInverted, entity theControlledSlider, string theText)
void XonoticSliderCheckBox_setChecked(entity me, bool val)
void XonoticSliderCheckBox_draw(entity me)
var entity(vector mins, vector maxs,.entity tofield) findbox_tofield_OrFallback
ERASEABLE float median(float a, float b, float c)
Definition math.qh:213
#define NEW(cname,...)
Definition oo.qh:117
#define SUPER(cname)
Definition oo.qh:231