blob: 09d715a4968ce1d62d7abb53a619b36e7a2cf2e7 (
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
|
#include "ui/menudef.h"
{
\\ FIND PLAYER POPUP MENU \\
#define W 400
#define H 400
#define BUTT_W 45
#define BUTT_H 35
#define BORDER 10
#define LIST_W (W-(2*BORDER))
#define LIST_DW (LIST_W-40)
#define LEFT_C 0.13
#define RIGHT_C 0.61
#define SEARCH_H 30
#define SERVERS_H 105
menuDef
{
name "findplayer_popmenu"
visible MENU_FALSE
fullscreen MENU_FALSE
rect (320-(W/2)) (240-(H/2)) W H
focusColor 1 .75 0 1
style WINDOW_STYLE_FILLED
border WINDOW_BORDER_FULL
popup
onClose { }
onOpen
{
uiScript FindPlayer
}
onESC
{
close findplayer_popmenu
}
itemDef
{
name window
rect 0 0 W H
style WINDOW_STYLE_FILLED
backcolor 0 0 0 1
visible MENU_TRUE
decoration
border WINDOW_BORDER_FULL
borderSize 1.0
borderColor 0.5 0.5 0.5 1
}
itemDef
{
name namefield
type ITEM_TYPE_EDITFIELD
style WINDOW_STYLE_EMPTY
text "Name:"
cvar "ui_findplayer"
maxChars 20
rect BORDER BORDER (W-((2*BORDER)+BUTT_W)) SEARCH_H
textalign ALIGN_LEFT
textvalign VALIGN_CENTER
textscale .3
outlinecolor .2 .2 .2 .5
backcolor 0 0 0 0
forecolor 1 1 1 1
border WINDOW_BORDER_NONE
bordercolor 0 0 0 0
action { ui_script FindPlayer }
visible MENU_TRUE
}
itemDef
{
name search
text "Search"
textscale .25
type ITEM_TYPE_BUTTON
style WINDOW_STYLE_EMPTY
rect (W-(BORDER+BUTT_W)) BORDER BUTT_W SEARCH_H
textalign ALIGN_CENTER
textvalign VALIGN_CENTER
forecolor 1 1 1 1
visible MENU_TRUE
action
{
play "sound/misc/menu1.wav";
ui_script FindPlayer
}
}
itemDef
{
name serverNameList
rect BORDER ((2*BORDER)+SEARCH_H) LIST_W SERVERS_H
type ITEM_TYPE_LISTBOX
style WINDOW_STYLE_EMPTY
elementwidth 120
elementheight 16
textscale .25
outlinecolor .2 .2 .2 .5
border WINDOW_BORDER_FULL
bordersize 1
bordercolor .5 .5 .5 1
elementtype LISTBOX_TEXT
feeder FEEDER_FINDPLAYER
visible MENU_TRUE
}
itemDef
{
name serverInfoList
rect BORDER ((3*BORDER)+SEARCH_H+SERVERS_H) LIST_W (H-(SEARCH_H+SERVERS_H+BUTT_H+(3*BORDER)))
type ITEM_TYPE_LISTBOX
style WINDOW_STYLE_EMPTY
elementwidth 120
elementheight 16
textscale .25
border WINDOW_BORDER_FULL
bordersize 1
bordercolor .5 .5 .5 1
elementtype LISTBOX_TEXT
feeder FEEDER_SERVERSTATUS
notselectable
visible MENU_TRUE
columns 4
0 ((2*LEFT_C)*LIST_DW) ALIGN_LEFT
(LEFT_C*LIST_DW) (LEFT_C*LIST_DW) ALIGN_LEFT
((2*LEFT_C)*LIST_DW) (LEFT_C*LIST_DW) ALIGN_LEFT
((1-RIGHT_C)*LIST_DW) (RIGHT_C*LIST_DW) ALIGN_LEFT
}
// BUTTON //
itemDef
{
name join
text "Join"
textscale .25
type ITEM_TYPE_BUTTON
style WINDOW_STYLE_EMPTY
rect (W-(2*BUTT_W)) (H-BUTT_H) BUTT_W BUTT_H
textalign ALIGN_CENTER
textvalign VALIGN_CENTER
forecolor 1 1 1 1
visible MENU_TRUE
action { ui_script FoundPlayerJoinServer }
}
itemDef
{
name close
text "Close"
textscale .25
type ITEM_TYPE_BUTTON
style WINDOW_STYLE_EMPTY
rect (W-BUTT_W) (H-BUTT_H) BUTT_W BUTT_H
textalign ALIGN_CENTER
textvalign VALIGN_CENTER
forecolor 1 1 1 1
visible MENU_TRUE
action
{
play "sound/misc/menu1.wav";
close findplayer_popmenu
}
}
}
}
|