3 #include <common/mapinfo.qh>
4 #include "dialog_multiplayer_create_mapinfo.qh"
5 #include "mainwindow.qh"
10 void XonoticMapList_destroy(entity me)
15 entity makeXonoticMapList()
18 me = NEW(XonoticMapList);
19 me.configureXonoticMapList(me);
23 entity MapList_Set_String_Filter_Box(entity me, entity e)
25 me.stringFilterBox = e;
29 void XonoticMapList_configureXonoticMapList(entity me)
31 me.configureXonoticListBox(me);
35 void XonoticMapList_loadCvars(entity me)
41 float XonoticMapList_g_maplistCacheQuery(entity me, float i)
43 return stof(substring(me.g_maplistCache, i, 1));
45 void XonoticMapList_g_maplistCacheToggle(entity me, float i)
47 string a, b, c, s, bspname;
49 s = me.g_maplistCache;
52 b = substring(s, i, 1);
58 return; // nothing happens
59 a = substring(s, 0, i);
60 c = substring(s, i+1, strlen(s) - (i+1));
62 me.g_maplistCache = strzone(strcat(a, b, c));
63 // TODO also update the actual cvar
64 if (!((bspname = MapInfo_BSPName_ByID(i))))
67 cvar_set("g_maplist", strcat(bspname, " ", cvar_string("g_maplist")));
71 n = tokenize_console(cvar_string("g_maplist"));
72 for(i = 0; i < n; ++i)
73 if(argv(i) != bspname)
74 s = strcat(s, " ", argv(i));
75 cvar_set("g_maplist", substring(s, 1, strlen(s) - 1));
79 void XonoticMapList_draw(entity me)
82 me.startButton.disabled = ((me.selectedItem < 0) || (me.selectedItem >= me.nItems));
83 SUPER(XonoticMapList).draw(me);
86 void XonoticMapList_resizeNotify(entity me, vector relOrigin, vector relSize, vector absOrigin, vector absSize)
88 me.itemAbsSize = '0 0 0';
89 SUPER(XonoticMapList).resizeNotify(me, relOrigin, relSize, absOrigin, absSize);
91 me.itemAbsSize.y = absSize.y * me.itemHeight;
92 me.itemAbsSize.x = absSize.x * (1 - me.controlWidth);
93 me.realFontSize.y = me.fontSize / me.itemAbsSize.y;
94 me.realFontSize.x = me.fontSize / me.itemAbsSize.x;
95 me.realUpperMargin1 = 0.5 * (1 - 2.5 * me.realFontSize.y);
96 me.realUpperMargin2 = me.realUpperMargin1 + 1.5 * me.realFontSize.y;
98 me.columnPreviewOrigin = 0;
99 me.columnPreviewSize = me.itemAbsSize.y / me.itemAbsSize.x * 4 / 3;
100 me.columnNameOrigin = me.columnPreviewOrigin + me.columnPreviewSize + me.realFontSize.x;
101 me.columnNameSize = 1 - me.columnPreviewSize - 2 * me.realFontSize.x;
103 me.checkMarkSize = (eX * (me.itemAbsSize.y / me.itemAbsSize.x) + eY) * 0.5;
104 me.checkMarkOrigin = eY + eX * (me.columnPreviewOrigin + me.columnPreviewSize) - me.checkMarkSize;
107 void XonoticMapList_clickListBoxItem(entity me, float i, vector where)
109 if(where.x <= me.columnPreviewOrigin + me.columnPreviewSize)
112 m_play_click_sound(MENU_SOUND_SELECT);
113 me.g_maplistCacheToggle(me, i);
117 void XonoticMapList_doubleClickListBoxItem(entity me, float i, vector where)
119 if(where.x >= me.columnNameOrigin)
122 // pop up map info screen
123 m_play_click_sound(MENU_SOUND_OPEN);
124 main.mapInfoDialog.loadMapInfo(main.mapInfoDialog, i, me);
125 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));
129 void XonoticMapList_drawListBoxItem(entity me, int i, vector absSize, bool isSelected, bool isFocused)
131 // layout: Ping, Map name, Map name, NP, TP, MP
136 if(!MapInfo_Get_ByID(i))
139 included = me.g_maplistCacheQuery(me, i);
140 if(included || isSelected)
141 theAlpha = SKINALPHA_MAPLIST_INCLUDEDFG;
143 theAlpha = SKINALPHA_MAPLIST_NOTINCLUDEDFG;
146 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_SELECTED, SKINALPHA_LISTBOX_SELECTED);
150 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_MAPLIST_INCLUDEDBG, SKINALPHA_MAPLIST_INCLUDEDBG);
153 me.focusedItemAlpha = getFadedAlpha(me.focusedItemAlpha, SKINALPHA_LISTBOX_FOCUSED, SKINFADEALPHA_LISTBOX_FOCUSED);
154 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_FOCUSED, me.focusedItemAlpha);
158 if(draw_PictureSize(strcat("/maps/", MapInfo_Map_bspname)) == '0 0 0')
159 draw_Picture(me.columnPreviewOrigin * eX, "nopreview_map", me.columnPreviewSize * eX + eY, '1 1 1', theAlpha);
161 draw_Picture(me.columnPreviewOrigin * eX, strcat("/maps/", MapInfo_Map_bspname), me.columnPreviewSize * eX + eY, '1 1 1', theAlpha);
164 draw_Picture(me.checkMarkOrigin, "checkmark", me.checkMarkSize, '1 1 1', 1);
165 s = draw_TextShortenToWidth(strdecolorize(MapInfo_Map_titlestring), me.columnNameSize, 0, me.realFontSize);
166 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);
167 s = draw_TextShortenToWidth(strdecolorize(MapInfo_Map_author), me.columnNameSize, 0, me.realFontSize);
168 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);
170 MapInfo_ClearTemps();
173 void XonoticMapList_refilter(entity me)
177 Gametype gt = MapInfo_CurrentGametype();
178 int f = MapInfo_CurrentFeatures();
179 MapInfo_FilterGametype(gt, f, MapInfo_RequiredFlags(), MapInfo_ForbiddenFlags(), 0);
181 MapInfo_FilterString(me.stringFilter);
182 me.nItems = MapInfo_count;
184 for(i = 0; i < MapInfo_count; ++i)
185 draw_PreloadPicture(strcat("/maps/", MapInfo_BSPName_ByID(i)));
187 for(i = 1; i < MapInfo_count; i *= 2)
189 n = tokenize_console(cvar_string("g_maplist"));
190 for(i = 0; i < n; ++i)
192 j = MapInfo_FindName(argv(i));
195 // double check that the two mapnames are "identical", not just share the same prefix
196 if (strlen(MapInfo_BSPName_ByID(j)) == strlen(argv(i)))
200 substring(s, j+1, MapInfo_count - (j+1))
204 strcpy(me.g_maplistCache, s);
205 if(gt != me.lastGametype || f != me.lastFeatures)
207 me.lastGametype = gt;
209 me.setSelected(me, 0);
213 void XonoticMapList_refilterCallback(entity me, entity cb)
218 void MapList_StringFilterBox_Change(entity box, entity me)
220 strfree(me.stringFilter);
222 me.stringFilter = strzone(box.text);
227 void MapList_Add_Shown(entity btn, entity me)
230 n = strlen(me.g_maplistCache);
231 for (i = 0 ; i < n; i++)
233 if (!me.g_maplistCacheQuery(me, i))
234 me.g_maplistCacheToggle(me, i);
239 void MapList_Remove_Shown(entity btn, entity me)
242 n = strlen(me.g_maplistCache);
243 for (i = 0 ; i < n; i++)
245 if (me.g_maplistCacheQuery(me, i))
246 me.g_maplistCacheToggle(me, i);
251 void MapList_Add_All(entity btn, entity me)
255 _MapInfo_FilterGametype(MAPINFO_TYPE_ALL, 0, 0, MapInfo_ForbiddenFlags(), 0); // all
257 for(i = 0; i < MapInfo_count; ++i)
258 s = strcat(s, " ", MapInfo_BSPName_ByID(i));
259 cvar_set("g_maplist", substring(s, 1, strlen(s) - 1));
263 void MapList_Remove_All(entity btn, entity me)
265 cvar_set("g_maplist", "");
269 void MapList_LoadMap(entity btn, entity me)
276 if(btn.parent.instanceOfXonoticMapInfoDialog)
278 i = btn.parent.currentMapIndex;
279 Dialog_Close(btn, btn.parent);
282 if(i >= me.nItems || i < 0)
285 m = MapInfo_BSPName_ByID(i);
288 LOG_INFO(_("Huh? Can't play this (m is NULL). Refiltering so this won't happen again."));
292 if(MapInfo_CheckMap(m))
294 localcmd("\nmenu_loadmap_prepare\n");
295 if(cvar("menu_use_default_hostname"))
296 localcmd("hostname \"", sprintf(_("%s's Xonotic Server"), strdecolorize(cvar_string("_cl_name"))), "\"\n");
297 MapInfo_LoadMap(m, 1);
301 LOG_INFO(_("Huh? Can't play this (invalid game type). Refiltering so this won't happen again."));
307 float XonoticMapList_keyDown(entity me, float scan, float ascii, float shift)
311 return SUPER(XonoticMapList).keyDown(me, scan, ascii, shift);
312 if(scan == K_MOUSE2 || scan == K_SPACE || scan == K_ENTER || scan == K_KP_ENTER)
314 // pop up map info screen
315 m_play_click_sound(MENU_SOUND_OPEN);
316 main.mapInfoDialog.loadMapInfo(main.mapInfoDialog, me.selectedItem, me);
317 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));
319 else if(scan == K_MOUSE3 || scan == K_INS || scan == K_KP_INS)
321 m_play_click_sound(MENU_SOUND_SELECT);
322 me.g_maplistCacheToggle(me, me.selectedItem);
324 else if(ascii == 43) // +
326 if (!me.g_maplistCacheQuery(me, me.selectedItem))
328 m_play_click_sound(MENU_SOUND_SELECT);
329 me.g_maplistCacheToggle(me, me.selectedItem);
332 else if(ascii == 45) // -
334 if(me.g_maplistCacheQuery(me, me.selectedItem))
336 m_play_click_sound(MENU_SOUND_SELECT);
337 me.g_maplistCacheToggle(me, me.selectedItem);
340 else if(scan == K_BACKSPACE)
342 if(time < me.typeToSearchTime)
344 save = substring(me.typeToSearchString, 0, strlen(me.typeToSearchString) - 1);
345 strcpy(me.typeToSearchString, save);
346 me.typeToSearchTime = time + 0.5;
347 if(strlen(me.typeToSearchString))
349 MapInfo_FindName(me.typeToSearchString);
350 if(MapInfo_FindName_firstResult >= 0)
351 me.setSelected(me, MapInfo_FindName_firstResult);
355 else if(ascii >= 32 && ascii != 127)
358 if(time > me.typeToSearchTime)
361 save = strcat(me.typeToSearchString, ch);
362 strcpy(me.typeToSearchString, save);
363 me.typeToSearchTime = time + 0.5;
364 MapInfo_FindName(me.typeToSearchString);
365 if(MapInfo_FindName_firstResult >= 0)
366 me.setSelected(me, MapInfo_FindName_firstResult);
368 else if((shift & S_CTRL) && scan == 'f') // ctrl-f (as in "F"ind)
370 me.parent.setFocus(me.parent, me.stringFilterBox);
372 else if((shift & S_CTRL) && scan == 'u') // ctrl-u (remove stringFilter line
374 me.stringFilterBox.setText(me.stringFilterBox, "");
375 MapList_StringFilterBox_Change(me.stringFilterBox, me);
378 return SUPER(XonoticMapList).keyDown(me, scan, ascii, shift);
382 float MapList_StringFilterBox_keyDown(entity me, float scan, float ascii, float shift)
384 // in this section, note that onChangeEntity has the ref to mapListBox
385 // we make use of that, instead of extending a class to add one more attrib
390 // move the focus to the mapListBox
391 me.onChangeEntity.parent.setFocus(me.onChangeEntity.parent, me.onChangeEntity);
397 // pass the event to the mapListBox (to scroll up and down)
398 return me.onChangeEntity.keyDown(me.onChangeEntity, scan, ascii, shift);
400 return SUPER(XonoticInputBox).keyDown(me, scan, ascii, shift);