]> icculus.org git repositories - divverent/nexuiz.git/blob - data/qcsrc/menu/item/label.c
second part of terencehills patch, colored name preview
[divverent/nexuiz.git] / data / qcsrc / menu / item / label.c
1 #ifdef INTERFACE
2 CLASS(Label) EXTENDS(Item)
3         METHOD(Label, configureLabel, void(entity, string, float, float))
4         METHOD(Label, draw, void(entity))
5         METHOD(Label, resizeNotify, void(entity, vector, vector, vector, vector))
6         METHOD(Label, setText, void(entity, string))
7         METHOD(Label, toString, string(entity))
8         ATTRIB(Label, text, string, string_null)
9         ATTRIB(Label, fontSize, float, 8)
10         ATTRIB(Label, align, float, 0.5)
11         ATTRIB(Label, allowCut, float, 0)
12         ATTRIB(Label, allowColors, float, 0)
13         ATTRIB(Label, keepspaceLeft, float, 0) // for use by subclasses (radiobuttons for example)
14         ATTRIB(Label, keepspaceRight, float, 0)
15         ATTRIB(Label, marginLeft, float, 0) // alternate way to specify keepspace* (in characters from the font)
16         ATTRIB(Label, marginRight, float, 0)
17         ATTRIB(Label, realFontSize, vector, '0 0 0')
18         ATTRIB(Label, realOrigin, vector, '0 0 0')
19         ATTRIB(Label, alpha, float, 0.7)
20         ATTRIB(Label, colorL, vector, '1 1 1')
21         ATTRIB(Label, disabled, float, 0)
22         ATTRIB(Label, disabledAlpha, float, 0.3)
23         ATTRIB(Label, textEntity, entity, NULL)
24         ATTRIB(Label, allowWrap, float, 0)
25 ENDCLASS(Label)
26 #endif
27
28 #ifdef IMPLEMENTATION
29 string toStringLabel(entity me)
30 {
31         return me.text;
32 }
33 void setTextLabel(entity me, string txt)
34 {
35         me.text = txt;
36         me.realOrigin_x = me.align * (1 - me.keepspaceLeft - me.keepspaceRight - min(me.realFontSize_x * draw_TextWidth(me.text, me.allowColors), (1 - me.keepspaceLeft - me.keepspaceRight))) + me.keepspaceLeft;
37 }
38 void resizeNotifyLabel(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
39 {
40         // absSize_y is height of label
41         me.realFontSize_y = me.fontSize / absSize_y;
42         me.realFontSize_x = me.fontSize / absSize_x;
43         if(me.marginLeft)
44                 me.keepspaceLeft = me.marginLeft * me.realFontSize_x;
45         if(me.marginRight)
46                 me.keepspaceRight = me.marginRight * me.realFontSize_x;
47         me.realOrigin_x = me.align * (1 - me.keepspaceLeft - me.keepspaceRight - min(me.realFontSize_x * draw_TextWidth(me.text, me.allowColors), (1 - me.keepspaceLeft - me.keepspaceRight))) + me.keepspaceLeft;
48         me.realOrigin_y = 0.5 * (1 - me.realFontSize_y);
49 }
50 void configureLabelLabel(entity me, string txt, float sz, float algn)
51 {
52         me.fontSize = sz;
53         me.align = algn;
54         me.setText(me, txt);
55 }
56 void drawLabel(entity me)
57 {
58         string t;
59         vector o;
60         if(me.disabled)
61                 draw_alpha *= me.disabledAlpha;
62
63         if(me.textEntity)
64         {
65                 t = me.textEntity.toString(me.textEntity);
66                 me.realOrigin_x = me.align * (1 - me.keepspaceLeft - me.keepspaceRight - min(me.realFontSize_x * draw_TextWidth(t, 0), (1 - me.keepspaceLeft - me.keepspaceRight))) + me.keepspaceLeft;
67         }
68         else
69                 t = me.text;
70         
71         if(me.fontSize)
72                 if(t)
73                 {
74                         if(me.allowCut) // FIXME allowCut incompatible with align != 0
75                                 draw_Text(me.realOrigin, draw_TextShortenToWidth(t, (1 - me.keepspaceLeft - me.keepspaceRight) / me.realFontSize_x, me.allowColors), me.realFontSize, me.colorL, me.alpha, me.allowColors);
76                         else if(me.allowWrap) // FIXME allowWrap incompatible with align != 0
77                         {
78                                 getWrappedLine_remaining = t;
79                                 o = me.realOrigin;
80                                 while(getWrappedLine_remaining)
81                                 {
82                                         if (me.allowColors)
83                                                 t = getWrappedLine((1 - me.keepspaceLeft - me.keepspaceRight) / me.realFontSize_x, draw_TextWidth_WithColors);
84                                         else
85                                                 t = getWrappedLine((1 - me.keepspaceLeft - me.keepspaceRight) / me.realFontSize_x, draw_TextWidth_WithoutColors);
86                                         draw_Text(o, t, me.realFontSize, me.colorL, me.alpha, me.allowColors);
87                                         o_y += me.realFontSize_y;
88                                 }
89                         }
90                         else
91                                 draw_Text(me.realOrigin, t, me.realFontSize, me.colorL, me.alpha, me.allowColors);
92                 }
93 }
94 #endif