#pragma once #include "draw.qh" #include "skin.qh" #include "xonotic/util.qh" #include #include const int GAME_ISSERVER = BIT(0); const int GAME_CONNECTED = BIT(1); const int GAME_DEVELOPER = BIT(2); bool Menu_Active; int gamestatus; const int S_SHIFT = 1; const int S_CTRL = 2; const int S_ALT = 4; float frametime; float time; entity anim; entity main; void m_hide(); void m_display(); void m_goto(string name); .string name; entity keyGrabber; .void(entity this, float key, float ascii) keyGrabbed; // "virtual" conwidth/height values for other stuff to assume for scaling float conwidth, conheight; /** you have to define this for pre-menu initialization. Return 0 if initialization needs to be retried a frame later, 1 if it succeeded. */ float preMenuInit(); /** this is run before the menu is drawn. You may put some stuff there that has to be done every frame. */ void preMenuDraw(); /** this is run just after the menu is drawn (or not). Useful to draw something over everything else. */ void postMenuDraw(); void m_sync(); void draw_reset_cropped(); const string MENU_SOUND_CLEAR = "sound/menu/clear.wav"; const string MENU_SOUND_CLOSE = "sound/menu/close.wav"; const string MENU_SOUND_EXECUTE = "sound/menu/execute.wav"; const string MENU_SOUND_FOCUS = "sound/menu/focus.wav"; const string MENU_SOUND_OPEN = "sound/menu/open.wav"; const string MENU_SOUND_SELECT = "sound/menu/select.wav"; const string MENU_SOUND_SLIDE = "sound/menu/slide.wav"; const string MENU_SOUND_WINNER = "sound/menu/winner.wav"; void m_play_focus_sound(); void m_play_click_sound(string soundfile);