summaryrefslogtreecommitdiff
path: root/assets/ui/main.menu
blob: fddc0d91e728a89d6acf684199ee08227986d361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// vim:ft=menu
#include "ui/menudef.h"
#include "ui/menu_bool.h"

{
    assetGlobalDef
    {
        font "fonts/font" 26// font
        smallFont "fonts/smallfont" 20// font
        bigFont "fonts/bigfont" 34// font
        cursor "ui/assets/3_cursor3"  // cursor
        gradientBar "ui/assets/gradientbar2.tga"  // gradient bar
        itemFocusSound "sound/misc/menu2.wav"   // sound for item getting focus (via keyboard or mouse )

        fadeClamp 1.0 // sets the fadeup alpha
        fadeCycle 1 // how often fade happens in milliseconds
        fadeAmount 0.1  // amount to adjust alpha per cycle

        //shadowColor 0.1 0.1 0.1 0.25  // shadow color
        shadowColor 0.1 0.1 0.1 0.80  // shadow color
    }

    menuDef
    {
        name main
        fullscreen true
        rect 0 0 640 480// Size and position of the menu
        visible true   // Visible on open
        focuscolor 1 .75 0 1// Menu focus color for text and items
        background "ui/assets/mainmenu.jpg"
        aspectbias ASPECT_NONE

        onOpen
        {
            uiScript stopRefresh
            playlooped "sound/ui/heartbeat.wav"
        }

        onESC
        {
            open quit_popmenu
        }

        itemDef
        {
            name splashmodel
            rect 0 0 640 480
            type ITEM_TYPE_MODEL
            style WINDOW_STYLE_EMPTY
            asset_model "models/splash/splash_screen.md3"
            model_fovx 32.0
            model_fovy 24.0
            model_angle 180
            visible MENU_TRUE
            decoration
        }

#define X       (472)
#define Y       (20)
#define W       (128)
#define ELEM_H  (20)

        itemDef
        {
            name mainmenu
            text "Play"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            rect X Y W ELEM_H
            textalign ALIGN_RIGHT
            textscale .416
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open joinserver
            }
        }

        itemDef
        {
            name mainmenu
            text "News"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            textscale .416
            rect X (Y+(1*ELEM_H)) W ELEM_H
            textalign ALIGN_RIGHT
            backcolor 0 0 0 0
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open news_menu
            }
        }

        itemDef
        {
            name mainmenu
            text "Options"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            textscale .416
            rect X (Y+(2*ELEM_H)) W ELEM_H
            textalign ALIGN_RIGHT
            backcolor 0 0 0 0
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open simple_options
            }
        }

        itemDef
        {
            name mainmenu
            text "Demos"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            textscale .416
            rect X (Y+(3*ELEM_H)) W ELEM_H
            textalign ALIGN_RIGHT
            backcolor 0 0 0 0
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open demo
            }
        }

        itemDef
        {
            name browse_for_folders
            text "Browse Folders"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            rect X (Y+(4*ELEM_H)) W ELEM_H
            textscale .416
            textalign ALIGN_RIGHT
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open browse_folders
            }
        }

        itemDef
        {
            name check_for_updates
            text "Check for Updates"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            rect X (Y+(5*ELEM_H)) W ELEM_H
            textscale .416
            textalign ALIGN_RIGHT
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open install_update
            }
        }

        itemDef
        {
            name mainmenu
            text "Quit"
            type ITEM_TYPE_BUTTON
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            rect X (Y+(6*ELEM_H)) W ELEM_H
            textscale .416
            textalign ALIGN_RIGHT
            forecolor 1 1 1 1
            visible MENU_TRUE
            action
            {
                play "sound/misc/menu1.wav";
                open quit_popmenu
            }
        }

        itemDef
        {
            name copyright
            type ITEM_TYPE_TEXT
            text "Copyright (C) 2015-2019 GrangerHub"
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            textscale .30
            rect 0 405 640 30
            textalign ALIGN_CENTER
            forecolor .75 .75 .75 .75
            visible MENU_TRUE
            decoration
        }
        itemDef
        {
            name copyright
            type ITEM_TYPE_TEXT
            text "Copyright (C) 2005-2009 darklegion development"
            style WINDOW_STYLE_EMPTY
            textstyle ITEM_TEXTSTYLE_NORMAL
            textscale .30
            rect 0 420 640 30
            textalign ALIGN_CENTER
            forecolor .75 .75 .75 .75
            visible MENU_TRUE
            decoration
        }
    }
}