]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/slider.qc
Merge branch 'master' into terencehill/weapon_panel_fix
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / slider.qc
1 #ifdef INTERFACE
2 CLASS(XonoticSlider) EXTENDS(Slider)
3         METHOD(XonoticSlider, configureXonoticSlider, void(entity, float, float, float, string))
4         METHOD(XonoticSlider, setValue, void(entity, float))
5         ATTRIB(XonoticSlider, fontSize, float, SKINFONTSIZE_NORMAL)
6         ATTRIB(XonoticSlider, valueSpace, float, SKINWIDTH_SLIDERTEXT)
7         ATTRIB(XonoticSlider, image, string, SKINGFX_SLIDER)
8         ATTRIB(XonoticSlider, tolerance, vector, SKINTOLERANCE_SLIDER)
9         ATTRIB(XonoticSlider, align, float, 0.5)
10         ATTRIB(XonoticSlider, color, vector, SKINCOLOR_SLIDER_N)
11         ATTRIB(XonoticSlider, colorC, vector, SKINCOLOR_SLIDER_C)
12         ATTRIB(XonoticSlider, colorF, vector, SKINCOLOR_SLIDER_F)
13         ATTRIB(XonoticSlider, colorD, vector, SKINCOLOR_SLIDER_D)
14         ATTRIB(XonoticSlider, color2, vector, SKINCOLOR_SLIDER_S)
15
16         ATTRIB(XonoticSlider, cvarName, string, string_null)
17         METHOD(XonoticSlider, loadCvars, void(entity))
18         METHOD(XonoticSlider, saveCvars, void(entity))
19         ATTRIB(XonoticSlider, sendCvars, float, 0)
20
21         ATTRIB(XonoticSlider, alpha, float, SKINALPHA_TEXT)
22         ATTRIB(XonoticSlider, disabledAlpha, float, SKINALPHA_DISABLED)
23 ENDCLASS(XonoticSlider)
24 entity makeXonoticSlider(float, float, float, string);
25 #endif
26
27 #ifdef IMPLEMENTATION
28 entity makeXonoticSlider(float theValueMin, float theValueMax, float theValueStep, string theCvar)
29 {
30         entity me;
31         me = spawnXonoticSlider();
32         me.configureXonoticSlider(me, theValueMin, theValueMax, theValueStep, theCvar);
33         return me;
34 }
35 void XonoticSlider_configureXonoticSlider(entity me, float theValueMin, float theValueMax, float theValueStep, string theCvar)
36 {
37         float vp;
38         vp = theValueStep * 10;
39         while(fabs(vp) < fabs(theValueMax - theValueMin) / 40)
40                 vp *= 10;
41
42         me.configureSliderVisuals(me, me.fontSize, me.align, me.valueSpace, me.image);
43
44         if(theCvar)
45         {
46                 // Prevent flickering of the slider button by initialising the
47                 // slider out of bounds to hide the button before loading the cvar
48                 me.configureSliderValues(me, theValueMin, theValueMin-theValueStep, theValueMax, theValueStep, theValueStep, vp);
49                 me.cvarName = theCvar;
50                 me.loadCvars(me);
51                 me.tooltip = getZonedTooltipForIdentifier(theCvar);
52         }
53         else
54                 me.configureSliderValues(me, theValueMin, theValueMin, theValueMax, theValueStep, theValueStep, vp);
55 }
56 void XonoticSlider_setValue(entity me, float val)
57 {
58         if(val != me.value)
59         {
60                 SUPER(XonoticSlider).setValue( me, val );
61                 me.saveCvars(me);
62         }
63 }
64 void XonoticSlider_loadCvars(entity me)
65 {
66         if (!me.cvarName)
67                 return;
68
69         me.setValue( me, cvar(me.cvarName) );
70 }
71 void XonoticSlider_saveCvars(entity me)
72 {
73         if (!me.cvarName)
74                 return;
75
76         cvar_set(me.cvarName, ftos(me.value));
77
78         CheckSendCvars(me, me.cvarName);
79 }
80 #endif