]> icculus.org git repositories - divverent/nexuiz.git/blob - data/menu/templates.menu
lossless jpegoptim run saving about 10 megabytes
[divverent/nexuiz.git] / data / menu / templates.menu
1 // Property of Alientrap
2 //
3 // Templates
4
5 //////////////////////////////////////////////////////////////////////////////////
6 // Basic default templates (setting default properties)
7 //////////////////////////////////////////////////////////////////////////////////
8 Template Rect Rect
9 {
10         size            [InfiniteVector]
11         alpha           1.0
12         drawFlag        [DrawFlagNormal]
13         color           '1.0 1.0 1.0'
14 }
15 Template Label Label
16 {
17         color           [DefaultTextColor]
18         alpha           [DefaultTextAlpha]
19         drawFlag        [DefaultTextDrawFlag]
20         fontSize        [DefaultFontSize]
21 }
22 Template Picture Picture
23 {
24         color           [DefaultPicColor]
25         alpha           [DefaultPicAlpha]
26         drawFlag        [DefaultPicDrawFlag]
27 }
28 Template Button TextButton
29 {
30         fontSize        [DefaultFontSize]
31         color           [DefaultTextColor]
32         colorSelected   [DefaultSelTextColor]
33         colorPressed    [DefaultPreTextColor]
34         alphas_x        [DefaultTextAlpha]
35         alphas_y        [DefaultSelTextAlpha]
36         alphas_z        [DefaultPreTextAlpha]
37         drawFlags_x     [DefaultTextDrawFlag]
38         drawFlags_y     [DefaultSelTextDrawFlag]
39         drawFlags_z     [DefaultPreTextDrawFlag]
40         //soundSelected [DefaultSelectSound]
41         soundPressed    [DefaultPressSound]
42 }
43 Template Button PictureButton
44 {
45         color           [DefaultPicColor]
46         colorSelected   [DefaultSelPicColor]
47         colorPressed    [DefaultPrePicColor]
48         alphas_x        [DefaultPicAlpha]
49         alphas_y        [DefaultSelPicAlpha]
50         alphas_z        [DefaultPrePicAlpha]
51         drawFlags_x     [DefaultPicDrawFlag]
52         drawFlags_y     [DefaultSelPicDrawFlag]
53         drawFlags_z     [DefaultPrePicDrawFlag]
54         soundSelected   [DefaultSelectSound]
55         soundPressed    [DefaultPressSound]
56 }
57 Template Slider Slider
58 {
59         color           [DefaultPicColor]
60         //colorSelected [DefaultSelPicColor]
61         colorSelected   "0.9 0.9 1.0"
62         alphas_x        [DefaultPicAlpha]
63         alphas_y        [DefaultSelPicAlpha]
64         drawFlags_x     [DefaultPicDrawFlag]
65         drawFlags_y     [DefaultSelPicDrawFlag]
66         //soundSelected [DefaultSelectSound]
67         soundIncrease   [DefaultIncreaseSound]
68         soundDecrease   [DefaultDecreaseSound]
69         picture         [DefaultSliderBar]
70         pictureSlider   [DefaultSlider]
71         proportions     [DefaultProportions]
72         direction       [DefaultDirection]
73         size            [DefaultSliderBarSize]
74         sizeSlider      [DefaultSliderSize]
75 }
76 Template EditBox EditBox
77 {
78         fontSize        [DefaultFontSize]
79         color           [DefaultTextColor]
80         colorSelected   [DefaultTextColor]
81         colorPressed    [DefaultPreTextColor]
82         alphas_x        [DefaultTextAlpha]
83         alphas_y        [DefaultSelTextAlpha]
84         alphas_z        [DefaultPreTextAlpha]
85         drawFlags_x     [DefaultTextDrawFlag]
86         drawFlags_y     [DefaultSelTextDrawFlag]
87         drawFlags_z     [DefaultPreTextDrawFlag]
88         colorCursor     [DefaultCursorColor]
89         colorCursorFlash [DefaultCursorFlashColor]
90         alphasCursor_x  [DefaultTextAlpha]
91         alphasCursor_y  [DefaultSelTextAlpha]
92         drawFlagsCursor_x [DefaultTextDrawFlag]
93         drawFlagsCursor_y [DefaultSelTextDrawFlag]
94         sizeCursor      [DefaultCursorSize]
95         sizeCursorFlash [DefaultCursorFlashSize]
96         //soundSelected [DefaultSelectSound]
97         soundMove       [DefaultIncreaseSound]
98         soundKey        [DefaultDecreaseSound]
99 }
100 Template List List
101 {
102         fontSize        [DefaultFontSize]
103         color           [DefaultTextColor]
104         colorSelected   [DefaultSelTextColor]
105         colorPressed    [DefaultPreTextColor]
106         colorInactive   [DefaultInaTextColor]
107         alphas_x        [DefaultTextAlpha]
108         alphas_y        [DefaultSelTextAlpha]
109         alphas_z        [DefaultPreTextAlpha]
110         alphaInactive   [DefaultInaTextAlpha]
111         drawFlags_x     [DefaultTextDrawFlag]
112         drawFlags_y     [DefaultSelTextDrawFlag]
113         drawFlags_z     [DefaultPreTextDrawFlag]
114         drawFlagInactive [DefaultInaTextDrawFlag]
115         soundSelected   [DefaultSelectSound]
116         soundPressed    [DefaultPressSound]
117 }
118 DeriveTemplate TextButton ValueButton
119 {
120         type    "Item_ValueButton"
121 }
122 DeriveTemplate PictureButton PictureValueButton
123 {
124         type    "Item_ValueButton"
125 }
126 DeriveTemplate Label MultiLabel
127 {
128         type    "Item_MultiLabel"
129 }
130 DeriveTemplate TextButton SwitchButton
131 {
132         type    "Item_SwitchButton"
133 }
134 //////////////////////////////////////////////////////////////////////////////////
135 // Derived items
136 //////////////////////////////////////////////////////////////////////////////////
137 Template Arrangement Composition
138 {
139         flag            [FlagEmbedded]
140 }
141 //////////////////////////////////////////////////////////////////////////////////
142 // Specialized items
143 //////////////////////////////////////////////////////////////////////////////////
144 Template DataLink_ValueSwitch DataLink_OnOffSwitch
145 {
146         minValue        0.0
147         maxValue        1.0
148         descList        "'Off' 'On'"
149         link            "##up"
150 }
151 Template DataLink_Value DataLink_ZeroOneValue
152 {
153         minValue        0.0
154         maxValue        1.0
155         stepValue       0.05
156         link            "##up"
157 }
158 Template DataLink_Value DataLink_SettingValue
159 {
160         minValue        0.0
161         maxValue        9999.0
162         stepValue       0.01
163         link            "##up"
164 }
165 Template DataLink_Text DataLink_SettingText
166 {
167         maxValue        9
168         link            "##down"
169
170         Template DataLink_TextValue DataLink_TextValue
171         {
172                 link    "##up prev"
173         }
174 }
175 //////////////////////////////////////////////////////////////////////////////////
176 // Nexuiz specialized items
177 //////////////////////////////////////////////////////////////////////////////////
178 #define Nex_DefaultHorzDirection        '20 0 0'
179 #define Nex_DefaultVertDirection        '0 10 0'
180 Template Automation_Job Nex_Automation_Option_Slider
181 {
182         action Nex_Automation_Option_Slider
183 }
184 Template Automation_Job Nex_Automation_Option_EditBox
185 {
186         action Nex_Automation_Option_EditBox
187 }
188 Template Automation_Job Nex_Automation_Option_Switch
189 {
190         action Nex_Automation_Option_Switch
191 }
192 DeriveTemplate Composition Nex_Composition
193 {
194         direction       [Nex_DefaultHorzDirection]
195 }
196 DeriveTemplate Picture Nex_Line
197 {
198         picture "gfx/m_dot"
199         size    "200 10"
200 }
201 Item Custom Nex_Void
202 {
203         size    "200 12"
204         flag    [FlagNoSelect]
205 }
206
207 DeriveTemplate TextButton Nex_KeyButton
208 {
209         type    "Item_Nex_KeyButton"
210 }
211 DeriveTemplate MultiLabel Nex_Credits
212 {
213         type    "Item_Nex_Credits"
214 }
215 DeriveTemplate Label Nex_HostCache_StringField
216 {
217         type    "Item_Nex_HostCache_StringField"
218 }
219 DeriveTemplate Label Nex_HostCache_ValueField
220 {
221         type    "Item_Nex_HostCache_ValueField"
222 }
223 DeriveTemplate Label Nex_HostCache_Players
224 {
225         type    "Item_Nex_HostCache_Players"
226 }
227 DeriveTemplate PictureButton Nex_HostCache_Entry
228 {
229         normal          "$gfx/white"
230         drawFlags       [DrawFlagModulate]
231         type            "Item_Nex_HostCache_Entry"
232 }
233 DeriveTemplate Nex_Composition Nex_Option_Slider
234 {
235         DeriveTemplate Nex_Automation_Option_Slider Automation
236         {}
237         DeriveTemplate TextButton       Description
238         {}
239         DeriveTemplate Slider           Slider
240         {
241                 action  Nex_Action_TestOnChange
242         }
243         DeriveTemplate ValueButton      Value
244         {}
245 }
246 DeriveTemplate Nex_Composition Nex_Option_Switch
247 {
248         DeriveTemplate Nex_Automation_Option_Switch Automation
249         {}
250         DeriveTemplate TextButton       Description
251         {}
252         DeriveTemplate SwitchButton     Switch
253         {
254                 action  Nex_Action_TestOnChange
255         }
256 }
257 DeriveTemplate Nex_Composition Nex_Option_EditBox
258 {
259         DeriveTemplate Nex_Automation_Option_EditBox Automation
260         {}
261         DeriveTemplate TextButton Description
262         {}
263         DeriveTemplate EditBox EditBox
264         {
265                 size    '260 12'
266                 action  Nex_Action_TestOnChange
267                 select  Nex_Action_TestOnSelect
268         }
269 }