]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu-div0test/item/inputbox.c
Big Oops.
[divverent/nexuiz.git] / data / qcsrc / menu-div0test / item / inputbox.c
1 #ifdef INTERFACE
2 CLASS(InputBox) EXTENDS(Label)
3         METHOD(InputBox, configureInputBox, void(entity, string, float, float, string))
4         METHOD(InputBox, draw, void(entity))
5         METHOD(InputBox, setText, void(entity, string))
6         METHOD(InputBox, keyDown, float(entity, float, float, float))
7         METHOD(InputBox, mouseRelease, float(entity, vector))
8         METHOD(InputBox, mousePress, float(entity, vector))
9         METHOD(InputBox, mouseDrag, float(entity, vector))
10
11         ATTRIB(InputBox, src, string, string_null)
12
13         ATTRIB(InputBox, cursorPos, float, 0) // characters
14         ATTRIB(InputBox, scrollPos, float, 0) // widths
15
16         ATTRIB(InputBox, focusable, float, 1)
17         ATTRIB(InputBox, lastChangeTime, float, 0)
18         ATTRIB(InputBox, dragScrollTimer, float, 0)
19         ATTRIB(InputBox, dragScrollPos, vector, '0 0 0')
20         ATTRIB(InputBox, pressed, float, 0)
21         ATTRIB(InputBox, editColorCodes, float, 1)
22 ENDCLASS(InputBox)
23 #endif
24
25 #ifdef IMPLEMENTATION
26 void configureInputBoxInputBox(entity me, string theText, float theCursorPos, float theFontSize, string gfx)
27 {
28         configureLabelLabel(me, theText, theFontSize, 0.0);
29         me.src = gfx;
30         me.cursorPos = theCursorPos;
31 }
32
33 void setTextInputBox(entity me, string txt)
34 {
35         if(me.text)
36                 strunzone(me.text);
37         setTextLabel(me, strzone(txt));
38 }
39
40 float mouseDragInputBox(entity me, vector pos)
41 {
42         float p;
43         me.dragScrollPos = pos;
44         p = me.scrollPos + pos_x - me.keepspaceLeft;
45         me.cursorPos = draw_TextLengthUpToWidth(me.text, p / me.realFontSize_x, 0);
46         me.lastChangeTime = time;
47         return 1;
48 }
49
50 float mousePressInputBox(entity me, vector pos)
51 {
52         me.dragScrollTimer = 0;
53         me.pressed = 1;
54         return mouseDragInputBox(me, pos);
55 }
56
57 float mouseReleaseInputBox(entity me, vector pos)
58 {
59         me.pressed = 0;
60         return mouseDragInputBox(me, pos);
61 }
62
63 float keyDownInputBox(entity me, float key, float ascii, float shift)
64 {
65         me.lastChangeTime = time;
66         me.dragScrollTimer = 0;
67         if(ascii >= 32 && ascii != 127)
68         {
69                 me.setText(me, strcat(substring(me.text, 0, me.cursorPos), chr(ascii), substring(me.text, me.cursorPos, strlen(me.text) - me.cursorPos)));
70                 me.cursorPos += 1;
71                 return 1;
72         }
73         switch(key)
74         {
75                 case K_LEFTARROW:
76                         me.cursorPos -= 1;
77                         return 1;
78                 case K_RIGHTARROW:
79                         me.cursorPos += 1;
80                         return 1;
81                 case K_HOME:
82                         me.cursorPos = 0;
83                         return 1;
84                 case K_END:
85                         me.cursorPos = strlen(me.text);
86                         return 1;
87                 case K_BACKSPACE:
88                         if(me.cursorPos > 0)
89                         {
90                                 me.cursorPos -= 1;
91                                 me.setText(me, strcat(substring(me.text, 0, me.cursorPos), substring(me.text, me.cursorPos + 1, strlen(me.text) - me.cursorPos - 1)));
92                         }
93                         return 1;
94                 case K_DEL:
95                         me.setText(me, strcat(substring(me.text, 0, me.cursorPos), substring(me.text, me.cursorPos + 1, strlen(me.text) - me.cursorPos - 1)));
96                         return 1;
97         }
98         return 0;
99 }
100
101 void drawInputBox(entity me)
102 {
103 #define CURSOR "_"
104         float cursorPosInWidths, totalSizeInWidths;
105
106         if(me.pressed)
107                 me.mouseDrag(me, me.dragScrollPos); // simulate mouseDrag event
108
109         if(me.src)
110         {
111                 if(me.focused)
112                         draw_ButtonPicture('0 0 0', strcat(me.src, "_f"), '1 1 0', '1 1 1', 1);
113                 else
114                         draw_ButtonPicture('0 0 0', strcat(me.src, "_n"), '1 1 0', '1 1 1', 1);
115         }
116
117         me.cursorPos = bound(0, me.cursorPos, strlen(me.text));
118         cursorPosInWidths = draw_TextWidth(substring(me.text, 0, me.cursorPos), 0) * me.realFontSize_x;
119         totalSizeInWidths = draw_TextWidth(strcat(me.text, CURSOR), 0) * me.realFontSize_x;
120
121         me.dragScrollTimer -= frametime;
122         if(me.dragScrollTimer < 0)
123         {
124                 float save;
125                 save = me.scrollPos;
126                 me.scrollPos = bound(cursorPosInWidths - (0.875 - me.keepspaceLeft - me.keepspaceRight), me.scrollPos, cursorPosInWidths - 0.125);
127                 if(me.scrollPos != save)
128                         me.dragScrollTimer = 0.2;
129         }
130         me.scrollPos = min(me.scrollPos, totalSizeInWidths - (1 - me.keepspaceRight - me.keepspaceLeft));
131         me.scrollPos = max(0, me.scrollPos);
132
133         draw_SetClipRect(eX * me.keepspaceLeft, eX * (1 - me.keepspaceLeft - me.keepspaceRight) + eY);
134         if(me.editColorCodes)
135         {
136                 string ch, ch2;
137                 float i;
138                 vector theColor;
139                 float theAlpha;
140                 vector p;
141                 float brightness;
142                 brightness = cvar("r_textbrightness");
143                 p = me.realOrigin - eX * me.scrollPos;
144                 theColor = '1 1 1';
145                 theAlpha = 1;
146                 for(i = 0; i < strlen(me.text); ++i)
147                 {
148                         ch = substring(me.text, i, 1);
149                         if(ch == "^")
150                         {
151                                 float w;
152                                 ch2 = substring(me.text, i+1, 1);
153                                 w = draw_TextWidth(strcat(ch, ch2), 0) * me.realFontSize_x;
154                                 if(ch2 == "^")
155                                 {
156                                         draw_Fill(p, eX * w + eY * me.realFontSize_y, '0 0 1', 0.5);
157                                         draw_Text(p + eX * 0.25 * w, "^", me.realFontSize, theColor, theAlpha, 0);
158                                 }
159                                 else if(ch2 == "0" || stof(ch2)) // digit?
160                                 {
161                                         switch(stof(ch2))
162                                         {
163                                                 case 0: theColor = '0 0 0'; theAlpha = 1; break;
164                                                 case 1: theColor = '1 0 0'; theAlpha = 1; break;
165                                                 case 2: theColor = '0 1 0'; theAlpha = 1; break;
166                                                 case 3: theColor = '1 1 0'; theAlpha = 1; break;
167                                                 case 4: theColor = '0 0 1'; theAlpha = 1; break;
168                                                 case 5: theColor = '0 1 1'; theAlpha = 1; break;
169                                                 case 6: theColor = '1 0 1'; theAlpha = 1; break;
170                                                 case 7: theColor = '1 1 1'; theAlpha = 1; break;
171                                                 case 8: theColor = '1 1 1'; theAlpha = 0.5; break;
172                                                 case 9: theColor = '0.5 0.5 0.5'; theAlpha = 1; break;
173                                         }
174                                         theColor = theColor * (1 - brightness) + brightness * '1 1 1';
175                                         draw_Fill(p, eX * w + eY * me.realFontSize_y, '0 0 0', 0.5);
176                                         draw_Text(p, strcat(ch, ch2), me.realFontSize, theColor, theAlpha, 0);
177                                         draw_Text(p, strcat(ch, ch2), me.realFontSize, theColor, theAlpha, 0);
178                                 }
179                                 else
180                                 {
181                                         draw_Fill(p, eX * w + eY * me.realFontSize_y, '1 0 0', 0.5);
182                                         draw_Text(p, strcat(ch, ch2), me.realFontSize, theColor, theAlpha, 0);
183                                         draw_Text(p, strcat(ch, ch2), me.realFontSize, theColor, theAlpha, 0);
184                                 }
185                                 p += w * eX;
186                                 ++i;
187                                 continue;
188                         }
189                         draw_Text(p, ch, me.realFontSize, theColor, theAlpha, 0); p += eX * draw_TextWidth(ch, 0) * me.realFontSize_x;
190                 }
191         }
192         else
193                 draw_Text(me.realOrigin - eX * me.scrollPos, me.text, me.realFontSize, '1 1 1', 1, 0);
194                 // skipping drawLabel(me);
195         draw_ClearClip();
196
197         if(!me.focused || (time - me.lastChangeTime) < floor(time - me.lastChangeTime) + 0.5)
198                 draw_Text(me.realOrigin + eX * (cursorPosInWidths - me.scrollPos), CURSOR, me.realFontSize, '1 1 1', 1, 0);
199 }
200 #endif