]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/maplist.qc
fix gametype filter bug
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / maplist.qc
1 #ifndef MAPLIST_H
2 #define MAPLIST_H
3 #include "listbox.qc"
4 CLASS(XonoticMapList, XonoticListBox)
5         METHOD(XonoticMapList, configureXonoticMapList, void(entity))
6         ATTRIB(XonoticMapList, rowsPerItem, float, 4)
7         METHOD(XonoticMapList, draw, void(entity))
8         METHOD(XonoticMapList, drawListBoxItem, void(entity, float, vector, float))
9         METHOD(XonoticMapList, clickListBoxItem, void(entity, float, vector))
10         METHOD(XonoticMapList, doubleClickListBoxItem, void(entity, float, vector))
11         METHOD(XonoticMapList, resizeNotify, void(entity, vector, vector, vector, vector))
12         METHOD(XonoticMapList, refilter, void(entity))
13         METHOD(XonoticMapList, refilterCallback, void(entity, entity))
14         METHOD(XonoticMapList, keyDown, float(entity, float, float, float))
15
16         ATTRIB(XonoticMapList, realFontSize, vector, '0 0 0')
17         ATTRIB(XonoticMapList, columnPreviewOrigin, float, 0)
18         ATTRIB(XonoticMapList, columnPreviewSize, float, 0)
19         ATTRIB(XonoticMapList, columnNameOrigin, float, 0)
20         ATTRIB(XonoticMapList, columnNameSize, float, 0)
21         ATTRIB(XonoticMapList, checkMarkOrigin, vector, '0 0 0')
22         ATTRIB(XonoticMapList, checkMarkSize, vector, '0 0 0')
23         ATTRIB(XonoticMapList, realUpperMargin1, float, 0)
24         ATTRIB(XonoticMapList, realUpperMargin2, float, 0)
25
26         ATTRIB(XonoticMapList, lastGametype, float, 0)
27         ATTRIB(XonoticMapList, lastFeatures, float, 0)
28
29         ATTRIB(XonoticMapList, origin, vector, '0 0 0')
30         ATTRIB(XonoticMapList, itemAbsSize, vector, '0 0 0')
31
32         ATTRIB(XonoticMapList, g_maplistCache, string, string_null)
33         METHOD(XonoticMapList, g_maplistCacheToggle, void(entity, float))
34         METHOD(XonoticMapList, g_maplistCacheQuery, float(entity, float))
35
36         ATTRIB(XonoticMapList, stringFilter, string, string_null)
37         ATTRIB(XonoticMapList, stringFilterBox, entity, NULL)
38
39         ATTRIB(XonoticMapList, startButton, entity, NULL)
40
41         METHOD(XonoticMapList, loadCvars, void(entity))
42
43         ATTRIB(XonoticMapList, typeToSearchString, string, string_null)
44         ATTRIB(XonoticMapList, typeToSearchTime, float, 0)
45
46         METHOD(XonoticMapList, destroy, void(entity))
47
48         ATTRIB(XonoticMapList, alphaBG, float, 0)
49 ENDCLASS(XonoticMapList)
50 entity makeXonoticMapList();
51 entity makeXonoticMapListStringFilterBox(entity me, float doEditColorCodes, string theCvar);
52 void MapList_StringFilterBox_Change(entity box, entity me);
53 float MapList_StringFilterBox_keyDown(entity me, float key, float ascii, float shift);
54 void MapList_Add_Shown(entity btn, entity me);
55 void MapList_Remove_Shown(entity btn, entity me);
56 void MapList_Add_All(entity btn, entity me);
57 void MapList_Remove_All(entity btn, entity me);
58 void MapList_LoadMap(entity btn, entity me);
59 #endif
60
61 #ifdef IMPLEMENTATION
62 void XonoticMapList_destroy(entity me)
63 {
64         MapInfo_Shutdown();
65 }
66
67 entity makeXonoticMapListStringFilterBox(entity me, float doEditColorCodes, string theCvar)
68 {
69         return makeXonoticInputBox(doEditColorCodes, theCvar);
70 }
71 entity makeXonoticMapList()
72 {
73         entity me;
74         me = NEW(XonoticMapList);
75         me.configureXonoticMapList(me);
76         return me;
77 }
78
79 entity MapList_Set_String_Filter_Box(entity me, entity e)
80 {
81         me.stringFilterBox = e;
82         return e;
83 }
84
85 void XonoticMapList_configureXonoticMapList(entity me)
86 {
87         me.configureXonoticListBox(me);
88         me.refilter(me);
89 }
90
91 void XonoticMapList_loadCvars(entity me)
92 {
93         me.refilter(me);
94 }
95
96
97 float XonoticMapList_g_maplistCacheQuery(entity me, float i)
98 {
99         return stof(substring(me.g_maplistCache, i, 1));
100 }
101 void XonoticMapList_g_maplistCacheToggle(entity me, float i)
102 {
103         string a, b, c, s, bspname;
104         float n;
105         s = me.g_maplistCache;
106         if (!s)
107                 return;
108         b = substring(s, i, 1);
109         if(b == "0")
110                 b = "1";
111         else if(b == "1")
112                 b = "0";
113         else
114                 return; // nothing happens
115         a = substring(s, 0, i);
116         c = substring(s, i+1, strlen(s) - (i+1));
117         strunzone(s);
118         me.g_maplistCache = strzone(strcat(a, b, c));
119         // TODO also update the actual cvar
120         if (!((bspname = MapInfo_BSPName_ByID(i))))
121                 return;
122         if(b == "1")
123                 cvar_set("g_maplist", strcat(bspname, " ", cvar_string("g_maplist")));
124         else
125         {
126                 s = "";
127                 n = tokenize_console(cvar_string("g_maplist"));
128                 for(i = 0; i < n; ++i)
129                         if(argv(i) != bspname)
130                                 s = strcat(s, " ", argv(i));
131                 cvar_set("g_maplist", substring(s, 1, strlen(s) - 1));
132         }
133 }
134
135 void XonoticMapList_draw(entity me)
136 {
137         if(me.startButton)
138                 me.startButton.disabled = ((me.selectedItem < 0) || (me.selectedItem >= me.nItems));
139         SUPER(XonoticMapList).draw(me);
140 }
141
142 void XonoticMapList_resizeNotify(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
143 {
144         me.itemAbsSize = '0 0 0';
145         SUPER(XonoticMapList).resizeNotify(me, relOrigin, relSize, absOrigin, absSize);
146
147         me.realFontSize_y = me.fontSize / (me.itemAbsSize_y = (absSize.y * me.itemHeight));
148         me.realFontSize_x = me.fontSize / (me.itemAbsSize_x = (absSize.x * (1 - me.controlWidth)));
149         me.realUpperMargin1 = 0.5 * (1 - 2.5 * me.realFontSize.y);
150         me.realUpperMargin2 = me.realUpperMargin1 + 1.5 * me.realFontSize.y;
151
152         me.columnPreviewOrigin = 0;
153         me.columnPreviewSize = me.itemAbsSize.y / me.itemAbsSize.x * 4 / 3;
154         me.columnNameOrigin = me.columnPreviewOrigin + me.columnPreviewSize + me.realFontSize.x;
155         me.columnNameSize = 1 - me.columnPreviewSize - 2 * me.realFontSize.x;
156
157         me.checkMarkSize = (eX * (me.itemAbsSize.y / me.itemAbsSize.x) + eY) * 0.5;
158         me.checkMarkOrigin = eY + eX * (me.columnPreviewOrigin + me.columnPreviewSize) - me.checkMarkSize;
159 }
160
161 void XonoticMapList_clickListBoxItem(entity me, float i, vector where)
162 {
163         if(where.x <= me.columnPreviewOrigin + me.columnPreviewSize)
164                 if(where.x >= 0)
165                 {
166                         m_play_click_sound(MENU_SOUND_SELECT);
167                         me.g_maplistCacheToggle(me, i);
168                 }
169 }
170
171 void XonoticMapList_doubleClickListBoxItem(entity me, float i, vector where)
172 {
173         if(where.x >= me.columnNameOrigin)
174                 if(where.x <= 1)
175                 {
176                         // pop up map info screen
177                         m_play_click_sound(MENU_SOUND_OPEN);
178                         main.mapInfoDialog.loadMapInfo(main.mapInfoDialog, i, me);
179                         DialogOpenButton_Click_withCoords(NULL, main.mapInfoDialog, me.origin + eX * (me.columnNameOrigin * me.size.x) + eY * ((me.itemHeight * i - me.scrollPos) * me.size.y), eY * me.itemAbsSize.y + eX * (me.itemAbsSize.x * me.columnNameSize));
180                 }
181 }
182
183 void XonoticMapList_drawListBoxItem(entity me, float i, vector absSize, float isSelected)
184 {
185         // layout: Ping, Map name, Map name, NP, TP, MP
186         string s;
187         float theAlpha;
188         float included;
189
190         if(!MapInfo_Get_ByID(i))
191                 return;
192
193         included = me.g_maplistCacheQuery(me, i);
194         if(included || isSelected)
195                 theAlpha = SKINALPHA_MAPLIST_INCLUDEDFG;
196         else
197                 theAlpha = SKINALPHA_MAPLIST_NOTINCLUDEDFG;
198
199         if(isSelected)
200                 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_SELECTED, SKINALPHA_LISTBOX_SELECTED);
201         else if(included)
202                 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_MAPLIST_INCLUDEDBG, SKINALPHA_MAPLIST_INCLUDEDBG);
203
204         if(draw_PictureSize(strcat("/maps/", MapInfo_Map_bspname)) == '0 0 0')
205                 draw_Picture(me.columnPreviewOrigin * eX, "nopreview_map", me.columnPreviewSize * eX + eY, '1 1 1', theAlpha);
206         else
207                 draw_Picture(me.columnPreviewOrigin * eX, strcat("/maps/", MapInfo_Map_bspname), me.columnPreviewSize * eX + eY, '1 1 1', theAlpha);
208
209         if(included)
210                 draw_Picture(me.checkMarkOrigin, "checkmark", me.checkMarkSize, '1 1 1', 1);
211         s = draw_TextShortenToWidth(strdecolorize(MapInfo_Map_titlestring), me.columnNameSize, 0, me.realFontSize);
212         draw_Text(me.realUpperMargin1 * eY + (me.columnNameOrigin + 0.00 * (me.columnNameSize - draw_TextWidth(s, 0, me.realFontSize))) * eX, s, me.realFontSize, SKINCOLOR_MAPLIST_TITLE, theAlpha, 0);
213         s = draw_TextShortenToWidth(strdecolorize(MapInfo_Map_author), me.columnNameSize, 0,  me.realFontSize);
214         draw_Text(me.realUpperMargin2 * eY + (me.columnNameOrigin + 1.00 * (me.columnNameSize - draw_TextWidth(s, 0, me.realFontSize))) * eX, s, me.realFontSize, SKINCOLOR_MAPLIST_AUTHOR, theAlpha, 0);
215
216         MapInfo_ClearTemps();
217 }
218
219 void XonoticMapList_refilter(entity me)
220 {
221         float i, j, n;
222         string s;
223         float gt, f;
224         gt = MapInfo_CurrentGametype();
225         f = MapInfo_CurrentFeatures();
226         MapInfo_FilterGametype(gt, f, MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
227         if (me.stringFilter)
228                 MapInfo_FilterString(me.stringFilter);
229         me.nItems = MapInfo_count;
230
231         for(i = 0; i < MapInfo_count; ++i)
232                 draw_PreloadPicture(strcat("/maps/", MapInfo_BSPName_ByID(i)));
233         if(me.g_maplistCache)
234                 strunzone(me.g_maplistCache);
235         s = "0";
236         for(i = 1; i < MapInfo_count; i *= 2)
237                 s = strcat(s, s);
238         n = tokenize_console(cvar_string("g_maplist"));
239         for(i = 0; i < n; ++i)
240         {
241                 j = MapInfo_FindName(argv(i));
242                 if(j >= 0)
243                 {
244                         // double check that the two mapnames are "identical", not just share the same prefix
245                         if (strlen(MapInfo_BSPName_ByID(j)) == strlen(argv(i)))
246                                 s = strcat(
247                                         substring(s, 0, j),
248                                         "1",
249                                         substring(s, j+1, MapInfo_count - (j+1))
250                                 );
251                 }
252         }
253         me.g_maplistCache = strzone(s);
254         if(gt != me.lastGametype || f != me.lastFeatures)
255         {
256                 me.lastGametype = gt;
257                 me.lastFeatures = f;
258                 me.setSelected(me, 0);
259         }
260 }
261
262 void XonoticMapList_refilterCallback(entity me, entity cb)
263 {
264         me.refilter(me);
265 }
266
267 void MapList_StringFilterBox_Change(entity box, entity me)
268 {
269         if(me.stringFilter)
270                 strunzone(me.stringFilter);
271         if(box.text != "")
272                 me.stringFilter = strzone(box.text);
273         else
274                 me.stringFilter = string_null;
275         
276         me.refilter(me);
277 }
278
279 void MapList_Add_Shown(entity btn, entity me)
280 {
281         float i, n;
282         n = strlen(me.g_maplistCache);
283         for (i = 0 ; i < n; i++)
284         {
285                 if (!me.g_maplistCacheQuery(me, i))
286                         me.g_maplistCacheToggle(me, i);
287         }
288         me.refilter(me);
289 }
290
291 void MapList_Remove_Shown(entity btn, entity me)
292 {
293         float i, n;
294         n = strlen(me.g_maplistCache);
295         for (i = 0 ; i < n; i++)
296         {
297                 if (me.g_maplistCacheQuery(me, i))
298                         me.g_maplistCacheToggle(me, i);
299         }
300         me.refilter(me);
301 }
302
303 void MapList_Add_All(entity btn, entity me)
304 {
305         float i;
306         string s;
307         MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 0, MapInfo_ForbiddenFlags(), 0); // all
308         s = "";
309         for(i = 0; i < MapInfo_count; ++i)
310                 s = strcat(s, " ", MapInfo_BSPName_ByID(i));
311         cvar_set("g_maplist", substring(s, 1, strlen(s) - 1));
312         me.refilter(me);
313 }
314
315 void MapList_Remove_All(entity btn, entity me)
316 {
317         cvar_set("g_maplist", "");
318         me.refilter(me);
319 }
320
321 void MapList_LoadMap(entity btn, entity me)
322 {
323         string m;
324         float i;
325
326         i = me.selectedItem;
327
328         if(btn.parent.instanceOfXonoticMapInfoDialog)
329         {
330                 i = btn.parent.currentMapIndex;
331                 Dialog_Close(btn, btn.parent);
332         }
333
334         if(i >= me.nItems || i < 0)
335                 return;
336
337         m = MapInfo_BSPName_ByID(i);
338         if (!m)
339         {
340                 print(_("Huh? Can't play this (m is NULL). Refiltering so this won't happen again.\n"));
341                 me.refilter(me);
342                 return;
343         }
344         if(MapInfo_CheckMap(m))
345         {
346                 localcmd("\nmenu_loadmap_prepare\n");
347                 if(cvar("menu_use_default_hostname"))
348                         localcmd("hostname \"", sprintf(_("%s's Xonotic Server"), strdecolorize(cvar_string("_cl_name"))), "\"\n");
349                 MapInfo_LoadMap(m, 1);
350         }
351         else
352         {
353                 print(_("Huh? Can't play this (invalid game type). Refiltering so this won't happen again.\n"));
354                 me.refilter(me);
355                 return;
356         }
357 }
358
359 float XonoticMapList_keyDown(entity me, float scan, float ascii, float shift)
360 {
361         string ch, save;
362         if(me.nItems <= 0)
363                 return SUPER(XonoticMapList).keyDown(me, scan, ascii, shift);
364         if(scan == K_MOUSE2 || scan == K_SPACE || scan == K_ENTER || scan == K_KP_ENTER)
365         {
366                 // pop up map info screen
367                 m_play_click_sound(MENU_SOUND_OPEN);
368                 main.mapInfoDialog.loadMapInfo(main.mapInfoDialog, me.selectedItem, me);
369                 DialogOpenButton_Click_withCoords(NULL, main.mapInfoDialog, me.origin + eX * (me.columnNameOrigin * me.size.x) + eY * ((me.itemHeight * me.selectedItem - me.scrollPos) * me.size.y), eY * me.itemAbsSize.y + eX * (me.itemAbsSize.x * me.columnNameSize));
370         }
371         else if(scan == K_MOUSE3 || scan == K_INS || scan == K_KP_INS)
372         {
373                 m_play_click_sound(MENU_SOUND_SELECT);
374                 me.g_maplistCacheToggle(me, me.selectedItem);
375         }
376         else if(ascii == 43) // +
377         {
378                 if (!me.g_maplistCacheQuery(me, me.selectedItem))
379                 {
380                         m_play_click_sound(MENU_SOUND_SELECT);
381                         me.g_maplistCacheToggle(me, me.selectedItem);
382                 }
383         }
384         else if(ascii == 45) // -
385         {
386                 if(me.g_maplistCacheQuery(me, me.selectedItem))
387                 {
388                         m_play_click_sound(MENU_SOUND_SELECT);
389                         me.g_maplistCacheToggle(me, me.selectedItem);
390                 }
391         }
392         else if(scan == K_BACKSPACE)
393         {
394                 if(time < me.typeToSearchTime)
395                 {
396                         save = substring(me.typeToSearchString, 0, strlen(me.typeToSearchString) - 1);
397                         if(me.typeToSearchString)
398                                 strunzone(me.typeToSearchString);
399                         me.typeToSearchString = strzone(save);
400                         me.typeToSearchTime = time + 0.5;
401                         if(strlen(me.typeToSearchString))
402                         {
403                                 MapInfo_FindName(me.typeToSearchString);
404                                 if(MapInfo_FindName_firstResult >= 0)
405                                         me.setSelected(me, MapInfo_FindName_firstResult);
406                         }
407                 }
408         }
409         else if(ascii >= 32 && ascii != 127)
410         {
411                 ch = chr(ascii);
412                 if(time > me.typeToSearchTime)
413                         save = ch;
414                 else
415                         save = strcat(me.typeToSearchString, ch);
416                 if(me.typeToSearchString)
417                         strunzone(me.typeToSearchString);
418                 me.typeToSearchString = strzone(save);
419                 me.typeToSearchTime = time + 0.5;
420                 MapInfo_FindName(me.typeToSearchString);
421                 if(MapInfo_FindName_firstResult >= 0)
422                         me.setSelected(me, MapInfo_FindName_firstResult);
423         }
424         else if(shift & S_CTRL && scan == 'f') // ctrl-f (as in "F"ind)
425         {
426                 me.parent.setFocus(me.parent, me.stringFilterBox);
427         }
428         else if(shift & S_CTRL && scan == 'u') // ctrl-u (remove stringFilter line
429         {
430                 me.stringFilterBox.setText(me.stringFilterBox, "");
431                 MapList_StringFilterBox_Change(me.stringFilterBox, me);
432         }
433         else
434                 return SUPER(XonoticMapList).keyDown(me, scan, ascii, shift);
435         return 1;
436 }
437
438 float MapList_StringFilterBox_keyDown(entity me, float scan, float ascii, float shift)
439 {
440         // in this section, note that onChangeEntity has the ref to mapListBox
441         // we make use of that, instead of extending a class to add one more attrib
442         switch(scan)
443         {
444                 case K_KP_ENTER:
445                 case K_ENTER:
446                         // move the focus to the mapListBox
447                         me.onChangeEntity.parent.setFocus(me.onChangeEntity.parent, me.onChangeEntity);
448                         return 1;
449                 case K_KP_UPARROW:
450                 case K_UPARROW:
451                 case K_KP_DOWNARROW:
452                 case K_DOWNARROW:
453                         // pass the event to the mapListBox (to scroll up and down)
454                         return me.onChangeEntity.keyDown(me.onChangeEntity, scan, ascii, shift);
455         }
456         return SUPER(XonoticInputBox).keyDown(me, scan, ascii, shift);
457 }
458 #endif