1 ///////////////////////////////////////////////
3 ///////////////////////
4 // This file belongs to dpmod/darkplaces
5 // AK contains all menu functions (especially the required ones)
6 ///////////////////////////////////////////////
8 float mouseButtonsPressed;
15 float menuInitialized;
16 float menuNotTheFirstFrame;
23 cvar_set("_menu_alpha", "0");
24 prvm_language = strzone(cvar_string("prvm_language"));
26 check_unacceptable_compiler_bugs();
29 print(sprintf(_("^4MQC Build information: ^1%s\n"), WATERMARK()));
32 // list all game dirs (TEST)
39 s = getgamedirinfo(i, GETGAMEDIRINFO_NAME);
42 dprint(s, ": ", getgamedirinfo(i, GETGAMEDIRINFO_DESCRIPTION));
47 float MENU_ASPECT = 1.25; // 1280x1024
48 float MENU_MINHEIGHT = 600;
49 float conwidth_s, conheight_s, realconwidth, realconheight, screenconwidth, screenconheight;
50 void draw_reset_cropped()
52 draw_reset(screenconwidth, screenconheight, 0.5 * (realconwidth - screenconwidth), 0.5 * (realconheight - screenconheight));
54 void draw_reset_full()
56 draw_reset(realconwidth, realconheight, 0, 0);
58 void UpdateConWidthHeight()
60 conwidth_s = conwidth;
61 conheight_s = conheight;
62 realconwidth = cvar("vid_conwidth");
63 realconheight = cvar("vid_conheight");
64 if(realconwidth / realconheight > MENU_ASPECT)
67 conwidth = realconheight * MENU_ASPECT;
68 conheight = realconheight;
73 conwidth = realconwidth;
74 conheight = realconwidth / MENU_ASPECT;
76 screenconwidth = conwidth;
77 screenconheight = conheight;
78 if(conwidth < MENU_MINHEIGHT * MENU_ASPECT)
80 conheight *= MENU_MINHEIGHT * MENU_ASPECT / conwidth;
81 conwidth = MENU_MINHEIGHT * MENU_ASPECT;
83 if(conheight < MENU_MINHEIGHT)
85 conwidth *= MENU_MINHEIGHT / conheight;
86 conheight = MENU_MINHEIGHT;
90 if(conwidth_s != conwidth || conheight_s != conheight)
93 main.resizeNotify(main, '0 0 0', eX * conwidth + eY * conheight, '0 0 0', eX * conwidth + eY * conheight);
98 void() m_init_delayed =
100 float fh, glob, n, i;
103 conwidth = conheight = -1;
104 UpdateConWidthHeight();
105 draw_reset_cropped();
116 if(cvar_string("menu_skin") != "")
118 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
119 fh = fopen(language_filename(strcat(draw_currentSkin, "/skinvalues.txt")), FILE_READ);
122 if(cvar_defstring("menu_skin") != "")
124 cvar_set("menu_skin", cvar_defstring("menu_skin"));
125 draw_currentSkin = strcat("gfx/menu/", cvar_string("menu_skin"));
126 fh = fopen(language_filename(strcat(draw_currentSkin, "/skinvalues.txt")), FILE_READ);
130 draw_currentSkin = "gfx/menu/default";
131 fh = fopen(language_filename(strcat(draw_currentSkin, "/skinvalues.txt")), FILE_READ);
135 error("cannot load any menu skin\n");
137 draw_currentSkin = strzone(draw_currentSkin);
138 while((s = fgets(fh)))
140 // these two are handled by skinlist.qc
141 if(substring(s, 0, 6) == "title ")
143 if(substring(s, 0, 7) == "author ")
145 n = tokenize_console(s);
147 Skin_ApplySetting(argv(0), substring(s, argv_start_index(1), argv_end_index(-1) - argv_start_index(1)));
151 glob = search_begin(strcat(draw_currentSkin, "/*.tga"), TRUE, TRUE);
154 n = search_getsize(glob);
155 for(i = 0; i < n; ++i)
156 precache_pic(search_getfilename(glob, i));
160 draw_setMousePointer(SKINGFX_CURSOR, SKINSIZE_CURSOR, SKINOFFSET_CURSOR);
163 anim = spawnAnimHost();
164 main = spawnMainWindow(); main.configureMainWindow(main);
167 main.resizeNotify(main, '0 0 0', eX * conwidth + eY * conheight, '0 0 0', eX * conwidth + eY * conheight);
170 menuMousePos = '0.5 0.5 0';
173 m_display(); // delayed menu display
176 void(float key, float ascii) m_keyup =
182 draw_reset_cropped();
183 main.keyUp(main, key, ascii, menuShiftState);
184 if(key >= K_MOUSE1 && key <= K_MOUSE3)
186 --mouseButtonsPressed;
187 if(!mouseButtonsPressed)
188 main.mouseRelease(main, menuMousePos);
189 if(mouseButtonsPressed < 0)
191 mouseButtonsPressed = 0;
192 dprint("Warning: released an already released button\n");
195 if(key == K_ALT) menuShiftState -= (menuShiftState & S_ALT);
196 if(key == K_CTRL) menuShiftState -= (menuShiftState & S_CTRL);
197 if(key == K_SHIFT) menuShiftState -= (menuShiftState & S_SHIFT);
200 void(float key, float ascii) m_keydown =
211 e.keyGrabbed(e, key, ascii);
215 draw_reset_cropped();
216 if(key >= K_MOUSE1 && key <= K_MOUSE3)
217 if(!mouseButtonsPressed)
218 main.mousePress(main, menuMousePos);
219 if(!main.keyDown(main, key, ascii, menuShiftState))
221 if(gamestatus & (GAME_ISSERVER | GAME_CONNECTED)) // don't back out to console only
222 m_hide(); // disable menu on unhandled ESC
224 if(key >= K_MOUSE1 && key <= K_MOUSE3)
226 ++mouseButtonsPressed;
227 if(mouseButtonsPressed > 10)
229 mouseButtonsPressed = 10;
230 dprint("Warning: pressed an already pressed button\n");
233 if(key == K_ALT) menuShiftState |= S_ALT;
234 if(key == K_CTRL) menuShiftState |= S_CTRL;
235 if(key == K_SHIFT) menuShiftState |= S_SHIFT;
238 float SCALEMODE_CROP = 0;
239 float SCALEMODE_LETTERBOX = 1;
240 float SCALEMODE_WIDTH = 2;
241 float SCALEMODE_HEIGHT = 3;
242 float SCALEMODE_STRETCH = 4;
243 void draw_Picture_Aligned(vector algn, float scalemode, string img, float a)
245 vector sz, org, isz, isz_w, isz_h;
246 float width_is_larger;
248 sz = draw_PictureSize(img);
249 width_is_larger = (sz_x * draw_scale_y >= sz_y * draw_scale_x);
250 isz_w = '1 0 0' + '0 1 0' * ((sz_y / sz_x) * (draw_scale_x / draw_scale_y));
251 isz_h = '0 1 0' + '1 0 0' * ((sz_x / sz_y) * (draw_scale_y / draw_scale_x));
257 isz = (width_is_larger ? isz_h : isz_w);
259 case SCALEMODE_LETTERBOX:
260 isz = (width_is_larger ? isz_w : isz_h);
262 case SCALEMODE_WIDTH:
265 case SCALEMODE_HEIGHT:
268 case SCALEMODE_STRETCH:
273 org = eX * (algn_x * (1 - isz_x)) + eY * (algn_y * (1 - isz_y));
274 draw_Picture(org, img, isz, '1 1 1', a);
277 void(string img, float a, string algn, float force1) drawBackground =
279 if(main.mainNexposee.ModalController_state == 0)
289 scalemode = SCALEMODE_CROP;
291 for(i = 0; i < strlen(algn); ++i)
293 c = substring(algn, i, 1);
296 case "c": scalemode = SCALEMODE_CROP; goto nopic;
297 case "l": scalemode = SCALEMODE_LETTERBOX; goto nopic;
298 case "h": scalemode = SCALEMODE_HEIGHT; goto nopic;
299 case "w": scalemode = SCALEMODE_WIDTH; goto nopic;
300 case "s": scalemode = SCALEMODE_STRETCH; goto nopic;
301 case "1": case "4": case "7": v_x = 0.0; break;
302 case "2": case "5": case "8": v_x = 0.5; break;
303 case "3": case "6": case "9": v_x = 1.0; break;
304 default: v_x = random(); break;
308 case "7": case "8": case "9": v_y = 0.0; break;
309 case "4": case "5": case "6": v_y = 0.5; break;
310 case "1": case "2": case "3": v_y = 1.0; break;
311 default: v_y = random(); break;
314 draw_Picture_Aligned(v, scalemode, img, a);
316 // force all secondary layers to use alpha 1. Prevents ugly issues
317 // with overlap. It's a flag because it cannot be used for the
319 draw_Picture_Aligned(v, scalemode, strcat(img, "_l", ftos(l+1)), 1);
321 draw_Picture_Aligned(v, scalemode, strcat(img, "_l", ftos(l+1)), a);
328 float menu_tooltips_old;
329 vector menuTooltipAveragedMousePos;
330 entity menuTooltipItem;
331 vector menuTooltipOrigin;
332 vector menuTooltipSize;
333 float menuTooltipAlpha;
334 string menuTooltipText;
335 float menuTooltipState; // 0: static, 1: fading in, 2: fading out
336 float m_testmousetooltipbox(vector pos)
338 if(pos_x >= menuTooltipOrigin_x && pos_x < menuTooltipOrigin_x + menuTooltipSize_x)
339 if(pos_y >= menuTooltipOrigin_y && pos_y < menuTooltipOrigin_y + menuTooltipSize_y)
343 float m_testtooltipbox(vector tooltippos)
349 if(tooltippos_x + menuTooltipSize_x > 1)
351 if(tooltippos_y + menuTooltipSize_y > 1)
353 menuTooltipOrigin = tooltippos;
356 float m_allocatetooltipbox(vector pos)
358 vector avoidplus, avoidminus;
361 avoidplus_x = (SKINAVOID_TOOLTIP_x + SKINSIZE_CURSOR_x - SKINOFFSET_CURSOR_x * SKINSIZE_CURSOR_x) / conwidth;
362 avoidplus_y = (SKINAVOID_TOOLTIP_y + SKINSIZE_CURSOR_y - SKINOFFSET_CURSOR_y * SKINSIZE_CURSOR_y) / conheight;
365 avoidminus_x = (SKINAVOID_TOOLTIP_x + SKINOFFSET_CURSOR_x * SKINSIZE_CURSOR_x) / conwidth + menuTooltipSize_x;
366 avoidminus_y = (SKINAVOID_TOOLTIP_y + SKINOFFSET_CURSOR_y * SKINSIZE_CURSOR_y) / conheight + menuTooltipSize_y;
371 if(m_testtooltipbox(v))
375 v_x = pos_x - menuTooltipSize_x * 0.5;
376 if(m_testtooltipbox(v))
380 v_x = pos_x - avoidminus_x;
381 if(m_testtooltipbox(v))
385 v_y = pos_y - avoidminus_y;
386 if(m_testtooltipbox(v))
390 v_x = pos_x - menuTooltipSize_x * 0.5;
391 if(m_testtooltipbox(v))
395 v_x = pos_x + avoidplus_x;
396 if(m_testtooltipbox(v))
401 entity m_findtooltipitem(entity root, vector pos)
409 while(it.instanceOfContainer)
411 while(it.instanceOfNexposee && it.focusedChild)
413 it = it.focusedChild;
414 pos = globalToBox(pos, it.Container_origin, it.Container_size);
416 if(it.instanceOfNexposee)
418 it = it.itemFromPoint(it, pos);
421 else if(menu_tooltips == 2 && (it.cvarName || it.onClickCommand))
425 else if(it.instanceOfModalController)
426 it = it.focusedChild;
428 it = it.itemFromPoint(it, pos);
433 else if(menu_tooltips == 2 && (it.cvarName || it.onClickCommand))
435 pos = globalToBox(pos, it.Container_origin, it.Container_size);
442 if (menu_tooltips == 2)
445 if (menuTooltipItem.cvarName)
447 if (getCvarsMulti(menuTooltipItem))
448 s = strcat("[", menuTooltipItem.cvarName, " ", getCvarsMulti(menuTooltipItem), "]");
450 s = strcat("[", menuTooltipItem.cvarName, "]");
452 else if (menuTooltipItem.onClickCommand)
453 s = strcat("<", menuTooltipItem.onClickCommand, ">");
455 return menuTooltipItem.tooltip;
456 if (menuTooltipItem.tooltip)
457 return strcat(menuTooltipItem.tooltip, " ", s);
460 return menuTooltipItem.tooltip;
462 void m_tooltip(vector pos)
469 menu_tooltips = cvar("menu_tooltips");
472 // don't return immediately, fade out the active tooltip first
473 if (menuTooltipItem == world)
476 menu_tooltips_old = menu_tooltips;
480 f = bound(0, frametime * 2, 1);
481 menuTooltipAveragedMousePos = menuTooltipAveragedMousePos * (1 - f) + pos * f;
482 f = vlen(pos - menuTooltipAveragedMousePos);
484 it = m_findtooltipitem(main, pos);
488 fontsize = '1 0 0' * (SKINFONTSIZE_TOOLTIP / conwidth) + '0 1 0' * (SKINFONTSIZE_TOOLTIP / conheight);
490 // float menuTooltipState; // 0: static, 1: fading in, 2: fading out
491 if(it != menuTooltipItem)
493 switch(menuTooltipState)
498 // another item: fade out first
499 menuTooltipState = 2;
504 menuTooltipState = 1;
505 menuTooltipItem = it;
507 menuTooltipOrigin_x = -1; // unallocated
510 strunzone(menuTooltipText);
511 menuTooltipText = strzone(gettooltip());
515 getWrappedLine_remaining = menuTooltipText;
516 while(getWrappedLine_remaining)
518 s = getWrappedLine(SKINWIDTH_TOOLTIP, fontsize, draw_TextWidth_WithoutColors);
520 f = draw_TextWidth(s, FALSE, fontsize);
524 menuTooltipSize_x = w + 2 * (SKINMARGIN_TOOLTIP_x / conwidth);
525 menuTooltipSize_y = i * fontsize_y + 2 * (SKINMARGIN_TOOLTIP_y / conheight);
526 menuTooltipSize_z = 0;
530 // changing item while fading in: fade out first
531 menuTooltipState = 2;
534 // changing item while fading out: can't
538 else if(menuTooltipState == 2) // re-fade in?
539 menuTooltipState = 1;
542 if(!m_testmousetooltipbox(pos))
543 menuTooltipState = 2; // fade out if mouse touches it
545 switch(menuTooltipState)
548 menuTooltipAlpha = bound(0, menuTooltipAlpha + 5 * frametime, 1);
549 if(menuTooltipAlpha == 1)
550 menuTooltipState = 0;
553 menuTooltipAlpha = bound(0, menuTooltipAlpha - 2 * frametime, 1);
554 if(menuTooltipAlpha == 0)
556 menuTooltipState = 0;
557 menuTooltipItem = world;
562 if(menuTooltipItem == world)
566 strunzone(menuTooltipText);
567 menuTooltipText = string_null;
573 if(menu_tooltips != menu_tooltips_old)
575 if (menu_tooltips != 0 && menu_tooltips_old != 0)
576 menuTooltipItem = world; // reload tooltip next frame
577 menu_tooltips_old = menu_tooltips;
579 else if(menuTooltipOrigin_x < 0) // unallocated?
580 m_allocatetooltipbox(pos);
582 if(menuTooltipOrigin_x >= 0)
585 p = SKINBORDER_TOOLTIP;
587 p_y *= 1 / conheight;
588 draw_BorderPicture(menuTooltipOrigin, SKINGFX_TOOLTIP, menuTooltipSize, '1 1 1', menuTooltipAlpha, p);
589 p = menuTooltipOrigin;
590 p_x += SKINMARGIN_TOOLTIP_x / conwidth;
591 p_y += SKINMARGIN_TOOLTIP_y / conheight;
592 getWrappedLine_remaining = menuTooltipText;
593 while(getWrappedLine_remaining)
595 s = getWrappedLine(SKINWIDTH_TOOLTIP, fontsize, draw_TextWidth_WithoutColors);
596 draw_Text(p, s, fontsize, '1 1 1', SKINALPHA_TOOLTIP * menuTooltipAlpha, FALSE);
608 menuMouseMode = cvar("menu_mouse_absolute");
614 UpdateConWidthHeight();
618 // TODO draw an info image about this situation
622 if(!menuNotTheFirstFrame)
624 menuNotTheFirstFrame = 1;
626 if(!cvar("menu_video_played"))
628 localcmd("cd loop $menu_cdtrack; play sound/announcer/default/welcome.ogg\n");
629 menuLogoAlpha = -0.8; // no idea why, but when I start this at zero, it jumps instead of fading FIXME
631 // ALWAYS set this cvar; if we start but menu is not active, this means we want no background music!
632 localcmd("set menu_video_played 1\n");
636 realFrametime = frametime = min(0.2, t - menuPrevTime);
640 t = cvar("menu_slowmo");
651 if(getmousetarget() == (menuMouseMode ? MT_CLIENT : MT_MENU) && (getkeydest() == KEY_MENU || getkeydest() == KEY_MENU_GRABBED))
652 setkeydest(keyGrabber ? KEY_MENU_GRABBED : KEY_MENU);
657 if(cvar("cl_capturevideo"))
658 frametime = t / cvar("cl_capturevideo_fps"); // make capturevideo work smoothly
662 gamestatus = gamestatus | GAME_ISSERVER;
663 if(clientstate() == CS_CONNECTED)
664 gamestatus = gamestatus | GAME_CONNECTED;
665 if(cvar("developer"))
666 gamestatus = gamestatus | GAME_DEVELOPER;
668 prevMenuAlpha = menuAlpha;
671 if(menuAlpha == 0 && menuLogoAlpha < 2)
673 menuLogoAlpha = menuLogoAlpha + frametime * 2;
677 menuAlpha = min(1, menuAlpha + frametime * 5);
683 menuAlpha = max(0, menuAlpha - frametime * 5);
687 draw_reset_cropped();
689 if(!(gamestatus & (GAME_CONNECTED | GAME_ISSERVER)))
691 if(menuLogoAlpha > 0)
694 draw_Fill('0 0 0', '1 1 0', SKINCOLOR_BACKGROUND, 1);
695 drawBackground(SKINGFX_BACKGROUND, bound(0, menuLogoAlpha, 1), SKINALIGN_BACKGROUND, TRUE);
696 draw_reset_cropped();
697 if(menuAlpha <= 0 && SKINALPHA_CURSOR_INTRO > 0)
699 draw_alpha = SKINALPHA_CURSOR_INTRO * bound(0, menuLogoAlpha, 1);
700 draw_drawMousePointer(menuMousePos);
705 else if(SKINALPHA_BACKGROUND_INGAME)
710 drawBackground(SKINGFX_BACKGROUND_INGAME, menuAlpha * SKINALPHA_BACKGROUND_INGAME, SKINALIGN_BACKGROUND_INGAME, FALSE);
711 draw_reset_cropped();
715 if(menuAlpha != prevMenuAlpha)
716 cvar_set("_menu_alpha", ftos(menuAlpha));
718 draw_reset_cropped();
720 draw_reset_cropped();
724 if(prevMenuAlpha > 0)
725 main.initializeDialog(main, main.firstChild);
726 draw_reset_cropped();
731 draw_alpha *= menuAlpha;
736 newMouse = globalToBox(getmousepos(), draw_shift, draw_scale);
737 if(newMouse != '0 0 0')
738 if(newMouse != menuMousePos)
740 menuMousePos = newMouse;
741 if(mouseButtonsPressed)
742 main.mouseDrag(main, menuMousePos);
744 main.mouseMove(main, menuMousePos);
751 vector dMouse, minpos, maxpos;
752 dMouse = getmousepos() * (frametime / realFrametime); // for capturevideo
753 if(dMouse != '0 0 0')
755 minpos = globalToBox('0 0 0', draw_shift, draw_scale);
756 maxpos = globalToBox(eX * (realconwidth - 1) + eY * (realconheight - 1), draw_shift, draw_scale);
757 dMouse = globalToBoxSize(dMouse, draw_scale);
758 menuMousePos += dMouse * cvar("menu_mouse_speed");
759 menuMousePos_x = bound(minpos_x, menuMousePos_x, maxpos_x);
760 menuMousePos_y = bound(minpos_y, menuMousePos_y, maxpos_y);
761 if(mouseButtonsPressed)
762 main.mouseDrag(main, menuMousePos);
764 main.mouseMove(main, menuMousePos);
770 m_tooltip(menuMousePos);
772 draw_alpha = max(draw_alpha, SKINALPHA_CURSOR_INTRO * bound(0, menuLogoAlpha, 1));
774 draw_drawMousePointer(menuMousePos);
776 draw_reset_cropped();
785 setkeydest(KEY_MENU);
786 setmousetarget((menuMouseMode ? MT_CLIENT : MT_MENU));
791 if(mouseButtonsPressed)
792 main.mouseRelease(main, menuMousePos);
793 mouseButtonsPressed = 0;
795 main.focusEnter(main);
796 main.showNotify(main);
802 setkeydest(KEY_GAME);
803 setmousetarget(MT_CLIENT);
808 main.focusLeave(main);
809 main.hideNotify(main);
825 for(e = NULL; (e = nextent(e)) != NULL; )
827 if(e.classname != "vtbl")
833 void m_focus_item_chain(entity outermost, entity innermost)
835 if(innermost.parent != outermost)
836 m_focus_item_chain(outermost, innermost.parent);
837 innermost.parent.setFocus(innermost.parent, innermost);
840 void m_activate_window(entity wnd)
845 m_activate_window(par);
847 if(par.instanceOfModalController)
849 if(wnd.tabSelectingButton)
851 TabButton_Click(wnd.tabSelectingButton, wnd);
854 par.initializeDialog(par, wnd);
856 else if(par.instanceOfNexposee)
858 // nexposee (sorry for violating abstraction here)
859 par.selectedChild = wnd;
860 par.animationState = 1;
861 Container_setFocus(par, NULL);
863 else if(par.instanceOfContainer)
867 par.setFocus(par, wnd);
871 void m_setpointerfocus(entity wnd)
873 if(wnd.instanceOfContainer)
875 entity focus = wnd.preferredFocusedGrandChild(wnd);
878 menuMousePos = focus.origin + 0.5 * focus.size;
879 menuMousePos_x *= 1 / conwidth;
880 menuMousePos_y *= 1 / conheight;
881 if(wnd.focused) // why does this never happen?
882 m_focus_item_chain(wnd, focus);
887 void(string itemname) m_goto =
892 if(itemname == "") // this can be called by GameCommand
894 if(gamestatus & (GAME_ISSERVER | GAME_CONNECTED))
898 m_activate_window(main.mainNexposee);
904 for(e = NULL; (e = findstring(e, name, itemname)); )
905 if(e.classname != "vtbl")
910 m_activate_window(e);
911 m_setpointerfocus(e);
917 void() m_goto_skin_selector =
921 // TODO add code to switch back to the skin selector (no idea how to do it now)
922 m_goto("skinselector");
925 void() m_goto_language_selector =
929 // TODO add code to switch back to the language selector (no idea how to do it now)
930 m_goto("languageselector");
933 void() m_goto_video_settings =
937 // TODO add code to switch back to the video settings (no idea how to do it now)
938 m_goto("videosettings");