2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
Copyright (C) 1996-1997 Id Software, Inc.
|
|
|
|
|
|
|
|
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
|
2005-11-03 23:49:49 +00:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
#include "quakedef.h"
|
|
|
|
#include "winquake.h"
|
2009-11-04 21:16:50 +00:00
|
|
|
#include "shader.h"
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2014-09-02 02:44:43 +00:00
|
|
|
m_state_t m_state;
|
2014-09-20 04:11:39 +00:00
|
|
|
qboolean menu_mousedown;
|
2014-09-02 02:44:43 +00:00
|
|
|
|
|
|
|
void M_DrawScalePic (int x, int y, int w, int h, mpic_t *pic)
|
|
|
|
{
|
|
|
|
R2D_ScalePic (x + ((vid.width - 320)>>1), y, w, h, pic);
|
|
|
|
}
|
|
|
|
void M_DrawTextBox (int x, int y, int width, int lines)
|
|
|
|
{
|
|
|
|
mpic_t *p;
|
|
|
|
int cx, cy;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
// draw left side
|
|
|
|
cx = x;
|
|
|
|
cy = y;
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_tl.lmp");
|
2015-05-14 03:06:58 +00:00
|
|
|
switch(R_GetShaderSizes(p, NULL, NULL, false))
|
|
|
|
{
|
|
|
|
case -1:
|
|
|
|
return; //still pending
|
|
|
|
case 0:
|
|
|
|
R2D_ImageColours(0.0, 0.0, 0.0, 1.0);
|
|
|
|
R2D_FillBlock(x + ((vid.width - 320)>>1), y, width*8+16, lines*8+16);
|
|
|
|
R2D_ImageColours(1.0, 1.0, 1.0, 1.0);
|
|
|
|
return;
|
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
M_DrawScalePic (cx, cy, 8, 8, p);
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_ml.lmp");
|
|
|
|
if (p)
|
|
|
|
for (n = 0; n < lines; n++)
|
|
|
|
{
|
|
|
|
cy += 8;
|
|
|
|
M_DrawScalePic (cx, cy, 8, 8, p);
|
|
|
|
}
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_bl.lmp");
|
|
|
|
if (p)
|
|
|
|
M_DrawScalePic (cx, cy+8, 8, 8, p);
|
|
|
|
|
|
|
|
// draw middle
|
|
|
|
cx += 8;
|
|
|
|
while (width > 0)
|
|
|
|
{
|
|
|
|
cy = y;
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_tm.lmp");
|
|
|
|
if (p)
|
|
|
|
M_DrawScalePic (cx, cy, 16, 8, p);
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_mm.lmp");
|
|
|
|
if (p)
|
|
|
|
for (n = 0; n < lines; n++)
|
|
|
|
{
|
|
|
|
cy += 8;
|
|
|
|
if (n == 1)
|
|
|
|
{
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_mm2.lmp");
|
|
|
|
if (!p)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
M_DrawScalePic (cx, cy, 16, 8, p);
|
|
|
|
}
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_bm.lmp");
|
|
|
|
if (p)
|
|
|
|
M_DrawScalePic (cx, cy+8, 16, 8, p);
|
|
|
|
width -= 2;
|
|
|
|
cx += 16;
|
|
|
|
}
|
|
|
|
|
|
|
|
// draw right side
|
|
|
|
cy = y;
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_tr.lmp");
|
|
|
|
if (p)
|
|
|
|
M_DrawScalePic (cx, cy, 8, 8, p);
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_mr.lmp");
|
|
|
|
if (p)
|
|
|
|
for (n = 0; n < lines; n++)
|
|
|
|
{
|
|
|
|
cy += 8;
|
|
|
|
M_DrawScalePic (cx, cy, 8, 8, p);
|
|
|
|
}
|
|
|
|
p = R2D_SafeCachePic ("gfx/box_br.lmp");
|
|
|
|
if (p)
|
|
|
|
M_DrawScalePic (cx, cy+8, 8, 8, p);
|
|
|
|
}
|
|
|
|
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
int M_FindKeysForBind (int bindmap, const char *command, int *keylist, int *keymods, int keycount)
|
2014-09-02 02:44:43 +00:00
|
|
|
{
|
|
|
|
int count;
|
2015-06-04 06:15:14 +00:00
|
|
|
int j, m;
|
|
|
|
int l, p;
|
2014-09-02 02:44:43 +00:00
|
|
|
char *b;
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
int firstmod, lastmod;
|
2014-09-02 02:44:43 +00:00
|
|
|
|
|
|
|
l = strlen(command);
|
|
|
|
count = 0;
|
|
|
|
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
if (bindmap > 0 && bindmap <= KEY_MODIFIER_ALTBINDMAP)
|
|
|
|
{
|
|
|
|
//bindmaps don't support modifiers
|
|
|
|
firstmod = (bindmap-1)|KEY_MODIFIER_ALTBINDMAP;
|
|
|
|
lastmod = firstmod+1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
firstmod = 0;
|
|
|
|
lastmod = KEY_MODIFIER_ALTBINDMAP;
|
|
|
|
}
|
|
|
|
|
2015-11-18 07:37:39 +00:00
|
|
|
for (j=0 ; j<K_MAX ; j++)
|
2014-09-02 02:44:43 +00:00
|
|
|
{
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
for (m = firstmod; m < lastmod; m++)
|
2014-09-02 02:44:43 +00:00
|
|
|
{
|
2015-06-04 06:15:14 +00:00
|
|
|
b = keybindings[j][m];
|
|
|
|
if (!b)
|
|
|
|
continue;
|
|
|
|
if (!strncmp (b, command, l) && (!b[l] || b[l] == ' ' || b[l] == ';'))
|
|
|
|
{
|
|
|
|
//if ctrl_a and ctrl_shift_a do the same thing, don't report ctrl_shift_a because its redundant.
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
for (p = firstmod; p < m; p++)
|
2015-06-04 06:15:14 +00:00
|
|
|
{
|
|
|
|
if (p&~m) //ignore shift_a if we're checking ctrl_a
|
|
|
|
continue;
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
if (keybindings[j][p] && !strcmp(keybindings[j][p], b))
|
2015-06-04 06:15:14 +00:00
|
|
|
break; //break+continue
|
|
|
|
}
|
|
|
|
if (p != m)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
keylist[count] = j;
|
|
|
|
if (keymods)
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
keymods[count] = m;
|
2015-06-04 06:15:14 +00:00
|
|
|
count++;
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
if (count == keycount)
|
2015-06-04 06:15:14 +00:00
|
|
|
return count;
|
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
}
|
|
|
|
}
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
for (j = count; j < keycount; j++)
|
2015-06-04 06:15:14 +00:00
|
|
|
{
|
|
|
|
keylist[j] = -1;
|
|
|
|
if (keymods)
|
|
|
|
keymods[j] = 0;
|
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
return count;
|
|
|
|
}
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
int M_FindKeysForCommand (int bindmap, int pnum, const char *command, int *keylist, int *keymods, int keycount)
|
2014-09-02 02:44:43 +00:00
|
|
|
{
|
|
|
|
char prefix[5];
|
|
|
|
|
|
|
|
if (*command == '+' || *command == '-')
|
|
|
|
{
|
|
|
|
prefix[0] = *command;
|
|
|
|
prefix[1] = 0;
|
|
|
|
if (pnum != 0)
|
|
|
|
{
|
|
|
|
prefix[1] = 'p';
|
|
|
|
prefix[2] = '0'+pnum;
|
|
|
|
prefix[3] = ' ';
|
|
|
|
prefix[4] = 0;
|
|
|
|
}
|
|
|
|
command++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
prefix[0] = 0;
|
|
|
|
if (pnum != 0)
|
|
|
|
{
|
|
|
|
prefix[0] = 'p';
|
|
|
|
prefix[1] = '0'+pnum;
|
|
|
|
prefix[2] = ' ';
|
|
|
|
prefix[3] = 0;
|
|
|
|
}
|
|
|
|
}
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
return M_FindKeysForBind(bindmap, va("%s%s", prefix, command), keylist, keymods, keycount);
|
2014-09-02 02:44:43 +00:00
|
|
|
}
|
|
|
|
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2014-09-02 02:44:43 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
void M_Menu_Audio_f (void);
|
|
|
|
void M_Menu_Demos_f (void);
|
2014-03-30 08:55:06 +00:00
|
|
|
void M_Menu_Mods_f (void);
|
|
|
|
void M_Menu_ModelViewer_f(void);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
extern menu_t *menu_script;
|
|
|
|
|
|
|
|
qboolean m_recursiveDraw;
|
|
|
|
|
|
|
|
void M_ConfigureNetSubsystem(void);
|
|
|
|
|
2006-02-11 02:09:43 +00:00
|
|
|
cvar_t m_helpismedia = SCVAR("m_helpismedia", "0");
|
2012-04-24 07:59:11 +00:00
|
|
|
cvar_t m_preset_chosen = CVARF("m_preset_chosen", "0", CVAR_ARCHIVE);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/* Support Routines */
|
|
|
|
|
|
|
|
void M_Print (int cx, int cy, qbyte *str)
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Draw_AltFunString(cx + ((vid.width - 320)>>1), cy, str);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
void M_PrintWhite (int cx, int cy, qbyte *str)
|
|
|
|
{
|
2009-11-04 21:16:50 +00:00
|
|
|
Draw_FunString(cx + ((vid.width - 320)>>1), cy, str);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2014-10-11 19:39:45 +00:00
|
|
|
void M_BuildTranslationTable(unsigned int pc, unsigned int top, unsigned int bottom, unsigned int *translationTable)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
int j;
|
2014-09-17 03:04:08 +00:00
|
|
|
#ifdef HEXEN2
|
2010-08-28 17:14:38 +00:00
|
|
|
if (h2playertranslations && pc)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
unsigned int color_offsets[5] = {2*14*256,0,1*14*256,2*14*256,2*14*256};
|
|
|
|
unsigned char *colorA, *colorB, *sourceA, *sourceB;
|
|
|
|
colorA = h2playertranslations + 256 + color_offsets[pc-1];
|
|
|
|
colorB = colorA + 256;
|
|
|
|
sourceA = colorB + (top * 256);
|
|
|
|
sourceB = colorB + (bottom * 256);
|
2014-03-30 08:55:06 +00:00
|
|
|
for(i=0;i<255;i++)
|
2010-08-28 17:14:38 +00:00
|
|
|
{
|
2011-05-19 13:34:07 +00:00
|
|
|
if (bottom > 0 && (colorB[i] != 255))
|
2014-10-11 19:39:45 +00:00
|
|
|
{
|
|
|
|
if (bottom >= 16)
|
|
|
|
{
|
|
|
|
unsigned int v = d_8to24rgbtable[colorB[i]];
|
|
|
|
v = max(max((v>>0)&0xff, (v>>8)&0xff), (v>>16)&0xff);
|
|
|
|
*((unsigned char*)&translationTable[i]+0) = (((bottom&0xff0000)>>16)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+1) = (((bottom&0x00ff00)>> 8)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+2) = (((bottom&0x0000ff)>> 0)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+3) = 0xff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
translationTable[i] = d_8to24rgbtable[sourceB[i]] | 0xff000000;
|
|
|
|
}
|
2011-05-19 13:34:07 +00:00
|
|
|
else if (top > 0 && (colorA[i] != 255))
|
2014-10-11 19:39:45 +00:00
|
|
|
{
|
|
|
|
if (top >= 16)
|
|
|
|
{
|
|
|
|
unsigned int v = d_8to24rgbtable[colorA[i]];
|
|
|
|
v = max(max((v>>0)&0xff, (v>>8)&0xff), (v>>16)&0xff);
|
|
|
|
*((unsigned char*)&translationTable[i]+0) = (((top&0xff0000)>>16)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+1) = (((top&0x00ff00)>> 8)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+2) = (((top&0x0000ff)>> 0)*v)>>8;
|
|
|
|
*((unsigned char*)&translationTable[i]+3) = 0xff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
translationTable[i] = d_8to24rgbtable[sourceA[i]] | 0xff000000;
|
|
|
|
}
|
2010-08-28 17:14:38 +00:00
|
|
|
else
|
2014-03-30 08:55:06 +00:00
|
|
|
translationTable[i] = d_8to24rgbtable[i] | 0xff000000;
|
2010-08-28 17:14:38 +00:00
|
|
|
}
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
else
|
2014-09-17 03:04:08 +00:00
|
|
|
#endif
|
2010-08-28 17:14:38 +00:00
|
|
|
{
|
2014-03-30 08:55:06 +00:00
|
|
|
for(j=0;j<255;j++)
|
|
|
|
{
|
|
|
|
if (j >= TOP_RANGE && j < TOP_RANGE + (1<<4))
|
|
|
|
{
|
|
|
|
if (top >= 16)
|
|
|
|
{
|
|
|
|
*((unsigned char*)&translationTable[j]+0) = (((top&0xff0000)>>16)**((unsigned char*)&d_8to24rgbtable[j&15]+0))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+1) = (((top&0x00ff00)>> 8)**((unsigned char*)&d_8to24rgbtable[j&15]+1))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+2) = (((top&0x0000ff)>> 0)**((unsigned char*)&d_8to24rgbtable[j&15]+2))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+3) = 0xff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
translationTable[j] = d_8to24rgbtable[top<8?j-TOP_RANGE+(top<<4):(top<<4)+15-(j-TOP_RANGE)] | 0xff000000;
|
|
|
|
}
|
|
|
|
else if (j >= BOTTOM_RANGE && j < BOTTOM_RANGE + (1<<4))
|
|
|
|
{
|
|
|
|
if (bottom >= 16)
|
|
|
|
{
|
|
|
|
*((unsigned char*)&translationTable[j]+0) = (((bottom&0xff0000)>>16)**((unsigned char*)&d_8to24rgbtable[j&15]+0))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+1) = (((bottom&0x00ff00)>> 8)**((unsigned char*)&d_8to24rgbtable[j&15]+1))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+2) = (((bottom&0x0000ff)>> 0)**((unsigned char*)&d_8to24rgbtable[j&15]+2))>>8;
|
|
|
|
*((unsigned char*)&translationTable[j]+3) = 0xff;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
translationTable[j] = d_8to24rgbtable[bottom<8?j-BOTTOM_RANGE+(bottom<<4):(bottom<<4)+15-(j-BOTTOM_RANGE)] | 0xff000000;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
translationTable[j] = d_8to24rgbtable[j] | 0xff000000;
|
|
|
|
}
|
2010-08-28 17:14:38 +00:00
|
|
|
}
|
2014-03-30 08:55:06 +00:00
|
|
|
translationTable[255] = 0; //alpha
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
|
|
|
|
int m_save_demonum;
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2009-07-14 15:04:32 +00:00
|
|
|
void M_CloseMenu_f (void)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
if (!Key_Dest_Has(kdm_emenu))
|
2009-07-14 15:04:32 +00:00
|
|
|
return;
|
2015-07-14 14:47:00 +00:00
|
|
|
M_RemoveAllMenus(false);
|
|
|
|
Key_Dest_Remove(kdm_emenu);
|
2009-07-14 15:04:32 +00:00
|
|
|
m_state = m_none;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
/*
|
|
|
|
================
|
|
|
|
M_ToggleMenu_f
|
|
|
|
================
|
|
|
|
*/
|
|
|
|
void M_ToggleMenu_f (void)
|
|
|
|
{
|
2008-11-09 22:29:28 +00:00
|
|
|
if (m_state)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2008-11-09 22:29:28 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-03-12 22:53:23 +00:00
|
|
|
#ifdef CSQC_DAT
|
|
|
|
if (CSQC_ConsoleCommand("togglemenu"))
|
2013-04-13 08:15:18 +00:00
|
|
|
{
|
2015-04-27 06:19:33 +00:00
|
|
|
Key_Dest_Remove(kdm_console|kdm_cwindows);
|
2013-03-12 22:53:23 +00:00
|
|
|
return;
|
2013-04-13 08:15:18 +00:00
|
|
|
}
|
2013-03-12 22:53:23 +00:00
|
|
|
#endif
|
2004-11-29 01:21:00 +00:00
|
|
|
#ifdef MENU_DAT
|
2015-07-27 08:21:34 +00:00
|
|
|
if (MP_Toggle(1))
|
2015-04-27 06:19:33 +00:00
|
|
|
{
|
|
|
|
Key_Dest_Remove(kdm_console|kdm_cwindows);
|
2004-11-23 01:10:10 +00:00
|
|
|
return;
|
2015-04-27 06:19:33 +00:00
|
|
|
}
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|
2009-11-04 21:16:50 +00:00
|
|
|
#ifdef VM_UI
|
|
|
|
if (UI_OpenMenu())
|
|
|
|
return;
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2013-10-08 14:28:11 +00:00
|
|
|
//it IS a toggle, so close the menu if its already active
|
2015-07-14 14:47:00 +00:00
|
|
|
if (Key_Dest_Has(kdm_emenu))
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Remove(kdm_emenu);
|
2004-08-23 00:15:46 +00:00
|
|
|
m_state = m_none;
|
|
|
|
return;
|
|
|
|
}
|
2015-04-27 06:19:33 +00:00
|
|
|
if (Key_Dest_Has(kdm_console|kdm_cwindows))
|
|
|
|
Key_Dest_Remove(kdm_console|kdm_cwindows);
|
2014-05-16 01:34:58 +00:00
|
|
|
/*
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
if (cls.state != ca_active)
|
2013-10-08 16:13:18 +00:00
|
|
|
{
|
|
|
|
Key_Dest_Remove(kdm_console);
|
2004-08-23 00:15:46 +00:00
|
|
|
M_Menu_Main_f();
|
2013-10-08 16:13:18 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
else
|
2013-08-21 07:14:39 +00:00
|
|
|
Con_ToggleConsole_Force ();
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2014-05-16 01:34:58 +00:00
|
|
|
else*/
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
M_Menu_Main_f ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/* KEYS MENU */
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
char *command;
|
|
|
|
char *name;
|
|
|
|
} bindnames_t;
|
|
|
|
|
|
|
|
bindnames_t qwbindnames[] =
|
|
|
|
{
|
2006-01-28 06:41:20 +00:00
|
|
|
{"+attack", "attack "},
|
|
|
|
{"impulse 10", "change weapon "},
|
|
|
|
{"impulse 12", "prev weapon "},
|
2004-08-23 00:15:46 +00:00
|
|
|
{"+jump", "jump / swim up"},
|
2006-01-28 06:41:20 +00:00
|
|
|
{"+forward", "walk forward "},
|
|
|
|
{"+back", "backpedal "},
|
|
|
|
{"+left", "turn left "},
|
|
|
|
{"+right", "turn right "},
|
|
|
|
{"+speed", "run "},
|
|
|
|
{"+moveleft", "step left "},
|
|
|
|
{"+moveright", "step right "},
|
|
|
|
{"+strafe", "sidestep "},
|
|
|
|
{"+lookup", "look up "},
|
|
|
|
{"+lookdown", "look down "},
|
|
|
|
{"centerview", "center view "},
|
|
|
|
{"+mlook", "mouse look "},
|
|
|
|
{"+klook", "keyboard look "},
|
|
|
|
{"+moveup", "swim up "},
|
|
|
|
{"+movedown", "swim down "},
|
2011-01-04 02:56:16 +00:00
|
|
|
#ifdef VOICECHAT
|
|
|
|
{"+voip", "voice chat "},
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef Q2CLIENT
|
|
|
|
bindnames_t q2bindnames[] =
|
|
|
|
{
|
2006-01-28 06:41:20 +00:00
|
|
|
{"+attack", "attack "},
|
|
|
|
{"cmd weapnext", "next weapon "},
|
|
|
|
{"+forward", "walk forward "},
|
|
|
|
{"+back", "backpedal "},
|
|
|
|
{"+left", "turn left "},
|
|
|
|
{"+right", "turn right "},
|
|
|
|
{"+speed", "run "},
|
|
|
|
{"+moveleft", "step left "},
|
|
|
|
{"+moveright", "step right "},
|
|
|
|
{"+strafe", "sidestep "},
|
|
|
|
{"+lookup", "look up "},
|
|
|
|
{"+lookdown", "look down "},
|
|
|
|
{"centerview", "center view "},
|
|
|
|
{"+mlook", "mouse look "},
|
|
|
|
{"+klook", "keyboard look "},
|
|
|
|
{"+moveup", "up / jump "},
|
|
|
|
{"+movedown", "down / crouch "},
|
|
|
|
|
|
|
|
{"cmd inven", "inventory "},
|
|
|
|
{"cmd invuse", "use item "},
|
|
|
|
{"cmd invdrop", "drop item "},
|
|
|
|
{"cmd invprev", "prev item "},
|
|
|
|
{"cmd invnext", "next item "},
|
|
|
|
|
|
|
|
{"cmd help", "help computer "},
|
2004-08-23 00:15:46 +00:00
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2007-05-25 22:16:29 +00:00
|
|
|
|
|
|
|
bindnames_t h2bindnames[] =
|
|
|
|
{
|
|
|
|
{"+attack", "attack "},
|
|
|
|
{"impulse 10", "change weapon "},
|
|
|
|
{"+jump", "jump / swim up"},
|
|
|
|
{"+forward", "walk forward "},
|
|
|
|
{"+back", "backpedal "},
|
|
|
|
{"+left", "turn left "},
|
|
|
|
{"+right", "turn right "},
|
|
|
|
{"+speed", "run "},
|
|
|
|
{"+moveleft", "step left "},
|
|
|
|
{"+moveright", "step right "},
|
|
|
|
{"+strafe", "sidestep "},
|
|
|
|
{"+crouch", "crouch "},
|
|
|
|
{"+lookup", "look up "},
|
|
|
|
{"+lookdown", "look down "},
|
|
|
|
{"centerview", "center view "},
|
|
|
|
{"+mlook", "mouse look "},
|
|
|
|
{"+klook", "keyboard look "},
|
|
|
|
{"+moveup", "swim up "},
|
|
|
|
{"+movedown", "swim down "},
|
|
|
|
{"impulse 13", "lift object "},
|
|
|
|
{"invuse", "use inv item "},
|
|
|
|
{"impulse 44", "drop inv item "},
|
|
|
|
{"+showinfo", "full inventory"},
|
|
|
|
{"+showdm", "info / frags "},
|
|
|
|
//{"toggle_dm", "toggle frags "},
|
2010-08-16 02:03:02 +00:00
|
|
|
{"+infoplaque", "objectives "}, //requires pulling info out of the mod... on the client.
|
2007-05-25 22:16:29 +00:00
|
|
|
{"invleft", "inv move left "},
|
|
|
|
{"invright", "inv move right"},
|
|
|
|
{"impulse 100", "inv:torch "},
|
|
|
|
{"impulse 101", "inv:qrtz flask"},
|
|
|
|
{"impulse 102", "inv:mystic urn"},
|
|
|
|
{"impulse 103", "inv:krater "},
|
|
|
|
{"impulse 104", "inv:chaos devc"},
|
|
|
|
{"impulse 105", "inv:tome power"},
|
|
|
|
{"impulse 106", "inv:summon stn"},
|
|
|
|
{"impulse 107", "inv:invisiblty"},
|
|
|
|
{"impulse 108", "inv:glyph "},
|
|
|
|
{"impulse 109", "inv:boots "},
|
|
|
|
{"impulse 110", "inv:repulsion "},
|
|
|
|
{"impulse 111", "inv:bo peep "},
|
|
|
|
{"impulse 112", "inv:flight "},
|
|
|
|
{"impulse 113", "inv:force cube"},
|
|
|
|
{"impulse 114", "inv:icon defn "},
|
2011-01-04 02:56:16 +00:00
|
|
|
#ifdef VOICECHAT
|
|
|
|
{"+voip", "voice chat "},
|
|
|
|
#endif
|
2007-05-25 22:16:29 +00:00
|
|
|
{NULL}
|
|
|
|
};
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
bindnames_t *bindnames;
|
|
|
|
int numbindnames;
|
|
|
|
|
|
|
|
int keys_cursor;
|
|
|
|
int bind_grab;
|
|
|
|
|
|
|
|
void M_Menu_Keys_f (void)
|
2006-01-28 06:41:20 +00:00
|
|
|
{
|
|
|
|
int y;
|
|
|
|
menu_t *menu;
|
2014-05-10 13:42:13 +00:00
|
|
|
vfsfile_t *bindslist;
|
2006-01-29 00:50:13 +00:00
|
|
|
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2006-01-28 06:41:20 +00:00
|
|
|
m_state = m_complex;
|
|
|
|
|
|
|
|
menu = M_CreateMenu(0);
|
2014-10-05 20:04:11 +00:00
|
|
|
switch(M_GameType())
|
2010-08-16 02:03:02 +00:00
|
|
|
{
|
2014-10-05 20:04:11 +00:00
|
|
|
#ifdef Q2CLIENT
|
|
|
|
case MGT_QUAKE2:
|
|
|
|
//fixme: no art?
|
2010-08-16 02:03:02 +00:00
|
|
|
y = 48;
|
2006-01-28 06:41:20 +00:00
|
|
|
bindnames = q2bindnames;
|
2014-10-05 20:04:11 +00:00
|
|
|
break;
|
2006-01-28 06:41:20 +00:00
|
|
|
#endif
|
2014-10-05 20:04:11 +00:00
|
|
|
#ifdef HEXEN2
|
|
|
|
case MGT_HEXEN2:
|
2010-08-16 02:03:02 +00:00
|
|
|
MC_AddCenterPicture(menu, 0, 60, "gfx/menu/title6.lmp");
|
|
|
|
y = 64;
|
2007-05-25 22:16:29 +00:00
|
|
|
bindnames = h2bindnames;
|
2014-10-05 20:04:11 +00:00
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
2010-08-16 02:03:02 +00:00
|
|
|
MC_AddCenterPicture(menu, 4, 24, "gfx/ttl_cstm.lmp");
|
|
|
|
y = 48;
|
2006-01-28 06:41:20 +00:00
|
|
|
bindnames = qwbindnames;
|
2014-10-05 20:04:11 +00:00
|
|
|
break;
|
2010-08-16 02:03:02 +00:00
|
|
|
}
|
|
|
|
|
2015-03-03 00:14:43 +00:00
|
|
|
if (cl_forceseat.ival)
|
2010-08-16 02:03:02 +00:00
|
|
|
{
|
|
|
|
static char *texts[MAX_SPLITS+2] =
|
|
|
|
{
|
|
|
|
"Depends on device",
|
|
|
|
"Player 1",
|
|
|
|
"Player 2",
|
|
|
|
"Player 3",
|
|
|
|
"Player 4",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
static char *values[MAX_SPLITS+1] =
|
|
|
|
{
|
|
|
|
"0",
|
|
|
|
"1",
|
|
|
|
"2",
|
|
|
|
"3",
|
|
|
|
"4"
|
|
|
|
};
|
2015-03-03 00:14:43 +00:00
|
|
|
MC_AddCvarCombo(menu, 16, 170, y, "Force client", &cl_forceseat, (const char **)texts, (const char **)values);
|
2010-08-16 02:03:02 +00:00
|
|
|
y+=8;
|
|
|
|
}
|
2006-01-28 06:41:20 +00:00
|
|
|
|
2014-05-10 13:42:13 +00:00
|
|
|
bindslist = FS_OpenVFS("bindlist.lst", "rb", FS_GAME);
|
|
|
|
if (bindslist)
|
|
|
|
{
|
|
|
|
char line[1024];
|
|
|
|
while(VFS_GETS(bindslist, line, sizeof(line)))
|
|
|
|
{
|
2014-05-10 17:26:41 +00:00
|
|
|
char *cmd, *desc, *tip;
|
2014-05-10 13:42:13 +00:00
|
|
|
Cmd_TokenizeString(line, false, false);
|
2014-05-10 17:26:41 +00:00
|
|
|
cmd = Cmd_Argv(0);
|
|
|
|
desc = Cmd_Argv(1);
|
|
|
|
tip = Cmd_Argv(2);
|
|
|
|
if (*cmd)
|
|
|
|
{
|
|
|
|
if (strcmp(cmd, "-")) //lines with a command of "-" are spacers/comments.
|
|
|
|
MC_AddBind(menu, (320-(int)vid.width)/2, 170, y, desc, cmd, tip);
|
|
|
|
else if (*desc)
|
|
|
|
MC_AddRedText(menu, (320-(int)vid.width)/2, 170, y, desc, true);
|
|
|
|
y += 8;
|
|
|
|
}
|
2014-05-10 13:42:13 +00:00
|
|
|
}
|
|
|
|
VFS_CLOSE(bindslist);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-01-28 06:41:20 +00:00
|
|
|
while (bindnames->name)
|
|
|
|
{
|
2014-05-10 17:26:41 +00:00
|
|
|
MC_AddBind(menu, 16, 170, y, bindnames->name, bindnames->command, NULL);
|
2006-01-28 06:41:20 +00:00
|
|
|
y += 8;
|
|
|
|
|
|
|
|
bindnames++;
|
|
|
|
}
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
void M_UnbindCommand (const char *command)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
int j;
|
|
|
|
int l;
|
|
|
|
char *b;
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
int m;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
l = strlen(command);
|
|
|
|
|
|
|
|
for (j=0 ; j<256 ; j++)
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
{ //FIXME: not sure what to do about bindmaps here. oh well.
|
|
|
|
for (m = 0; m < KEY_MODIFIERSTATES; m++)
|
|
|
|
{
|
|
|
|
b = keybindings[j][m];
|
|
|
|
if (!b)
|
|
|
|
continue;
|
|
|
|
if (!strncmp (b, command, l) )
|
|
|
|
Key_SetBinding (j, m, "", RESTRICT_LOCAL);
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/* HELP MENU */
|
|
|
|
|
|
|
|
int help_page;
|
|
|
|
int num_help_pages;
|
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
char *pattern;
|
|
|
|
int base;
|
|
|
|
} helpstyles[] =
|
|
|
|
{
|
|
|
|
{"gfx/help%i.dxt",0}, //quake extended
|
|
|
|
{"gfx/help%i.tga",0}, //quake extended
|
|
|
|
{"gfx/help%i.png",0}, //quake extended
|
|
|
|
{"gfx/help%i.jpeg",0}, //quake extended
|
|
|
|
{"gfx/help%i.lmp",0}, //quake
|
|
|
|
{"gfx/menu/help%02i.lmp",1} //hexen2
|
|
|
|
};
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
void M_Menu_Help_f (void)
|
2005-11-03 23:49:49 +00:00
|
|
|
{
|
2014-03-30 08:55:06 +00:00
|
|
|
int i;
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2004-08-23 00:15:46 +00:00
|
|
|
m_state = m_help;
|
|
|
|
help_page = 0;
|
|
|
|
|
2013-03-12 22:35:33 +00:00
|
|
|
num_help_pages = 1;
|
|
|
|
while(num_help_pages < 100)
|
|
|
|
{
|
2014-03-30 08:55:06 +00:00
|
|
|
for (i = 0; i < sizeof(helpstyles)/sizeof(helpstyles[0]); i++)
|
|
|
|
{
|
2014-08-27 08:41:31 +00:00
|
|
|
if (COM_FCheckExists(va(helpstyles[i].pattern, num_help_pages+helpstyles[i].base)))
|
2014-03-30 08:55:06 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (i == sizeof(helpstyles)/sizeof(helpstyles[0]))
|
2013-03-12 22:35:33 +00:00
|
|
|
break;
|
|
|
|
num_help_pages++;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void M_Help_Draw (void)
|
|
|
|
{
|
2014-03-30 08:55:06 +00:00
|
|
|
int i;
|
|
|
|
mpic_t *pic = NULL;
|
|
|
|
for (i = 0; i < sizeof(helpstyles)/sizeof(helpstyles[0]) && !pic; i++)
|
2014-10-05 20:04:11 +00:00
|
|
|
{
|
2014-03-30 08:55:06 +00:00
|
|
|
pic = R2D_SafeCachePic(va(helpstyles[i].pattern, help_page+helpstyles[i].base));
|
2014-10-05 20:04:11 +00:00
|
|
|
if (R_GetShaderSizes(pic, NULL, NULL, true) <= 0)
|
|
|
|
pic = NULL;
|
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
if (!pic)
|
|
|
|
M_Menu_Main_f ();
|
|
|
|
else
|
2009-11-04 21:16:50 +00:00
|
|
|
M_DrawScalePic (0, 0, 320, 200, pic);
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void M_Help_Key (int key)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case K_ESCAPE:
|
2014-08-27 08:41:31 +00:00
|
|
|
case K_MOUSE2:
|
2004-08-23 00:15:46 +00:00
|
|
|
M_Menu_Main_f ();
|
|
|
|
break;
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
case K_UPARROW:
|
|
|
|
case K_RIGHTARROW:
|
2014-08-27 08:41:31 +00:00
|
|
|
case K_MOUSE1:
|
2006-01-01 09:01:15 +00:00
|
|
|
S_LocalSound ("misc/menu2.wav");
|
2004-08-23 00:15:46 +00:00
|
|
|
if (++help_page >= num_help_pages)
|
|
|
|
help_page = 0;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case K_DOWNARROW:
|
|
|
|
case K_LEFTARROW:
|
2006-01-01 09:01:15 +00:00
|
|
|
S_LocalSound ("misc/menu2.wav");
|
2004-08-23 00:15:46 +00:00
|
|
|
if (--help_page < 0)
|
|
|
|
help_page = num_help_pages-1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-05-31 01:19:26 +00:00
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/* Various callback-based prompts */
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
menu_t m;
|
|
|
|
void (*callback)(void *, int);
|
|
|
|
void *ctx;
|
|
|
|
menubutton_t *b_yes;
|
|
|
|
menubutton_t *b_no;
|
|
|
|
menubutton_t *b_cancel;
|
|
|
|
} promptmenu_t;
|
|
|
|
static qboolean M_Menu_Prompt_Button (union menuoption_s *b,struct menu_s *gm, int key)
|
|
|
|
{
|
|
|
|
int action;
|
|
|
|
promptmenu_t *m = (promptmenu_t*)gm;
|
2015-01-21 18:18:37 +00:00
|
|
|
void (*callback)(void *, int) = m->callback;
|
|
|
|
void *ctx = m->ctx;
|
2013-05-31 01:19:26 +00:00
|
|
|
|
|
|
|
if (key != K_ENTER && key != K_KP_ENTER && key != K_MOUSE1)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (b == (menuoption_t*)m->b_yes)
|
|
|
|
action = 0;
|
|
|
|
else if (b == (menuoption_t*)m->b_no)
|
|
|
|
action = 1;
|
|
|
|
else //if (b == (menuoption_t*)m->b_cancel)
|
|
|
|
action = -1;
|
|
|
|
m->callback = NULL;
|
|
|
|
|
|
|
|
M_RemoveMenu(&m->m);
|
2015-01-21 18:18:37 +00:00
|
|
|
|
|
|
|
if (callback)
|
|
|
|
callback(ctx, action);
|
2013-05-31 01:19:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
static void M_Menu_Prompt_Cancel (struct menu_s *gm)
|
|
|
|
{
|
|
|
|
promptmenu_t *m = (promptmenu_t*)gm;
|
2015-01-21 18:18:37 +00:00
|
|
|
void (*callback)(void *, int) = m->callback;
|
|
|
|
void *ctx = m->ctx;
|
2013-05-31 01:19:26 +00:00
|
|
|
m->callback = NULL;
|
2015-01-21 18:18:37 +00:00
|
|
|
|
|
|
|
if (callback)
|
|
|
|
callback(ctx, -1);
|
2013-05-31 01:19:26 +00:00
|
|
|
}
|
|
|
|
void M_Menu_Prompt (void (*callback)(void *, int), void *ctx, char *m1, char *m2, char *m3, char *optionyes, char *optionno, char *optioncancel)
|
|
|
|
{
|
|
|
|
promptmenu_t *m;
|
2013-06-29 16:01:07 +00:00
|
|
|
char *t;
|
2013-05-31 01:19:26 +00:00
|
|
|
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2013-05-31 01:19:26 +00:00
|
|
|
m_state = m_complex;
|
|
|
|
|
2013-06-29 16:01:07 +00:00
|
|
|
m = (promptmenu_t*)M_CreateMenuInfront(sizeof(*m) - sizeof(m->m) + strlen(m1)+strlen(m2)+strlen(m3)+strlen(optionyes)+strlen(optionyes)+strlen(optioncancel)+6);
|
2013-05-31 01:19:26 +00:00
|
|
|
m->callback = callback;
|
|
|
|
m->ctx = ctx;
|
|
|
|
m->m.remove = M_Menu_Prompt_Cancel;
|
|
|
|
|
2013-06-29 16:01:07 +00:00
|
|
|
t = (char*)(m+1);
|
|
|
|
strcpy(t, m1);
|
|
|
|
m1 = t;
|
|
|
|
t += strlen(t)+1;
|
|
|
|
strcpy(t, m2);
|
|
|
|
m2 = t;
|
|
|
|
t += strlen(t)+1;
|
|
|
|
strcpy(t, m3);
|
|
|
|
m3 = t;
|
|
|
|
t += strlen(t)+1;
|
|
|
|
strcpy(t, optionyes);
|
|
|
|
optionyes = t;
|
|
|
|
t += strlen(t)+1;
|
|
|
|
strcpy(t, optionno);
|
|
|
|
optionno = t;
|
|
|
|
t += strlen(t)+1;
|
|
|
|
strcpy(t, optioncancel);
|
|
|
|
optioncancel = t;
|
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
MC_AddWhiteText(&m->m, 64, 0, 84, m1, false);
|
|
|
|
MC_AddWhiteText(&m->m, 64, 0, 92, m2, false);
|
|
|
|
MC_AddWhiteText(&m->m, 64, 0, 100, m3, false);
|
2013-05-31 01:19:26 +00:00
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
m->b_yes = MC_AddCommand(&m->m, 64, 0, 116, optionyes, M_Menu_Prompt_Button);
|
|
|
|
m->b_no = MC_AddCommand(&m->m, 144,0, 116, optionno, M_Menu_Prompt_Button);
|
|
|
|
m->b_cancel = MC_AddCommand(&m->m, 224,0, 116, optioncancel, M_Menu_Prompt_Button);
|
2013-05-31 01:19:26 +00:00
|
|
|
|
|
|
|
m->m.selecteditem = (menuoption_t *)m->b_cancel;
|
|
|
|
|
|
|
|
MC_AddBox (&m->m, 56, 76, 25, 5);
|
|
|
|
}
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
//=============================================================================
|
|
|
|
/* QUIT MENU */
|
|
|
|
|
|
|
|
int msgNumber;
|
|
|
|
int m_quit_prevstate;
|
|
|
|
qboolean wasInMenus;
|
|
|
|
|
2005-11-03 23:49:49 +00:00
|
|
|
char *quitMessage [] =
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
/* .........1.........2.... */
|
|
|
|
" Are you gonna quit ",
|
|
|
|
" this game just like ",
|
|
|
|
" everything else? ",
|
|
|
|
" ",
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
" Milord, methinks that ",
|
|
|
|
" thou art a lowly ",
|
|
|
|
" quitter. Is this true? ",
|
|
|
|
" ",
|
|
|
|
|
|
|
|
" Do I need to bust your ",
|
|
|
|
" face open for trying ",
|
|
|
|
" to quit? ",
|
|
|
|
" ",
|
|
|
|
|
|
|
|
" Man, I oughta smack you",
|
|
|
|
" for trying to quit! ",
|
|
|
|
" Press Y to get ",
|
|
|
|
" smacked out. ",
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
" Press Y to quit like a ",
|
|
|
|
" big loser in life. ",
|
|
|
|
" Press N to stay proud ",
|
|
|
|
" and successful! ",
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
" If you press Y to ",
|
|
|
|
" quit, I will summon ",
|
|
|
|
" Satan all over your ",
|
|
|
|
" hard drive! ",
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
" Um, Asmodeus dislikes ",
|
|
|
|
" his children trying to ",
|
|
|
|
" quit. Press Y to return",
|
|
|
|
" to your Tinkertoys. ",
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
" If you quit now, I'll ",
|
|
|
|
" throw a blanket-party ",
|
|
|
|
" for you next time! ",
|
|
|
|
" "
|
|
|
|
};
|
|
|
|
/*
|
|
|
|
void OldM_Menu_Quit_f (void)
|
|
|
|
{
|
|
|
|
if (m_state == m_quit)
|
|
|
|
return;
|
|
|
|
wasInMenus = (key_dest == key_menu);
|
|
|
|
key_dest = key_menu;
|
|
|
|
m_quit_prevstate = m_state;
|
|
|
|
m_state = m_quit;
|
|
|
|
m_entersound = true;
|
|
|
|
msgNumber = rand()&7;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void M_Quit_Key (int key)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case K_ESCAPE:
|
|
|
|
case 'n':
|
|
|
|
case 'N':
|
|
|
|
if (wasInMenus)
|
|
|
|
{
|
|
|
|
m_state = m_quit_prevstate;
|
|
|
|
m_entersound = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
key_dest = key_game;
|
|
|
|
m_state = m_none;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Y':
|
|
|
|
case 'y':
|
|
|
|
key_dest = key_console;
|
|
|
|
CL_Disconnect ();
|
|
|
|
Sys_Quit ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void M_Quit_Draw (void)
|
|
|
|
{
|
|
|
|
#define VSTR(x) #x
|
|
|
|
#define VSTR2(x) VSTR(x)
|
|
|
|
char *cmsg[] = {
|
|
|
|
// 0123456789012345678901234567890123456789
|
|
|
|
"0 QuakeWorld",
|
|
|
|
"1 version " VSTR2(VERSION),
|
|
|
|
"1modified by Forethought Entertainment",
|
2005-11-03 23:49:49 +00:00
|
|
|
"0Based on QuakeWorld Version 2.40",
|
2004-08-23 00:15:46 +00:00
|
|
|
"1",
|
|
|
|
"0Additional Programming",
|
|
|
|
"1 David Walton",
|
|
|
|
"1",
|
|
|
|
"0Id Software is not responsible for",
|
|
|
|
"0providing technical support for",
|
|
|
|
"0QUAKEWORLD(tm). (c)1996 Id Software,",
|
|
|
|
"0Inc. All Rights Reserved.",
|
|
|
|
"0QUAKEWORLD(tm) is a trademark of Id",
|
|
|
|
"0Software, Inc.",
|
|
|
|
"1NOTICE: THE COPYRIGHT AND TRADEMARK",
|
|
|
|
"1NOTICES APPEARING IN YOUR COPY OF",
|
|
|
|
"1QUAKE(r) ARE NOT MODIFIED BY THE USE",
|
|
|
|
"1OF QUAKEWORLD(tm) AND REMAIN IN FULL",
|
|
|
|
"1FORCE.",
|
|
|
|
"0NIN(r) is a registered trademark",
|
|
|
|
"0licensed to Nothing Interactive, Inc.",
|
|
|
|
"0All rights reserved. Press y to exit",
|
|
|
|
NULL };
|
|
|
|
char **p;
|
|
|
|
int y;
|
|
|
|
|
|
|
|
if (wasInMenus)
|
|
|
|
{
|
|
|
|
m_state = m_quit_prevstate;
|
|
|
|
m_recursiveDraw = true;
|
|
|
|
M_Draw ();
|
|
|
|
m_state = m_quit;
|
|
|
|
}
|
|
|
|
#if 1
|
|
|
|
M_DrawTextBox (0, 0, 38, 23);
|
|
|
|
y = 12;
|
|
|
|
for (p = cmsg; *p; p++, y += 8) {
|
|
|
|
if (**p == '0')
|
|
|
|
M_PrintWhite (16, y, *p + 1);
|
|
|
|
else
|
|
|
|
M_Print (16, y, *p + 1);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
M_DrawTextBox (56, 76, 24, 4);
|
|
|
|
M_Print (64, 84, quitMessage[msgNumber*4+0]);
|
|
|
|
M_Print (64, 92, quitMessage[msgNumber*4+1]);
|
|
|
|
M_Print (64, 100, quitMessage[msgNumber*4+2]);
|
|
|
|
M_Print (64, 108, quitMessage[msgNumber*4+3]);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
qboolean MC_Quit_Key (int key, menu_t *menu)
|
|
|
|
{
|
|
|
|
switch (key)
|
|
|
|
{
|
|
|
|
case K_ESCAPE:
|
|
|
|
case 'n':
|
|
|
|
case 'N':
|
|
|
|
M_RemoveMenu(menu);
|
|
|
|
break;
|
|
|
|
|
2012-10-18 10:13:15 +00:00
|
|
|
case 'q':
|
|
|
|
case 'Q':
|
2004-08-23 00:15:46 +00:00
|
|
|
case 'Y':
|
|
|
|
case 'y':
|
|
|
|
M_RemoveMenu(menu);
|
2013-10-08 14:28:11 +00:00
|
|
|
Key_Dest_Add(kdm_console);
|
2004-08-23 00:15:46 +00:00
|
|
|
CL_Disconnect ();
|
|
|
|
Sys_Quit ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-03-12 22:41:34 +00:00
|
|
|
return false;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
void Cmd_WriteConfig_f(void);
|
|
|
|
qboolean MC_SaveQuit_Key (int key, menu_t *menu)
|
2005-11-03 23:49:49 +00:00
|
|
|
{
|
2012-04-24 07:59:11 +00:00
|
|
|
switch (key)
|
2009-04-01 22:03:56 +00:00
|
|
|
{
|
2014-08-27 08:41:31 +00:00
|
|
|
case 'o':
|
|
|
|
case 'O':
|
2012-04-24 07:59:11 +00:00
|
|
|
case K_ESCAPE:
|
2014-08-27 08:41:31 +00:00
|
|
|
case K_MOUSE2:
|
2012-04-24 07:59:11 +00:00
|
|
|
M_RemoveMenu(menu);
|
|
|
|
break;
|
|
|
|
|
2012-10-18 10:13:15 +00:00
|
|
|
case 'q':
|
|
|
|
case 'Q':
|
2012-04-24 07:59:11 +00:00
|
|
|
case 'n':
|
|
|
|
case 'N':
|
|
|
|
M_RemoveMenu(menu);
|
2014-08-27 08:41:31 +00:00
|
|
|
#ifndef FTE_TARGET_WEB
|
2004-08-23 00:15:46 +00:00
|
|
|
CL_Disconnect ();
|
|
|
|
Sys_Quit ();
|
2014-08-27 08:41:31 +00:00
|
|
|
#endif
|
2012-04-24 07:59:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'Y':
|
|
|
|
case 'y':
|
|
|
|
M_RemoveMenu(menu);
|
|
|
|
Cmd_ExecuteString("cfg_save", RESTRICT_LOCAL);
|
2014-08-27 08:41:31 +00:00
|
|
|
#ifndef FTE_TARGET_WEB
|
2012-04-24 07:59:11 +00:00
|
|
|
CL_Disconnect ();
|
|
|
|
Sys_Quit ();
|
2014-08-27 08:41:31 +00:00
|
|
|
#endif
|
2012-04-24 07:59:11 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-03-12 22:41:34 +00:00
|
|
|
return false;
|
2009-04-01 22:03:56 +00:00
|
|
|
}
|
2012-04-24 07:59:11 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-08-27 08:41:31 +00:00
|
|
|
//quit menu
|
2012-04-24 07:59:11 +00:00
|
|
|
void M_Menu_Quit_f (void)
|
|
|
|
{
|
|
|
|
menu_t *quitmenu;
|
|
|
|
int i;
|
|
|
|
int mode;
|
2015-08-28 03:13:45 +00:00
|
|
|
extern cvar_t cfg_save_auto;
|
2012-04-24 07:59:11 +00:00
|
|
|
char *arg = Cmd_Argv(1);
|
2015-08-28 03:13:45 +00:00
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
if (!strcmp(arg, "force"))
|
|
|
|
mode = 0;
|
2015-08-28 03:13:45 +00:00
|
|
|
else if (!strcmp(arg, "forcesave") || cfg_save_auto.ival)
|
2012-10-18 10:13:15 +00:00
|
|
|
{
|
|
|
|
Cmd_ExecuteString("cfg_save", RESTRICT_LOCAL);
|
|
|
|
mode = 0;
|
|
|
|
}
|
2012-04-24 07:59:11 +00:00
|
|
|
else if (!strcmp(arg, "save"))
|
|
|
|
mode = 2;
|
2009-04-01 22:03:56 +00:00
|
|
|
else
|
2012-10-18 10:13:15 +00:00
|
|
|
{ //prompt to save, but not otherwise.
|
2012-04-24 07:59:11 +00:00
|
|
|
if (Cvar_UnsavedArchive())
|
|
|
|
mode = 2;
|
|
|
|
else
|
2014-08-15 02:20:41 +00:00
|
|
|
{
|
|
|
|
if (!strcmp(arg, "prompt"))
|
|
|
|
mode = 1;
|
|
|
|
else if (!strcmp(arg, "noprompt"))
|
|
|
|
mode = 0;
|
2014-08-27 08:41:31 +00:00
|
|
|
else
|
|
|
|
mode = 1;
|
2014-08-15 02:20:41 +00:00
|
|
|
}
|
2012-04-24 07:59:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch(mode)
|
|
|
|
{
|
|
|
|
case 0:
|
2014-08-27 08:41:31 +00:00
|
|
|
#ifndef FTE_TARGET_WEB
|
2012-04-24 07:59:11 +00:00
|
|
|
CL_Disconnect ();
|
|
|
|
Sys_Quit ();
|
2014-08-27 08:41:31 +00:00
|
|
|
#endif
|
2012-04-24 07:59:11 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2014-02-07 08:38:40 +00:00
|
|
|
Key_Dest_Remove(kdm_console);
|
2012-04-24 07:59:11 +00:00
|
|
|
m_state = m_complex;
|
|
|
|
|
|
|
|
quitmenu = M_CreateMenuInfront(0);
|
|
|
|
quitmenu->key = MC_SaveQuit_Key;
|
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 84, "You have unsaved settings ", false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 92, " Would you like to ", false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 100, " save them now? ", false);
|
|
|
|
|
|
|
|
quitmenu->selecteditem = (menuoption_t *)
|
2014-08-27 08:41:31 +00:00
|
|
|
#ifdef FTE_TARGET_WEB
|
|
|
|
MC_AddConsoleCommand (quitmenu, 64, 0, 116, "Yes", "cfg_save; menupop\n");
|
|
|
|
MC_AddConsoleCommand (quitmenu, 224,0, 116, "Cancel", "menupop\n");
|
|
|
|
#else
|
2014-03-30 08:55:06 +00:00
|
|
|
MC_AddConsoleCommand (quitmenu, 64, 0, 116, "Yes", "menu_quit forcesave\n");
|
|
|
|
MC_AddConsoleCommand (quitmenu, 144,0, 116, "No", "menu_quit force\n");
|
|
|
|
MC_AddConsoleCommand (quitmenu, 224,0, 116, "Cancel", "menupop\n");
|
2014-08-27 08:41:31 +00:00
|
|
|
#endif
|
2012-10-18 10:13:15 +00:00
|
|
|
|
|
|
|
MC_AddBox (quitmenu, 56, 76, 25, 5);
|
2012-04-24 07:59:11 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Add(kdm_emenu);
|
2014-02-07 08:38:40 +00:00
|
|
|
Key_Dest_Remove(kdm_console);
|
2009-04-01 22:03:56 +00:00
|
|
|
m_state = m_complex;
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
quitmenu = M_CreateMenuInfront(0);
|
|
|
|
quitmenu->key = MC_Quit_Key;
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2014-08-27 08:41:31 +00:00
|
|
|
#ifdef FTE_TARGET_WEB
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2014-08-27 08:41:31 +00:00
|
|
|
// MC_AddWhiteText(quitmenu, 64, 0, 84, " ", false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 92, " There is nothing to save ", false);
|
|
|
|
// MC_AddWhiteText(quitmenu, 64, 0, 100, " ", false);
|
|
|
|
|
|
|
|
quitmenu->selecteditem = (menuoption_t *)
|
|
|
|
MC_AddConsoleCommand (quitmenu, 120, 0, 116, "Oh", "menupop\n");
|
|
|
|
#else
|
|
|
|
i = rand()&7;
|
2014-03-30 08:55:06 +00:00
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 84, quitMessage[i*4+0], false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 92, quitMessage[i*4+1], false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 100, quitMessage[i*4+2], false);
|
|
|
|
MC_AddWhiteText(quitmenu, 64, 0, 108, quitMessage[i*4+3], false);
|
|
|
|
|
2012-10-18 10:13:15 +00:00
|
|
|
quitmenu->selecteditem = (menuoption_t *)
|
2014-08-27 08:41:31 +00:00
|
|
|
MC_AddConsoleCommand (quitmenu, 100, 0, 116, "Quit", "menu_quit force\n");
|
|
|
|
MC_AddConsoleCommand (quitmenu, 194, 0, 116, "Cancel", "menupop\n");
|
|
|
|
#endif
|
2012-10-18 10:13:15 +00:00
|
|
|
MC_AddBox (quitmenu, 56, 76, 24, 5);
|
2012-04-24 07:59:11 +00:00
|
|
|
break;
|
2009-04-01 22:03:56 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//=============================================================================
|
|
|
|
/* Menu Subsystem */
|
|
|
|
|
2006-02-28 00:46:04 +00:00
|
|
|
void M_Menu_ServerList2_f(void);
|
2006-12-25 18:29:05 +00:00
|
|
|
void M_QuickConnect_f(void);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
void M_Menu_MediaFiles_f (void);
|
2004-11-23 01:10:10 +00:00
|
|
|
void M_Menu_FPS_f (void);
|
2011-06-07 23:54:58 +00:00
|
|
|
void M_Menu_Lighting_f (void);
|
|
|
|
void M_Menu_Render_f (void);
|
2009-12-29 14:00:56 +00:00
|
|
|
void M_Menu_Textures_f (void);
|
2009-12-30 04:06:14 +00:00
|
|
|
void M_Menu_Teamplay_f (void);
|
|
|
|
void M_Menu_Teamplay_Locations_f (void);
|
|
|
|
void M_Menu_Teamplay_Needs_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_f (void);
|
2010-01-15 13:23:08 +00:00
|
|
|
void M_Menu_Teamplay_Items_Armor_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_Weapons_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_Powerups_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_Ammo_Health_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_Team_Fortress_f (void);
|
|
|
|
void M_Menu_Teamplay_Items_Status_Location_Misc_f (void);
|
2011-06-15 23:01:07 +00:00
|
|
|
void M_Menu_Network_f(void);
|
2010-01-23 07:14:37 +00:00
|
|
|
void M_Menu_Singleplayer_Cheats_f (void);
|
2004-11-23 01:10:10 +00:00
|
|
|
void M_Menu_Particles_f (void);
|
2005-01-13 16:29:20 +00:00
|
|
|
void M_Menu_Audio_Speakers_f (void);
|
2005-04-16 16:21:27 +00:00
|
|
|
void Menu_DownloadStuff_f (void);
|
2004-11-23 01:10:10 +00:00
|
|
|
static qboolean internalmenusregistered;
|
|
|
|
void M_Init_Internal (void)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
2004-11-29 01:21:00 +00:00
|
|
|
#ifdef MENU_DAT
|
2004-11-23 01:10:10 +00:00
|
|
|
MP_Shutdown();
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|
2004-11-23 01:10:10 +00:00
|
|
|
|
|
|
|
if (internalmenusregistered)
|
|
|
|
return;
|
|
|
|
internalmenusregistered = true;
|
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
#ifndef CLIENTONLY
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_save", M_Menu_Save_f);
|
|
|
|
Cmd_AddCommand ("menu_load", M_Menu_Load_f);
|
|
|
|
Cmd_AddCommand ("menu_loadgame", M_Menu_Load_f); //q2...
|
2004-08-23 00:15:46 +00:00
|
|
|
#endif
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_single", M_Menu_SinglePlayer_f);
|
|
|
|
Cmd_AddCommand ("menu_multi", M_Menu_MultiPlayer_f);
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_keys", M_Menu_Keys_f);
|
|
|
|
Cmd_AddCommand ("help", M_Menu_Help_f);
|
|
|
|
Cmd_AddCommand ("menu_quit", M_Menu_Quit_f);
|
2014-03-30 08:55:06 +00:00
|
|
|
Cmd_AddCommand ("menu_mods", M_Menu_Mods_f);
|
|
|
|
Cmd_AddCommand ("modelviewer", M_Menu_ModelViewer_f);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
#ifdef CL_MASTER
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_slist", M_Menu_ServerList2_f);
|
2004-08-23 00:15:46 +00:00
|
|
|
#endif
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_setup", M_Menu_Setup_f);
|
|
|
|
Cmd_AddCommand ("menu_newmulti", M_Menu_GameOptions_f);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_main", M_Menu_Main_f); //I've moved main to last because that way tab give us main and not quit.
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_options", M_Menu_Options_f);
|
|
|
|
Cmd_AddCommand ("menu_video", M_Menu_Video_f);
|
|
|
|
Cmd_AddCommand ("menu_audio", M_Menu_Audio_f);
|
2005-12-15 19:15:39 +00:00
|
|
|
#ifndef __CYGWIN__
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_speakers", M_Menu_Audio_Speakers_f);
|
2005-12-15 19:15:39 +00:00
|
|
|
#endif
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_spcheats", M_Menu_Singleplayer_Cheats_f);
|
|
|
|
Cmd_AddCommand ("menu_fps", M_Menu_FPS_f);
|
|
|
|
Cmd_AddCommand ("menu_render" , M_Menu_Render_f);
|
|
|
|
Cmd_AddCommand ("menu_lighting", M_Menu_Lighting_f);
|
2011-06-25 12:41:40 +00:00
|
|
|
#ifdef GLQUAKE
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_textures", M_Menu_Textures_f);
|
2011-06-25 12:41:40 +00:00
|
|
|
#endif
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_teamplay", M_Menu_Teamplay_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_locations", M_Menu_Teamplay_Locations_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_needs", M_Menu_Teamplay_Needs_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_items", M_Menu_Teamplay_Items_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_armor", M_Menu_Teamplay_Items_Armor_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_weapons", M_Menu_Teamplay_Items_Weapons_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_powerups", M_Menu_Teamplay_Items_Powerups_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_ammo_health", M_Menu_Teamplay_Items_Ammo_Health_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_team_fortress", M_Menu_Teamplay_Items_Team_Fortress_f);
|
|
|
|
Cmd_AddCommand ("menu_teamplay_status_location_misc", M_Menu_Teamplay_Items_Status_Location_Misc_f);
|
|
|
|
Cmd_AddCommand ("menu_particles", M_Menu_Particles_f);
|
|
|
|
Cmd_AddCommand ("menu_network", M_Menu_Network_f);
|
2005-04-16 16:21:27 +00:00
|
|
|
|
2005-11-03 23:49:49 +00:00
|
|
|
#ifdef WEBCLIENT
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("menu_download", Menu_DownloadStuff_f);
|
2005-04-16 16:21:27 +00:00
|
|
|
#endif
|
2006-12-25 18:29:05 +00:00
|
|
|
|
2012-04-09 19:12:12 +00:00
|
|
|
#ifdef CL_MASTER
|
2012-05-09 15:30:53 +00:00
|
|
|
Cmd_AddCommand ("quickconnect", M_QuickConnect_f);
|
2012-04-09 19:12:12 +00:00
|
|
|
#endif
|
2004-11-23 01:10:10 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2004-11-23 01:10:10 +00:00
|
|
|
void M_DeInit_Internal (void)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
M_RemoveAllMenus(true);
|
2004-11-23 01:10:10 +00:00
|
|
|
|
|
|
|
if (!internalmenusregistered)
|
|
|
|
return;
|
|
|
|
internalmenusregistered = false;
|
|
|
|
|
|
|
|
#ifndef CLIENTONLY
|
|
|
|
Cmd_RemoveCommand ("menu_save");
|
|
|
|
Cmd_RemoveCommand ("menu_load");
|
|
|
|
Cmd_RemoveCommand ("menu_loadgame"); //q2...
|
|
|
|
#endif
|
|
|
|
Cmd_RemoveCommand ("menu_single");
|
|
|
|
Cmd_RemoveCommand ("menu_multi");
|
2005-11-03 23:49:49 +00:00
|
|
|
|
2004-11-23 01:10:10 +00:00
|
|
|
Cmd_RemoveCommand ("menu_keys");
|
|
|
|
Cmd_RemoveCommand ("help");
|
|
|
|
Cmd_RemoveCommand ("menu_quit");
|
|
|
|
|
|
|
|
#ifdef CL_MASTER
|
|
|
|
Cmd_RemoveCommand ("menu_slist");
|
|
|
|
#endif
|
|
|
|
Cmd_RemoveCommand ("menu_setup");
|
|
|
|
Cmd_RemoveCommand ("menu_newmulti");
|
|
|
|
|
|
|
|
Cmd_RemoveCommand ("menu_options");
|
|
|
|
Cmd_RemoveCommand ("menu_video");
|
|
|
|
Cmd_RemoveCommand ("menu_audio");
|
2005-09-14 04:07:57 +00:00
|
|
|
Cmd_RemoveCommand ("menu_speakers");
|
2009-12-30 04:06:14 +00:00
|
|
|
Cmd_RemoveCommand ("menu_teamplay");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_locations");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_needs");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_items");
|
2010-01-15 13:23:08 +00:00
|
|
|
Cmd_RemoveCommand ("menu_teamplay_armor");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_weapons");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_powerups");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_ammo_health");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_team_fortress");
|
|
|
|
Cmd_RemoveCommand ("menu_teamplay_status_location_misc");
|
2010-01-23 07:14:37 +00:00
|
|
|
Cmd_RemoveCommand ("menu_spcheats");
|
2004-11-23 01:10:10 +00:00
|
|
|
Cmd_RemoveCommand ("menu_fps");
|
2011-06-07 23:54:58 +00:00
|
|
|
Cmd_RemoveCommand ("menu_render");
|
|
|
|
Cmd_RemoveCommand ("menu_lighting");
|
2009-12-29 14:00:56 +00:00
|
|
|
Cmd_RemoveCommand ("menu_textures");
|
2004-11-23 01:10:10 +00:00
|
|
|
Cmd_RemoveCommand ("menu_particles");
|
2005-04-16 16:21:27 +00:00
|
|
|
|
|
|
|
Cmd_RemoveCommand ("menu_download");
|
2006-12-25 18:29:05 +00:00
|
|
|
|
2009-11-04 21:16:50 +00:00
|
|
|
|
2014-09-02 02:44:43 +00:00
|
|
|
Cmd_RemoveCommand ("menu_main"); //I've moved main to last because that way tab gives us main and not quit.
|
2006-12-25 18:29:05 +00:00
|
|
|
Cmd_RemoveCommand ("quickconnect");
|
2004-11-23 01:10:10 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 08:55:06 +00:00
|
|
|
void M_Shutdown(qboolean total)
|
2010-07-12 22:46:37 +00:00
|
|
|
{
|
|
|
|
#ifdef MENU_DAT
|
|
|
|
MP_Shutdown();
|
|
|
|
#endif
|
2014-03-30 08:55:06 +00:00
|
|
|
if (total)
|
|
|
|
M_DeInit_Internal();
|
2010-07-12 22:46:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void M_Reinit(void)
|
|
|
|
{
|
|
|
|
#ifdef MENU_DAT
|
|
|
|
if (!MP_Init())
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
M_Init_Internal();
|
2013-03-12 22:53:23 +00:00
|
|
|
|
|
|
|
CSQC_UnconnectedInit();
|
2010-07-12 22:46:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-14 20:56:34 +00:00
|
|
|
void FPS_Preset_f(void);
|
2012-04-24 07:59:11 +00:00
|
|
|
void M_MenuPop_f(void);
|
2005-09-14 20:56:34 +00:00
|
|
|
|
2004-11-23 01:10:10 +00:00
|
|
|
//menu.dat is loaded later... after the video and everything is up.
|
|
|
|
void M_Init (void)
|
|
|
|
{
|
|
|
|
|
|
|
|
Cmd_AddCommand("togglemenu", M_ToggleMenu_f);
|
2009-07-14 15:04:32 +00:00
|
|
|
Cmd_AddCommand("closemenu", M_CloseMenu_f);
|
2005-09-14 20:56:34 +00:00
|
|
|
Cmd_AddCommand("fps_preset", FPS_Preset_f);
|
2012-04-24 07:59:11 +00:00
|
|
|
Cmd_AddCommand("menupop", M_MenuPop_f);
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2015-07-08 19:32:16 +00:00
|
|
|
//server browser is kinda complex, and has clipboard integration which we need to sandbox a little
|
|
|
|
#ifdef CL_MASTER
|
|
|
|
Cmd_AddCommand ("menu_servers", M_Menu_ServerList2_f);
|
|
|
|
#endif
|
|
|
|
//demo menu is allowed to see outside of the quakedir. you can't replicate that in qc's sandbox.
|
|
|
|
Cmd_AddCommand ("menu_demo", M_Menu_Demos_f);
|
2015-07-14 14:47:00 +00:00
|
|
|
Cmd_AddCommand ("menu_mediafiles", M_Menu_MediaFiles_f);
|
2015-07-08 19:32:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2012-04-24 07:59:11 +00:00
|
|
|
Cvar_Register(&m_preset_chosen, "Menu thingumiebobs");
|
2004-08-23 00:15:46 +00:00
|
|
|
Cvar_Register(&m_helpismedia, "Menu thingumiebobs");
|
|
|
|
|
|
|
|
Media_Init();
|
|
|
|
#ifdef CL_MASTER
|
|
|
|
M_Serverlist_Init();
|
|
|
|
#endif
|
|
|
|
M_Script_Init();
|
2010-07-12 22:46:37 +00:00
|
|
|
|
|
|
|
M_Reinit();
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
//end builtin-menu code.
|
|
|
|
#else
|
|
|
|
void M_Init_Internal (void){}
|
|
|
|
void M_DeInit_Internal (void){}
|
|
|
|
void M_Shutdown(qboolean total)
|
|
|
|
{
|
|
|
|
#ifdef MENU_DAT
|
|
|
|
MP_Shutdown();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
void M_Reinit(void)
|
|
|
|
{
|
|
|
|
#ifdef MENU_DAT
|
|
|
|
if (!MP_Init())
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
CSQC_UnconnectedInit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void M_Init (void)
|
|
|
|
{
|
|
|
|
Media_Init();
|
|
|
|
M_Reinit();
|
|
|
|
}
|
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
|
|
|
|
void M_Draw (int uimenu)
|
|
|
|
{
|
|
|
|
if (uimenu)
|
|
|
|
{
|
|
|
|
if (uimenu == 2)
|
2011-03-31 01:14:01 +00:00
|
|
|
R2D_FadeScreen ();
|
2005-09-09 23:40:55 +00:00
|
|
|
#ifdef VM_UI
|
2004-08-23 00:15:46 +00:00
|
|
|
UI_DrawMenu();
|
2005-09-09 23:40:55 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2004-08-23 00:15:46 +00:00
|
|
|
if (m_state != m_complex)
|
|
|
|
{
|
2015-07-14 14:47:00 +00:00
|
|
|
M_RemoveAllMenus(false);
|
2014-09-20 04:11:39 +00:00
|
|
|
menu_mousedown = false;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
#endif
|
|
|
|
|
2015-07-14 14:47:00 +00:00
|
|
|
if (!Key_Dest_Has(kdm_emenu))
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
m_state = m_none;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-14 14:47:00 +00:00
|
|
|
if (m_state == m_none)
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
|
|
|
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2004-08-23 00:15:46 +00:00
|
|
|
if ((!menu_script || scr_con_current) && !m_recursiveDraw)
|
|
|
|
{
|
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
|
|
|
extern menu_t *firstmenu;
|
|
|
|
if (m_state == m_complex && firstmenu && firstmenu->selecteditem && firstmenu->selecteditem->common.type == mt_slider && (firstmenu->selecteditem->slider.var == &v_gamma || firstmenu->selecteditem->slider.var == &v_contrast))
|
|
|
|
/*no menu tint if we're trying to adjust gamma*/;
|
|
|
|
else
|
|
|
|
R2D_FadeScreen ();
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_recursiveDraw = false;
|
|
|
|
}
|
2014-09-02 02:44:43 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
|
2011-03-31 01:14:01 +00:00
|
|
|
R2D_ImageColours(1, 1, 1, 1);
|
2009-11-04 21:16:50 +00:00
|
|
|
|
2004-08-23 00:15:46 +00:00
|
|
|
switch (m_state)
|
|
|
|
{
|
2014-12-11 16:26:26 +00:00
|
|
|
default:
|
2004-08-23 00:15:46 +00:00
|
|
|
case m_none:
|
|
|
|
break;
|
|
|
|
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2004-08-23 00:15:46 +00:00
|
|
|
case m_help:
|
|
|
|
M_Help_Draw ();
|
|
|
|
break;
|
|
|
|
|
2014-09-02 02:44:43 +00:00
|
|
|
case m_complex:
|
|
|
|
M_Complex_Draw ();
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
|
2004-09-30 22:42:34 +00:00
|
|
|
#ifdef PLUGINS
|
2004-09-26 00:30:42 +00:00
|
|
|
case m_plugin:
|
|
|
|
Plug_Menu_Event (0, (int)(realtime*1000));
|
|
|
|
break;
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 11:05:06 +00:00
|
|
|
void M_Keydown (int key, int unicode)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
switch (m_state)
|
|
|
|
{
|
2014-12-11 16:26:26 +00:00
|
|
|
default:
|
2004-08-23 00:15:46 +00:00
|
|
|
case m_none:
|
2015-07-14 14:47:00 +00:00
|
|
|
Key_Dest_Remove(kdm_emenu);
|
2004-08-23 00:15:46 +00:00
|
|
|
return;
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2004-08-23 00:15:46 +00:00
|
|
|
case m_help:
|
|
|
|
M_Help_Key (key);
|
|
|
|
return;
|
|
|
|
|
2014-09-02 02:44:43 +00:00
|
|
|
case m_complex:
|
2014-09-20 04:11:39 +00:00
|
|
|
if (key == K_MOUSE1) //mouse clicks are deferred until the release event. this is for touch screens and aiming.
|
|
|
|
menu_mousedown = true;
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
else if (key == K_LSHIFT || key == K_RSHIFT || key == K_LALT || key == K_RALT || key == K_LCTRL || key == K_RCTRL)
|
|
|
|
;
|
2014-09-20 04:11:39 +00:00
|
|
|
else
|
2014-09-02 06:01:03 +00:00
|
|
|
M_Complex_Key (key, unicode);
|
2014-09-02 02:44:43 +00:00
|
|
|
return;
|
|
|
|
#endif
|
|
|
|
|
2004-09-30 22:42:34 +00:00
|
|
|
#ifdef PLUGINS
|
2004-09-26 00:30:42 +00:00
|
|
|
case m_plugin:
|
|
|
|
Plug_Menu_Event (1, key);
|
|
|
|
return;
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-07-25 11:05:06 +00:00
|
|
|
void M_Keyup (int key, int unicode)
|
2004-08-23 00:15:46 +00:00
|
|
|
{
|
|
|
|
switch (m_state)
|
|
|
|
{
|
2014-09-08 23:47:19 +00:00
|
|
|
#ifndef NOBUILTINMENUS
|
2014-09-02 06:01:03 +00:00
|
|
|
case m_complex:
|
2014-09-20 04:11:39 +00:00
|
|
|
if (key == K_MOUSE1 && menu_mousedown)
|
2014-09-02 06:01:03 +00:00
|
|
|
M_Complex_Key (key, unicode);
|
Reworked client support for DPP5+. less code now, its much more graceful.
added waterfog command. waterfog overrides regular fog only when the view is in water.
fixed 64bit printf format specifiers. should work better on winxp64.
fixed some spec angle weirdness.
fixed viewsize 99.99 weirdness with ezhud.
fixed extra offset on the console (exhibited in 64bit builds, but not limited to).
fixed .avi playback, can now actually display frames again.
reimplemented line sparks.
fixed r_editlights_save flipping the light's pitch.
fixed issue with oggs failing to load.
fixed condump to cope with unicode properly.
made sv_bigcoords default except in quake. hexen2 kinda needs it for bsp angle precision.
fixed nq server to not stall weirdly on map changes.
fixed qwprogs svc_cdtrack not bugging out with nq clients on the server.
fixed restart command to load the last map run by the server, instead of start.bsp (when idle)
optimised d3d9 renderer a little. now uses less draw calls, especially with complex scenes. seems to get higher framerates than opengl now.
fixed d3d9 renderer to not bug out quite so much when run fullscreen (shader subsystem is now correctly initialised).
fixed a couple of bugs from font change. also now supports utf-8 in a few more places.
r_editlights_reload no longer generates rtlights inside the void. this resolves a few glitches (but should also help framerates a little).
fixed so corona-only lights won't generate shadowmaps and waste lots of time.
removed lots of #defines from qclib. I should never have made them in the first place, but I was lazy. obviously there's more left that I cba to remove yet.
fixed nested calls with variant-vectors. this fixes csaddon's light editor.
fixed qcc hc calling conventions using redundant stores.
disabled keywords can still be used by using __keyword instead.
fixed ftegccgui grep feature.
fixed motionless-dog qcc bug.
tweaked qcc warnings a little. -Wall is now a viable setting. you should be able to fix all those warnings.
fixed qw svc_intermission + dpp5+ clients bug.
fixed annoying spam about disconnecting in hexen2.
rewrote status command a little to cope with ipv6 addresses more gracefully
fixed significant stall when hibernating/debugging a server with a player sitting on it.
fixed truelightning.
fixed rocketlight overriding pflags.
fixed torches vanishing on vid_restart.
fixed issue with decal scaling.
fixed findentityfield builtin.
fixed fteqcc issue with ptr+1
fixed use of arrays inside class functions.
fixed/implemented fteqcc emulation of pointer opcodes.
added __inout keyword to fteqcc, so that it doesn't feel so horrendous.
fixed sizeof(*foo)
fixed *struct = struct;
fixed recursive structs.
fixed fteqcc warning report.
fixed sdl2 controller support, hopefully.
attempted to implement xinput, including per-player audio playback.
slightly fixed relaxed attitude to mouse focus when running fullscreen.
fixed weird warnings/errors with 'ent.arrayhead' terms. now generates sane errors.
implemented bindmaps (for csqc).
fixed crashing bug with eprint builtin.
implemented subset of music_playlist_* functionality. significant changes to music playback.
fixed some more dpcsqc compat.
fixed binds menu. now displays and accepts modifiers.
fixed issues with huge lightmaps.
fixed protocol determinism with dp clients connecting to fte servers. the initial getchallenge request now inhibits vanilla nq connection requests.
implemented support for 'dupe' userinfo key, allowing clients to request client->server packet duplication. should probably queue them tbh.
implemented sv_saveentfile command.
fixed resume after breaking inside a stepped-over function.
fixed erroneous footer after debugging.
(I wonder just how many things I broke with these fixes)
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4946 fc73d0e0-1445-4013-8a0c-d673dee63da5
2015-07-26 10:56:18 +00:00
|
|
|
else if (key == K_LSHIFT || key == K_RSHIFT || key == K_LALT || key == K_RALT || key == K_LCTRL || key == K_RCTRL)
|
|
|
|
M_Complex_Key (key, unicode);
|
2014-09-20 04:11:39 +00:00
|
|
|
menu_mousedown = false;
|
2014-09-02 06:01:03 +00:00
|
|
|
return;
|
|
|
|
#endif
|
2004-09-30 22:42:34 +00:00
|
|
|
#ifdef PLUGINS
|
2004-09-26 00:30:42 +00:00
|
|
|
case m_plugin:
|
|
|
|
Plug_Menu_Event (2, key);
|
|
|
|
return;
|
2004-11-29 01:21:00 +00:00
|
|
|
#endif
|
2004-09-13 04:16:52 +00:00
|
|
|
default:
|
|
|
|
break;
|
2004-08-23 00:15:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-15 22:51:01 +00:00
|
|
|
// Generic function to choose which game menu to draw
|
|
|
|
int M_GameType (void)
|
|
|
|
{
|
2010-07-11 02:22:39 +00:00
|
|
|
static int cached;
|
|
|
|
static unsigned int cachedrestarts;
|
|
|
|
|
|
|
|
if (FS_Restarted(&cachedrestarts))
|
|
|
|
{
|
2014-10-05 20:04:11 +00:00
|
|
|
struct
|
|
|
|
{
|
|
|
|
int gametype;
|
|
|
|
char *path;
|
|
|
|
} configs[] =
|
|
|
|
{
|
|
|
|
{MGT_QUAKE1, "gfx/sp_menu.lmp"},
|
|
|
|
#ifdef Q2CLIENT
|
|
|
|
{MGT_QUAKE2, "pics/m_banner_game.pcx"},
|
2009-11-04 21:16:50 +00:00
|
|
|
#endif
|
2014-10-05 20:04:11 +00:00
|
|
|
#ifdef HEXEN2
|
|
|
|
{MGT_HEXEN2, "gfx/menu/title2.lmp"},
|
|
|
|
#endif
|
|
|
|
{0, NULL}
|
|
|
|
};
|
|
|
|
int bd = COM_FDepthFile(configs[0].path, true);
|
|
|
|
int i;
|
|
|
|
cached = configs[0].gametype;
|
|
|
|
for (i = 1; configs[i].path; i++)
|
|
|
|
{
|
|
|
|
int gd = COM_FDepthFile(configs[i].path, true);
|
|
|
|
if (bd > gd)
|
|
|
|
{
|
|
|
|
bd = gd;
|
|
|
|
cached = configs[i].gametype;
|
|
|
|
}
|
|
|
|
}
|
2010-07-11 02:22:39 +00:00
|
|
|
}
|
2005-03-15 22:51:01 +00:00
|
|
|
|
2009-04-06 00:34:32 +00:00
|
|
|
return cached;
|
2005-03-15 22:51:01 +00:00
|
|
|
}
|
2004-08-23 00:15:46 +00:00
|
|
|
|
|
|
|
|