9 #include "xonotic/util.qh"
11 #include "../common/constants.qh"
12 #include "../common/test.qh"
13 #include "../common/util.qh"
19 const int GAME_ISSERVER = 1;
20 const int GAME_CONNECTED = 2;
21 const int GAME_DEVELOPER = 4;
28 const int S_SHIFT = 1;
39 void m_goto(string name);
43 .void(entity me, float key, float ascii) keyGrabbed;
45 float conwidth, conheight; // "virtual" conwidth/height values for other stuff to assume for scaling
47 float preMenuInit(); // you have to define this for pre-menu initialization. Return 0 if initialization needs to be retried a frame later, 1 if it succeeded.
48 void preMenuDraw(); // this is run before the menu is drawn. You may put some stuff there that has to be done every frame.
49 void postMenuDraw(); // this is run just after the menu is drawn (or not). Useful to draw something over everything else.
53 void draw_reset_cropped();
57 const string MENU_SOUND_CLEAR = "sound/menu/clear.wav";
58 const string MENU_SOUND_CLOSE = "sound/menu/close.wav";
59 const string MENU_SOUND_EXECUTE = "sound/menu/execute.wav";
60 const string MENU_SOUND_FOCUS = "sound/menu/focus.wav";
61 const string MENU_SOUND_OPEN = "sound/menu/open.wav";
62 const string MENU_SOUND_SELECT = "sound/menu/select.wav";
63 const string MENU_SOUND_SLIDE = "sound/menu/slide.wav";
64 const string MENU_SOUND_WINNER = "sound/menu/winner.wav";
66 void m_play_focus_sound();
67 void m_play_click_sound(string soundfile);