]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/radiobutton.qc
Hardcode tooltips
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / radiobutton.qc
1 #ifndef RADIOBUTTON_H
2 #define RADIOBUTTON_H
3 #include "../item/radiobutton.qc"
4 CLASS(XonoticRadioButton, RadioButton)
5         METHOD(XonoticRadioButton, configureXonoticRadioButton, void(entity, float, string, string, string, string));
6         METHOD(XonoticRadioButton, draw, void(entity));
7         METHOD(XonoticRadioButton, setChecked, void(entity, float));
8         ATTRIB(XonoticRadioButton, fontSize, float, SKINFONTSIZE_NORMAL)
9         ATTRIB(XonoticRadioButton, image, string, SKINGFX_RADIOBUTTON)
10         ATTRIB(XonoticRadioButton, color, vector, SKINCOLOR_RADIOBUTTON_N)
11         ATTRIB(XonoticRadioButton, colorC, vector, SKINCOLOR_RADIOBUTTON_C)
12         ATTRIB(XonoticRadioButton, colorF, vector, SKINCOLOR_RADIOBUTTON_F)
13         ATTRIB(XonoticRadioButton, colorD, vector, SKINCOLOR_RADIOBUTTON_D)
14
15         ATTRIB(XonoticRadioButton, cvarName, string, string_null)
16         ATTRIB(XonoticRadioButton, cvarValue, string, string_null)
17         ATTRIB(XonoticRadioButton, cvarOffValue, string, string_null)
18         ATTRIB(XonoticRadioButton, cvarValueIsAnotherCvar, float, 0)
19         METHOD(XonoticRadioButton, loadCvars, void(entity));
20         METHOD(XonoticRadioButton, saveCvars, void(entity));
21
22         ATTRIB(XonoticRadioButton, alpha, float, SKINALPHA_TEXT)
23         ATTRIB(XonoticRadioButton, disabledAlpha, float, SKINALPHA_DISABLED)
24 ENDCLASS(XonoticRadioButton)
25 entity makeXonoticRadioButton_T(float, string, string, string, string theTooltip);
26 entity makeXonoticRadioButton(float, string, string, string);
27 #endif
28
29 #ifdef IMPLEMENTATION
30 entity makeXonoticRadioButton_T(float theGroup, string theCvar, string theValue, string theText, string theTooltip)
31 {
32         entity me;
33         me = NEW(XonoticRadioButton);
34         me.configureXonoticRadioButton(me, theGroup, theCvar, theValue, theText, theTooltip);
35         return me;
36 }
37 entity makeXonoticRadioButton(float theGroup, string theCvar, string theValue, string theText)
38 {
39         return makeXonoticRadioButton_T(theGroup, theCvar, theValue, theText, string_null);
40 }
41 void XonoticRadioButton_configureXonoticRadioButton(entity me, float theGroup, string theCvar, string theValue, string theText, string theTooltip)
42 {
43         if(theCvar)
44         {
45                 me.cvarName = theCvar;
46                 me.tooltip = getZonedTooltip(theTooltip, theCvar);
47                 me.loadCvars(me);
48         }
49         me.configureRadioButton(me, theText, me.fontSize, me.image, theGroup, 0);
50 }
51 void XonoticRadioButton_setChecked(entity me, float val)
52 {
53         if(val != me.checked)
54         {
55                 me.checked = val;
56                 me.saveCvars(me);
57         }
58 }
59 void XonoticRadioButton_loadCvars(entity me)
60 {
61         if(me.cvarValue)
62         {
63                 if(me.cvarName)
64                 {
65                         if(me.cvarValueIsAnotherCvar)
66                                 me.checked = (cvar_string(me.cvarName) == cvar_string(me.cvarValue));
67                         else
68                                 me.checked = (cvar_string(me.cvarName) == me.cvarValue);
69                 }
70         }
71         else
72         {
73                 if(me.cvarName)
74                 {
75                         me.checked = !!cvar(me.cvarName);
76                 }
77                 else
78                 {
79                         // this is difficult
80                         // this is the "generic" selection... but at this time, not
81                         // everything is constructed yet.
82                         // we need to set this later in draw()
83                         me.checked = 0;
84                 }
85         }
86 }
87 void XonoticRadioButton_draw(entity me)
88 {
89         if (!me.cvarValue)
90                 if (!me.cvarName)
91                 {
92                         // this is the "other" option
93                         // always select this if none other is
94                         entity e;
95                         float found;
96                         found = 0;
97                         for(e = me.parent.firstChild; e; e = e.nextSibling)
98                                 if(e.group == me.group)
99                                         if(e.checked)
100                                                 found = 1;
101                         if(!found)
102                                 me.setChecked(me, 1);
103                 }
104         SUPER(XonoticRadioButton).draw(me);
105 }
106 void XonoticRadioButton_saveCvars(entity me)
107 {
108         if(me.cvarValue)
109         {
110                 if(me.cvarName)
111                 {
112                         if(me.checked)
113                         {
114                                 if(me.cvarValueIsAnotherCvar)
115                                         cvar_set(me.cvarName, cvar_string(me.cvarValue));
116                                 else
117                                         cvar_set(me.cvarName, me.cvarValue);
118                         }
119                         else if(me.cvarOffValue)
120                                 cvar_set(me.cvarName, me.cvarOffValue);
121                 }
122         }
123         else
124         {
125                 if(me.cvarName)
126                 {
127                         cvar_set(me.cvarName, ftos(me.checked));
128                 }
129         }
130 }
131 #endif