2019-12-08 11:28:51 +00:00
|
|
|
/*
|
|
|
|
** c_dispatch.cpp
|
|
|
|
** Functions for executing console commands and aliases
|
|
|
|
**
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
** Copyright 1998-2016 Randy Heit
|
|
|
|
** Copyright 2003-2019 Christoph Oelckers
|
|
|
|
** All rights reserved.
|
|
|
|
**
|
|
|
|
** Redistribution and use in source and binary forms, with or without
|
|
|
|
** modification, are permitted provided that the following conditions
|
|
|
|
** are met:
|
|
|
|
**
|
|
|
|
** 1. Redistributions of source code must retain the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer.
|
|
|
|
** 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
** notice, this list of conditions and the following disclaimer in the
|
|
|
|
** documentation and/or other materials provided with the distribution.
|
|
|
|
** 3. The name of the author may not be used to endorse or promote products
|
|
|
|
** derived from this software without specific prior written permission.
|
|
|
|
**
|
|
|
|
** THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
** IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
** OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
** IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
** INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
** NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
** THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
**---------------------------------------------------------------------------
|
|
|
|
**
|
|
|
|
*/
|
2019-11-03 17:19:29 +00:00
|
|
|
|
|
|
|
#include "c_bind.h"
|
|
|
|
#include "d_event.h"
|
2019-11-09 22:58:26 +00:00
|
|
|
#include "c_console.h"
|
2019-11-03 17:19:29 +00:00
|
|
|
#include "d_gui.h"
|
2019-11-03 23:55:49 +00:00
|
|
|
#include "inputstate.h"
|
2020-10-04 16:31:48 +00:00
|
|
|
#include "razemenu.h"
|
2020-08-24 17:55:21 +00:00
|
|
|
#include "gamestate.h"
|
|
|
|
#include "gamecontrol.h"
|
2020-08-25 16:51:56 +00:00
|
|
|
#include "uiinput.h"
|
2020-09-06 18:49:43 +00:00
|
|
|
#include "automap.h"
|
2020-08-24 17:55:21 +00:00
|
|
|
|
2019-11-03 17:19:29 +00:00
|
|
|
//==========================================================================
|
|
|
|
//
|
|
|
|
// G_Responder
|
|
|
|
// Process the event for the game
|
|
|
|
//
|
|
|
|
//==========================================================================
|
|
|
|
|
|
|
|
bool G_Responder (event_t *ev)
|
|
|
|
{
|
2020-08-25 16:51:56 +00:00
|
|
|
if (CT_Responder(ev))
|
|
|
|
return true; // chat ate the event
|
|
|
|
if (Cheat_Responder(ev))
|
|
|
|
return true;
|
|
|
|
|
2020-08-24 18:25:53 +00:00
|
|
|
if (gamestate == GS_LEVEL && automapMode != am_off && AM_Responder(ev, false)) return true;
|
2020-08-24 17:55:21 +00:00
|
|
|
|
2019-11-03 17:19:29 +00:00
|
|
|
switch (ev->type)
|
|
|
|
{
|
|
|
|
case EV_KeyDown:
|
2020-08-24 17:55:21 +00:00
|
|
|
if (C_DoKey (ev, &Bindings, &DoubleBindings))
|
2019-11-03 17:19:29 +00:00
|
|
|
return true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EV_KeyUp:
|
2020-08-24 17:55:21 +00:00
|
|
|
C_DoKey (ev, &Bindings, &DoubleBindings);
|
2019-11-03 17:19:29 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-08-24 18:25:53 +00:00
|
|
|
// This won't work as expected with Build's overlay automap.
|
|
|
|
#if 0
|
2019-12-08 11:28:51 +00:00
|
|
|
// [RH] If the view is active, give the automap a chance at
|
|
|
|
// the events *last* so that any bound keys get precedence.
|
2020-08-24 17:55:21 +00:00
|
|
|
if (gamestate == GS_LEVEL && automapMode == am_overlay)
|
|
|
|
return AM_Responder (ev, true);
|
2020-08-24 18:25:53 +00:00
|
|
|
#endif
|
2019-11-03 17:19:29 +00:00
|
|
|
|
|
|
|
return (ev->type == EV_KeyDown ||
|
|
|
|
ev->type == EV_Mouse);
|
|
|
|
}
|
|
|
|
|
|
|
|
|