]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/colorpicker.qc
Merge branch 'master' into terencehill/lms_updates
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / colorpicker.qc
1 #include "colorpicker.qh"
2
3 #include "inputbox.qh"
4
5 entity makeXonoticColorpicker(entity theTextbox)
6 {
7         entity me;
8         me = NEW(XonoticColorpicker);
9         me.configureXonoticColorpicker(me, theTextbox);
10         return me;
11 }
12
13 void XonoticColorpicker_configureXonoticColorpicker(entity me, entity theTextbox)
14 {
15         me.controlledTextbox = theTextbox;
16         me.configureImage(me, me.image);
17 }
18
19 METHOD(XonoticColorpicker, mousePress, bool(XonoticColorpicker this, vector pos))
20 {
21         this.mouseDrag(this, pos);
22         return true;
23 }
24
25 // must match hslimage.c
26 vector hslimage_color(vector v, vector margin)
27 {
28     v_x = (v.x - margin.x) / (1 - 2 * margin.x);
29     v_y = (v.y - margin.y) / (1 - 2 * margin.y);
30     if(v.x < 0) v_x = 0;
31     if(v.y < 0) v_y = 0;
32     if(v.x > 1) v_x = 1;
33     if(v.y > 1) v_y = 1;
34     if(v.y > 0.875) // grey bar
35         return hsl_to_rgb(eZ * v.x);
36     else
37         return hsl_to_rgb(v.x * 6 * eX + eY + v.y / 0.875 * eZ);
38 }
39
40 vector color_hslimage(vector v, vector margin)
41 {
42         vector pos = '0 0 0';
43         v = rgb_to_hsl(v);
44         if (v.y)
45         {
46                 pos_x = v.x / 6;
47                 pos_y = v.z * 0.875;
48         }
49         else // grey scale
50         {
51                 pos_x = v.z;
52                 pos_y = 0.875 + 0.07;
53         }
54         pos_x = margin.x + pos.x * (1 - 2 * margin.x);
55         pos_y = margin.y + pos.y * (1 - 2 * margin.y);
56         return pos;
57 }
58
59 float XonoticColorpicker_mouseDrag(entity me, vector coords)
60 {
61         int i;
62         for (;;)
63         {
64                 i = me.controlledTextbox.cursorPos;
65                 string theText = me.controlledTextbox.text;
66                 vector res = checkColorCode(theText, strlen(theText), i, true);
67                 if (!res.x)
68                         break;
69
70                 int cc_len = res.x;
71                 int new_pos = i - res.y;
72                 theText = strcat(substring(theText, 0, new_pos), substring(theText, new_pos + cc_len, -1));
73                 me.controlledTextbox.setText(me.controlledTextbox, theText);
74                 me.controlledTextbox.cursorPos = new_pos;
75         }
76
77         if(substring(me.controlledTextbox.text, i-1, 1) == "^")
78         {
79                 if(!isCaretEscaped(me.controlledTextbox.text, i-1))
80                         me.controlledTextbox.enterText(me.controlledTextbox, "^"); // escape previous caret
81         }
82
83         vector margin;
84         margin = me.imagemargin;
85         if(coords.x >= margin.x)
86         if(coords.y >= margin.y)
87         if(coords.x <= 1 - margin.x)
88         if(coords.y <= 1 - margin.y)
89                 me.controlledTextbox.enterText(me.controlledTextbox, rgb_to_hexcolor(hslimage_color(coords, margin)));
90
91         return 1;
92 }
93
94 float XonoticColorpicker_mouseRelease(entity me, vector coords)
95 {
96         m_play_click_sound(MENU_SOUND_SLIDE);
97         me.mouseDrag(me, coords);
98         return 1;
99 }
100
101 void XonoticColorpicker_focusLeave(entity me)
102 {
103         me.controlledTextbox.saveCvars(me.controlledTextbox);
104 }
105 float XonoticColorpicker_keyDown(entity me, float key, float ascii, float shift)
106 {
107         return me.controlledTextbox.keyDown(me.controlledTextbox, key, ascii, shift);
108 }
109 void XonoticColorpicker_draw(entity me)
110 {
111         SUPER(XonoticColorpicker).draw(me);
112
113         float B, C, aC;
114         C = cvar("r_textcontrast");
115         B = cvar("r_textbrightness");
116
117         // for this to work, C/(1-B) must be in 0..1
118         // B must be < 1
119         // C must be < 1-B
120
121         B = bound(0, B, 1);
122         C = bound(0, C, 1-B);
123
124         aC = 1 - C / (1 - B);
125
126         draw_Picture(me.imgOrigin, strcat(me.src, "_m"), me.imgSize, '0 0 0', aC);
127         draw_Picture(me.imgOrigin, strcat(me.src, "_m"), me.imgSize, me.color, B);
128 }