2010-02-15 23:26:55 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-2001 Id Software, Inc.
|
|
|
|
Copyright (C) 2002-2009 John Fitzgibbons and others
|
2014-09-22 08:55:46 +00:00
|
|
|
Copyright (C) 2010-2014 QuakeSpasm developers
|
2010-02-15 23:26:55 +00:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
bspfile.h, cdaudio.h, client.h, cmd.h, common.h, console.h, crc.h, cvar.h,
d_ifacea.h, draw.h, gl_texmgr.h, glquake.h, image.h, input.h, keys.h, mathlib.h,
menu.h, modelgen.h, net.h, net_dgrm.h, net_loop.h, net_sdlnet.h, net_udp.h,
net_wins.h, platform.h, pr_comp.h, progdefs.h, progs.h, protocol.h, quakedef.h,
render.h, resource.h, sbar.h, screen.h, server.h, sound.h, spritegn.h, sys.h,
vid.h, view.h, wad.h, world.h, zone.h: added include guards to the headers.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@84 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-21 00:01:08 +00:00
|
|
|
#ifndef _QUAKE_MENU_H
|
|
|
|
#define _QUAKE_MENU_H
|
|
|
|
|
2010-04-22 19:02:29 +00:00
|
|
|
enum m_state_e {
|
|
|
|
m_none,
|
|
|
|
m_main,
|
|
|
|
m_singleplayer,
|
|
|
|
m_load,
|
|
|
|
m_save,
|
|
|
|
m_multiplayer,
|
|
|
|
m_setup,
|
|
|
|
m_net,
|
|
|
|
m_options,
|
|
|
|
m_video,
|
|
|
|
m_keys,
|
|
|
|
m_help,
|
|
|
|
m_quit,
|
|
|
|
m_lanconfig,
|
|
|
|
m_gameoptions,
|
|
|
|
m_search,
|
|
|
|
m_slist
|
|
|
|
};
|
|
|
|
|
|
|
|
extern enum m_state_e m_state;
|
2010-05-31 09:15:50 +00:00
|
|
|
extern enum m_state_e m_return_state;
|
2010-04-22 19:02:29 +00:00
|
|
|
|
2010-08-29 02:22:55 +00:00
|
|
|
extern qboolean m_entersound;
|
2012-06-08 19:27:12 +00:00
|
|
|
|
2010-02-15 23:26:55 +00:00
|
|
|
//
|
|
|
|
// menus
|
|
|
|
//
|
|
|
|
void M_Init (void);
|
|
|
|
void M_Keydown (int key);
|
2014-09-23 02:19:57 +00:00
|
|
|
void M_Charinput (int key);
|
2014-09-23 19:10:02 +00:00
|
|
|
qboolean M_InputtingText (void);
|
2010-02-15 23:26:55 +00:00
|
|
|
void M_ToggleMenu_f (void);
|
2012-10-23 08:44:20 +00:00
|
|
|
|
|
|
|
void M_Menu_Main_f (void);
|
2010-08-29 02:22:55 +00:00
|
|
|
void M_Menu_Options_f (void);
|
|
|
|
void M_Menu_Quit_f (void);
|
2010-02-15 23:26:55 +00:00
|
|
|
|
2010-08-29 02:22:55 +00:00
|
|
|
void M_Print (int cx, int cy, const char *str);
|
|
|
|
void M_PrintWhite (int cx, int cy, const char *str);
|
2012-10-23 08:44:20 +00:00
|
|
|
|
|
|
|
void M_Draw (void);
|
2010-08-29 02:22:55 +00:00
|
|
|
void M_DrawCharacter (int cx, int line, int num);
|
2012-10-23 08:44:20 +00:00
|
|
|
|
2010-08-29 02:22:55 +00:00
|
|
|
void M_DrawPic (int x, int y, qpic_t *pic);
|
2012-10-23 08:44:20 +00:00
|
|
|
void M_DrawTransPic (int x, int y, qpic_t *pic);
|
2010-08-29 02:22:55 +00:00
|
|
|
void M_DrawCheckbox (int x, int y, int on);
|
2010-02-15 23:26:55 +00:00
|
|
|
|
bspfile.h, cdaudio.h, client.h, cmd.h, common.h, console.h, crc.h, cvar.h,
d_ifacea.h, draw.h, gl_texmgr.h, glquake.h, image.h, input.h, keys.h, mathlib.h,
menu.h, modelgen.h, net.h, net_dgrm.h, net_loop.h, net_sdlnet.h, net_udp.h,
net_wins.h, platform.h, pr_comp.h, progdefs.h, progs.h, protocol.h, quakedef.h,
render.h, resource.h, sbar.h, screen.h, server.h, sound.h, spritegn.h, sys.h,
vid.h, view.h, wad.h, world.h, zone.h: added include guards to the headers.
git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@84 af15c1b1-3010-417e-b628-4374ebc0bcbd
2010-02-21 00:01:08 +00:00
|
|
|
#endif /* _QUAKE_MENU_H */
|
|
|
|
|