2001-07-16 21:39:50 +00:00
|
|
|
/*
|
2022-09-20 03:57:22 +00:00
|
|
|
client.c
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
Client console routines
|
2001-07-16 21:39:50 +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
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2003-01-15 15:31:36 +00:00
|
|
|
|
2001-07-16 21:39:50 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
2002-01-16 21:53:42 +00:00
|
|
|
#include <errno.h>
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2004-01-20 05:57:39 +00:00
|
|
|
#ifdef __QNXNTO__
|
|
|
|
# include <locale.h>
|
|
|
|
#endif
|
|
|
|
|
2001-07-16 21:39:50 +00:00
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/console.h"
|
|
|
|
#include "QF/cvar.h"
|
2002-03-18 16:47:04 +00:00
|
|
|
#include "QF/dstring.h"
|
2003-05-06 02:19:13 +00:00
|
|
|
#include "QF/gib.h"
|
2001-07-16 21:39:50 +00:00
|
|
|
#include "QF/keys.h"
|
|
|
|
#include "QF/qargs.h"
|
2002-08-27 07:16:28 +00:00
|
|
|
#include "QF/quakefs.h"
|
2001-07-16 21:39:50 +00:00
|
|
|
#include "QF/va.h"
|
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
#include "QF/input/event.h"
|
|
|
|
|
2012-02-13 12:58:34 +00:00
|
|
|
#include "QF/plugin/general.h"
|
|
|
|
#include "QF/plugin/console.h"
|
2012-02-14 08:28:09 +00:00
|
|
|
#include "QF/plugin/vid_render.h"
|
2012-02-13 12:58:34 +00:00
|
|
|
|
2021-06-12 13:50:51 +00:00
|
|
|
#include "QF/ui/inputline.h"
|
2022-09-20 03:57:22 +00:00
|
|
|
#include "QF/ui/view.h"
|
2021-06-12 13:50:51 +00:00
|
|
|
|
2001-07-20 18:51:00 +00:00
|
|
|
#include "compat.h"
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2001-09-19 03:39:04 +00:00
|
|
|
static general_data_t plugin_info_general_data;
|
2002-01-18 19:19:33 +00:00
|
|
|
console_data_t con_data;
|
2001-09-19 03:39:04 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
static con_buffer_t *con;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
static float con_cursorspeed = 4;
|
2002-01-16 21:53:42 +00:00
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
static float con_notifytime;
|
|
|
|
static cvar_t con_notifytime_cvar = {
|
|
|
|
.name = "con_notifytime",
|
|
|
|
.description =
|
|
|
|
"How long in seconds messages are displayed on screen",
|
|
|
|
.default_value = "3",
|
|
|
|
.flags = CVAR_NONE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &con_notifytime },
|
|
|
|
};
|
|
|
|
static float con_alpha;
|
|
|
|
static cvar_t con_alpha_cvar = {
|
|
|
|
.name = "con_alpha",
|
|
|
|
.description =
|
|
|
|
"alpha value for the console background",
|
|
|
|
.default_value = "0.6",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &con_alpha },
|
|
|
|
};
|
|
|
|
static float con_size;
|
|
|
|
static cvar_t con_size_cvar = {
|
|
|
|
.name = "con_size",
|
|
|
|
.description =
|
|
|
|
"Fraction of the screen the console covers when down",
|
|
|
|
.default_value = "0.5",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &con_size },
|
|
|
|
};
|
|
|
|
static float con_speed;
|
|
|
|
static cvar_t con_speed_cvar = {
|
|
|
|
.name = "con_speed",
|
|
|
|
.description =
|
|
|
|
"How quickly the console scrolls up or down",
|
|
|
|
.default_value = "300",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
|
|
|
.value = { .type = &cexpr_float, .value = &con_speed },
|
|
|
|
};
|
|
|
|
static exprenum_t cl_conmode_enum;
|
|
|
|
static exprtype_t cl_conmode_type = {
|
|
|
|
.name = "cl_conmode",
|
2022-04-24 11:46:06 +00:00
|
|
|
.size = sizeof (con_data.exec_line),
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
.data = &cl_conmode_enum,
|
|
|
|
.get_string = cexpr_enum_get_string,
|
|
|
|
};
|
|
|
|
static int cl_exec_line_command (void *data, const char *line);
|
|
|
|
static int cl_exec_line_chat (void *data, const char *line);
|
|
|
|
static int cl_exec_line_rcon (void *data, const char *line);
|
|
|
|
static int (*cl_conmode_values[])(void *, const char *) = {
|
|
|
|
cl_exec_line_command,
|
|
|
|
cl_exec_line_chat,
|
|
|
|
cl_exec_line_rcon,
|
|
|
|
};
|
|
|
|
static exprsym_t cl_conmode_symbols[] = {
|
|
|
|
{"command", &cl_conmode_type, cl_conmode_values + 0},
|
|
|
|
{"chat", &cl_conmode_type, cl_conmode_values + 1},
|
|
|
|
{"rcon", &cl_conmode_type, cl_conmode_values + 1},
|
|
|
|
{}
|
|
|
|
};
|
|
|
|
static exprtab_t cl_conmode_symtab = {
|
|
|
|
cl_conmode_symbols,
|
|
|
|
};
|
|
|
|
static exprenum_t cl_conmode_enum = {
|
|
|
|
&cl_conmode_type,
|
|
|
|
&cl_conmode_symtab,
|
|
|
|
};
|
|
|
|
static cvar_t cl_conmode_cvar = {
|
|
|
|
.name = "cl_conmode",
|
|
|
|
.description =
|
|
|
|
"Set the console input mode (command, chat, rcon)",
|
|
|
|
.default_value = "command",
|
|
|
|
.flags = CVAR_ARCHIVE,
|
2022-04-24 11:46:06 +00:00
|
|
|
.value = { .type = &cl_conmode_type, .value = &con_data.exec_line },
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
};
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
static con_state_t con_state;
|
|
|
|
static int con_event_id;
|
|
|
|
static int con_saved_focos;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static qboolean con_debuglog;
|
2002-01-16 23:06:28 +00:00
|
|
|
static qboolean chat_team;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
typedef struct {
|
|
|
|
const char *prompt;
|
|
|
|
inputline_t *input_line;
|
|
|
|
view_t *view;
|
|
|
|
draw_charbuffer_t *buffer;
|
|
|
|
} con_input_t;
|
|
|
|
|
|
|
|
#define MAXCMDLINE 256
|
|
|
|
|
|
|
|
static con_input_t cmd_line;
|
|
|
|
static con_input_t say_line;
|
|
|
|
static con_input_t team_line;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
#define CON_BUFFER_SIZE 32768
|
|
|
|
#define CON_LINES 1024
|
2003-05-06 02:19:13 +00:00
|
|
|
static view_t *console_view;
|
2022-09-20 03:57:22 +00:00
|
|
|
static draw_charbuffer_t *console_buffer;
|
|
|
|
static con_buffer_t *con_main;
|
|
|
|
static int view_offset;
|
|
|
|
|
|
|
|
#define NOTIFY_LINES 4
|
2003-05-06 02:19:13 +00:00
|
|
|
static view_t *notify_view;
|
2022-09-20 03:57:22 +00:00
|
|
|
static draw_charbuffer_t *notify_buffer;
|
|
|
|
// ring buffer holding realtime time the line was generated
|
|
|
|
static float notify_times[NOTIFY_LINES + 1];
|
|
|
|
static int notify_head;
|
|
|
|
static int notify_tail;
|
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
static view_t *menu_view;
|
2003-05-14 21:17:32 +00:00
|
|
|
static view_t *hud_view;
|
2003-05-06 02:19:13 +00:00
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static qboolean con_initialized;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static void
|
|
|
|
ClearNotify (void)
|
2002-01-16 16:27:56 +00:00
|
|
|
{
|
2022-09-20 03:57:22 +00:00
|
|
|
Draw_ClearBuffer (notify_buffer);
|
|
|
|
notify_head = notify_tail = 0;
|
2002-01-16 16:27:56 +00:00
|
|
|
}
|
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
static void
|
|
|
|
C_SetState (con_state_t state)
|
|
|
|
{
|
2021-11-28 13:42:01 +00:00
|
|
|
con_state_t old_state = con_state;
|
2021-11-08 02:20:04 +00:00
|
|
|
con_state = state;
|
|
|
|
if (con_state == con_inactive) {
|
|
|
|
IE_Set_Focus (con_saved_focos);
|
2021-11-28 13:42:01 +00:00
|
|
|
} else if (old_state == con_inactive) {
|
2021-11-08 02:20:04 +00:00
|
|
|
con_saved_focos = IE_Get_Focus ();
|
|
|
|
IE_Set_Focus (con_event_id);
|
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
|
|
|
|
if (state == con_message) {
|
2022-09-21 03:17:44 +00:00
|
|
|
say_line.prompt = "say:";
|
2022-09-20 03:57:22 +00:00
|
|
|
if (chat_team) {
|
2022-09-21 03:17:44 +00:00
|
|
|
say_line.prompt = "say_team:";
|
2022-09-20 03:57:22 +00:00
|
|
|
}
|
2022-09-21 03:17:44 +00:00
|
|
|
say_line.buffer->cursx = 0;
|
|
|
|
Draw_PrintBuffer (say_line.buffer, say_line.prompt);
|
2022-09-20 03:57:22 +00:00
|
|
|
}
|
|
|
|
|
2021-11-28 13:42:01 +00:00
|
|
|
if (con_state == con_menu && old_state != con_menu) {
|
|
|
|
Menu_Enter ();
|
|
|
|
}
|
2021-11-08 02:20:04 +00:00
|
|
|
}
|
2002-01-16 21:53:42 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
ToggleConsole_f (void)
|
2001-07-16 21:39:50 +00:00
|
|
|
{
|
2021-11-08 02:20:04 +00:00
|
|
|
switch (con_state) {
|
2021-11-28 13:42:01 +00:00
|
|
|
case con_menu:
|
|
|
|
case con_message:
|
|
|
|
return;
|
2021-11-08 02:20:04 +00:00
|
|
|
case con_inactive:
|
|
|
|
C_SetState (con_active);
|
|
|
|
break;
|
|
|
|
case con_active:
|
|
|
|
C_SetState (con_inactive);
|
|
|
|
break;
|
|
|
|
case con_fullscreen:
|
|
|
|
break;
|
2002-01-16 21:53:42 +00:00
|
|
|
}
|
2022-09-21 03:17:44 +00:00
|
|
|
Con_ClearTyping (cmd_line.input_line, 0);
|
2021-11-28 13:42:01 +00:00
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
ClearNotify ();
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
|
|
|
|
2007-04-07 05:50:29 +00:00
|
|
|
static int
|
|
|
|
cl_exec_line_command (void *data, const char *line)
|
2002-02-28 04:12:20 +00:00
|
|
|
{
|
2007-04-07 05:50:29 +00:00
|
|
|
Cbuf_AddText (con_data.cbuf, line);
|
|
|
|
Cbuf_AddText (con_data.cbuf, "\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2002-02-28 04:12:20 +00:00
|
|
|
|
2007-04-07 05:50:29 +00:00
|
|
|
static int
|
|
|
|
cl_exec_line_chat (void *data, const char *line)
|
|
|
|
{
|
|
|
|
Cbuf_AddText (con_data.cbuf, "say ");
|
|
|
|
Cbuf_AddText (con_data.cbuf, line);
|
|
|
|
Cbuf_AddText (con_data.cbuf, "\n");
|
|
|
|
return 0;
|
2002-02-28 04:12:20 +00:00
|
|
|
}
|
|
|
|
|
2007-04-07 05:50:29 +00:00
|
|
|
static int
|
|
|
|
cl_exec_line_rcon (void *data, const char *line)
|
|
|
|
{
|
|
|
|
Cbuf_AddText (con_data.cbuf, "rcon ");
|
|
|
|
Cbuf_AddText (con_data.cbuf, line);
|
2002-07-31 05:19:03 +00:00
|
|
|
Cbuf_AddText (con_data.cbuf, "\n");
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("rcon %s\n", line);
|
2007-04-07 05:50:29 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-11-28 13:42:01 +00:00
|
|
|
static void
|
|
|
|
con_end_message (inputline_t *line)
|
|
|
|
{
|
|
|
|
Con_ClearTyping (line, 1);
|
|
|
|
C_SetState (con_inactive);
|
|
|
|
}
|
|
|
|
|
2002-01-16 23:06:28 +00:00
|
|
|
static void
|
2011-03-26 23:03:39 +00:00
|
|
|
C_Say (inputline_t *il)
|
2002-01-16 23:06:28 +00:00
|
|
|
{
|
2011-03-26 23:03:39 +00:00
|
|
|
const char *line = il->line;
|
2021-11-28 13:42:01 +00:00
|
|
|
if (*line) {
|
|
|
|
Cbuf_AddText (con_data.cbuf, "say \"");
|
|
|
|
Cbuf_AddText (con_data.cbuf, line);
|
|
|
|
Cbuf_AddText (con_data.cbuf, "\"\n");
|
|
|
|
}
|
|
|
|
con_end_message (il);
|
2002-01-16 23:06:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2011-03-26 23:03:39 +00:00
|
|
|
C_SayTeam (inputline_t *il)
|
2002-01-16 23:06:28 +00:00
|
|
|
{
|
2011-03-26 23:03:39 +00:00
|
|
|
const char *line = il->line;
|
2002-08-28 21:03:24 +00:00
|
|
|
|
2021-11-28 13:42:01 +00:00
|
|
|
if (*line) {
|
|
|
|
Cbuf_AddText (con_data.cbuf, "say_team \"");
|
|
|
|
Cbuf_AddText (con_data.cbuf, line);
|
|
|
|
Cbuf_AddText (con_data.cbuf, "\"\n");
|
|
|
|
}
|
|
|
|
con_end_message (il);
|
2002-01-16 23:06:28 +00:00
|
|
|
}
|
|
|
|
|
2001-07-16 21:39:50 +00:00
|
|
|
/*
|
2001-07-20 18:51:00 +00:00
|
|
|
C_Print
|
2001-07-16 21:39:50 +00:00
|
|
|
|
|
|
|
Handles cursor positioning, line wrapping, etc
|
|
|
|
All console printing must go through this in order to be logged to disk
|
|
|
|
If no console is visible, the notify window will pop up.
|
|
|
|
*/
|
2021-03-27 10:52:59 +00:00
|
|
|
static __attribute__((format(PRINTF, 1, 0))) void
|
2001-07-20 18:51:00 +00:00
|
|
|
C_Print (const char *fmt, va_list args)
|
2001-07-16 21:39:50 +00:00
|
|
|
{
|
2002-01-16 21:53:42 +00:00
|
|
|
char *s;
|
2002-03-08 23:11:42 +00:00
|
|
|
static dstring_t *buffer;
|
2022-09-20 03:57:22 +00:00
|
|
|
int mask, c;
|
2002-03-08 23:11:42 +00:00
|
|
|
|
|
|
|
if (!buffer)
|
|
|
|
buffer = dstring_new ();
|
|
|
|
|
|
|
|
dvsprintf (buffer, fmt, args);
|
2001-07-16 21:39:50 +00:00
|
|
|
|
|
|
|
// log all messages to file
|
|
|
|
if (con_debuglog)
|
2021-01-31 07:01:20 +00:00
|
|
|
Sys_DebugLog (va (0, "%s/%s/qconsole.log", qfs_userpath,//FIXME
|
2003-02-14 22:36:10 +00:00
|
|
|
qfs_gamedir->dir.def), "%s", buffer->str);
|
2001-07-16 21:39:50 +00:00
|
|
|
|
|
|
|
if (!con_initialized)
|
|
|
|
return;
|
|
|
|
|
2002-03-08 23:11:42 +00:00
|
|
|
s = buffer->str;
|
2002-01-16 21:53:42 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
mask = 0;
|
|
|
|
if (buffer->str[0] == 1 || buffer->str[0] == 2) {
|
2001-07-16 21:39:50 +00:00
|
|
|
mask = 128; // go to colored text
|
2002-01-16 21:53:42 +00:00
|
|
|
s++;
|
2022-09-20 03:57:22 +00:00
|
|
|
}
|
|
|
|
if (mask || con_data.ormask) {
|
|
|
|
for (char *m = s; *m; m++) {
|
|
|
|
if (*m >= ' ') {
|
|
|
|
*m |= mask | con_data.ormask;
|
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
if (con_data.realtime) {
|
|
|
|
c = Draw_PrintBuffer (notify_buffer, s);
|
|
|
|
while (c-- > 0) {
|
|
|
|
notify_times[notify_head++] = *con_data.realtime;
|
|
|
|
if (notify_head >= NOTIFY_LINES + 1) {
|
|
|
|
notify_head -= NOTIFY_LINES + 1;
|
|
|
|
}
|
|
|
|
if (notify_head == notify_tail) {
|
|
|
|
notify_tail++;
|
|
|
|
if (notify_tail >= NOTIFY_LINES + 1) {
|
|
|
|
notify_tail -= NOTIFY_LINES + 1;
|
|
|
|
}
|
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
}
|
|
|
|
Con_BufferAddText (con_main, s);
|
|
|
|
if (!view_offset) {
|
|
|
|
Draw_PrintBuffer (console_buffer, s);
|
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
while (*s) {
|
|
|
|
*s = sys_char_map[(byte) *s];
|
|
|
|
s++;
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
2002-01-16 21:53:42 +00:00
|
|
|
|
|
|
|
// echo to debugging console
|
2021-12-20 12:03:40 +00:00
|
|
|
// but don't print the highchars flag (leading \x01)
|
2002-03-08 23:11:42 +00:00
|
|
|
if ((byte)buffer->str[0] > 2)
|
|
|
|
fputs (buffer->str, stdout);
|
|
|
|
else if ((byte)buffer->str[0])
|
|
|
|
fputs (buffer->str + 1, stdout);
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
/* DRAWING */
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
draw_cursor (int x, int y, inputline_t *il)
|
|
|
|
{
|
|
|
|
if (!con_data.realtime) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
float t = *con_data.realtime * con_cursorspeed;
|
|
|
|
int ch = 10 + ((int) (t) & 1);
|
|
|
|
r_funcs->Draw_Character (x + ((il->linepos - il->scroll) * 8), y, ch);
|
|
|
|
}
|
|
|
|
|
2002-01-17 02:27:53 +00:00
|
|
|
static void
|
2002-08-20 21:19:53 +00:00
|
|
|
DrawInputLine (int x, int y, int cursor, inputline_t *il)
|
2002-01-17 02:27:53 +00:00
|
|
|
{
|
|
|
|
const char *s = il->lines[il->edit_line] + il->scroll;
|
|
|
|
|
|
|
|
if (il->scroll) {
|
2012-04-11 07:38:15 +00:00
|
|
|
r_funcs->Draw_Character (x, y, '<' | 0x80);
|
|
|
|
r_funcs->Draw_nString (x + 8, y, s + 1, il->width - 2);
|
2002-01-17 02:27:53 +00:00
|
|
|
} else {
|
2012-04-11 07:38:15 +00:00
|
|
|
r_funcs->Draw_nString (x, y, s, il->width - 1);
|
2002-01-17 02:27:53 +00:00
|
|
|
}
|
2022-09-21 03:17:44 +00:00
|
|
|
if (cursor) {
|
|
|
|
draw_cursor (x, y, il);
|
2002-08-20 21:19:53 +00:00
|
|
|
}
|
2002-01-17 02:27:53 +00:00
|
|
|
if (strlen (s) >= il->width)
|
2022-09-21 03:17:44 +00:00
|
|
|
r_funcs->Draw_Character (x + ((il->width - 1) * 8), y, '>' | 0x80);
|
2002-01-17 02:27:53 +00:00
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2002-08-20 21:19:53 +00:00
|
|
|
void
|
|
|
|
C_DrawInputLine (inputline_t *il)
|
|
|
|
{
|
2011-07-09 12:16:38 +00:00
|
|
|
DrawInputLine (il->x, il->y, il->cursor, il);
|
2002-08-20 21:19:53 +00:00
|
|
|
}
|
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
draw_input_line (inputline_t *il, draw_charbuffer_t *buffer)
|
|
|
|
{
|
|
|
|
char *dst = buffer->chars + buffer->cursx;
|
|
|
|
char *src = il->lines[il->edit_line] + il->scroll + 1;
|
|
|
|
size_t i;
|
|
|
|
|
|
|
|
*dst++ = il->scroll ? '<' | 0x80 : il->lines[il->edit_line][0];
|
|
|
|
for (i = 0; i < il->width - 2 && *src; i++) {
|
|
|
|
*dst++ = *src++;
|
|
|
|
}
|
|
|
|
while (i++ < il->width - 2) {
|
|
|
|
*dst++ = ' ';
|
|
|
|
}
|
|
|
|
*dst++ = *src ? '>' | 0x80 : ' ';
|
|
|
|
}
|
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static void
|
2003-05-06 02:19:13 +00:00
|
|
|
draw_input (view_t *view)
|
2001-07-16 21:39:50 +00:00
|
|
|
{
|
2022-09-21 03:17:44 +00:00
|
|
|
__auto_type inp = (con_input_t *) view->data;
|
|
|
|
|
|
|
|
Draw_CharBuffer (view->xabs, view->yabs, inp->buffer);
|
|
|
|
draw_cursor (view->xabs + inp->buffer->cursx * 8, view->yabs,
|
|
|
|
inp->input_line);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
input_line_draw (inputline_t *il)
|
|
|
|
{
|
|
|
|
__auto_type inp = (con_input_t *) il->user_data;
|
|
|
|
draw_input_line (il, inp->buffer);
|
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
resize_input (view_t *view)
|
|
|
|
{
|
|
|
|
__auto_type inp = (con_input_t *) view->data;
|
|
|
|
|
|
|
|
if (inp->buffer) {
|
|
|
|
Draw_DestroyBuffer (inp->buffer);
|
|
|
|
}
|
|
|
|
inp->buffer = Draw_CreateBuffer (view->xlen / 8, 1);
|
|
|
|
Draw_ClearBuffer (inp->buffer);
|
|
|
|
Draw_PrintBuffer (inp->buffer, inp->prompt);
|
|
|
|
inp->buffer->chars[inp->buffer->cursx] = inp->input_line->prompt_char;
|
|
|
|
inp->input_line->width = inp->buffer->width - inp->buffer->cursx;
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static void
|
2003-05-06 02:19:13 +00:00
|
|
|
draw_download (view_t *view)
|
2001-07-16 21:39:50 +00:00
|
|
|
{
|
2022-03-30 17:57:38 +00:00
|
|
|
static dstring_t *dlbar;
|
2003-05-06 02:19:13 +00:00
|
|
|
const char *text;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2007-03-20 14:16:43 +00:00
|
|
|
if (!con_data.dl_name || !*con_data.dl_name->str)
|
2003-05-06 02:19:13 +00:00
|
|
|
return;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-03-30 17:57:38 +00:00
|
|
|
if (!dlbar) {
|
|
|
|
dlbar = dstring_new ();
|
|
|
|
}
|
|
|
|
|
2007-03-20 14:16:43 +00:00
|
|
|
text = QFS_SkipPath(con_data.dl_name->str);
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-03-30 17:57:38 +00:00
|
|
|
int line_size = con_linewidth - ((con_linewidth * 7) / 40);
|
|
|
|
int dot_space = line_size - strlen (text) - 8;
|
|
|
|
const char *ellipsis = "";
|
|
|
|
int txt_size = con_linewidth / 3;
|
|
|
|
if (strlen (text) > (size_t) txt_size) {
|
|
|
|
ellipsis = "...";
|
|
|
|
dot_space = line_size - txt_size - 11;
|
|
|
|
} else {
|
|
|
|
txt_size = strlen (text);
|
|
|
|
}
|
2003-05-06 02:19:13 +00:00
|
|
|
// where's the dot go?
|
2022-03-30 17:57:38 +00:00
|
|
|
int n = 0;
|
|
|
|
if (con_data.dl_percent) {
|
|
|
|
n = dot_space * *con_data.dl_percent / 100;
|
|
|
|
}
|
|
|
|
char *dots = alloca (dot_space + 1);
|
|
|
|
dots[dot_space] = 0;
|
|
|
|
for (int j = 0; j < dot_space; j++) {
|
|
|
|
if (j == n) {
|
|
|
|
dots[j++] = '\x83';
|
|
|
|
} else {
|
|
|
|
dots[j++] = '\x81';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
dsprintf (dlbar, "%.*s%s: \x80%s\x82 %02d%%",
|
|
|
|
txt_size, text, ellipsis, dots, *con_data.dl_percent);
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
// draw it
|
2022-03-30 17:57:38 +00:00
|
|
|
r_funcs->Draw_String (view->xabs, view->yabs, dlbar->str);
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static void
|
2003-05-06 02:19:13 +00:00
|
|
|
draw_console_text (view_t *view)
|
2001-07-16 21:39:50 +00:00
|
|
|
{
|
2022-09-20 03:57:22 +00:00
|
|
|
Draw_CharBuffer (view->xabs, view->yabs, console_buffer);
|
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
clear_console_text (void)
|
|
|
|
{
|
|
|
|
Draw_ClearBuffer (console_buffer);
|
|
|
|
console_buffer->cursy = console_buffer->height - 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
resize_console_text (view_t *view)
|
|
|
|
{
|
|
|
|
int width = view->xlen / 8;
|
|
|
|
int height = view->ylen / 8;
|
|
|
|
|
|
|
|
ClearNotify ();
|
|
|
|
|
|
|
|
con_linewidth = width;
|
|
|
|
Draw_DestroyBuffer (console_buffer);
|
|
|
|
console_buffer = Draw_CreateBuffer (width, height);
|
|
|
|
clear_console_text ();
|
|
|
|
}
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
static void
|
|
|
|
draw_con_scrollback (void)
|
|
|
|
{
|
|
|
|
__auto_type cb = console_buffer;
|
|
|
|
char *dst = cb->chars + (cb->height - 1) * cb->width;
|
|
|
|
int rows = cb->height;
|
|
|
|
int cur_line = con_main->line_head - 1 + view_offset;
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
if (view_offset) {
|
2001-07-16 21:39:50 +00:00
|
|
|
// draw arrows to show the buffer is backscrolled
|
2022-09-20 03:57:22 +00:00
|
|
|
memset (dst, '^' | 0x80, cb->width);
|
|
|
|
dst -= cb->width;
|
2001-07-16 21:39:50 +00:00
|
|
|
rows--;
|
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
for (int i = 0; i < rows; i++) {
|
|
|
|
con_line_t *l = Con_BufferLine (con_main, cur_line - i);
|
|
|
|
int len = max (min ((int) l->len, cb->width + 1) - 1, 0);
|
|
|
|
memcpy (dst, con_main->buffer + l->text, len);
|
|
|
|
memset (dst + len, ' ', cb->width - len);
|
|
|
|
dst -= cb->width;
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
2003-05-06 02:19:13 +00:00
|
|
|
}
|
2001-07-16 21:39:50 +00:00
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
static void
|
|
|
|
draw_console (view_t *view)
|
|
|
|
{
|
2003-07-25 22:21:47 +00:00
|
|
|
byte alpha;
|
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
if (con_state == con_fullscreen) {
|
2003-07-25 22:21:47 +00:00
|
|
|
alpha = 255;
|
|
|
|
} else {
|
2022-09-21 08:31:18 +00:00
|
|
|
float y = con_data.screen_view->ylen * con_size;
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
alpha = 255 * con_alpha * view->ylen / y;
|
2003-07-25 22:21:47 +00:00
|
|
|
alpha = min (alpha, 255);
|
|
|
|
}
|
2003-05-06 02:19:13 +00:00
|
|
|
// draw the background
|
2012-04-11 07:38:15 +00:00
|
|
|
r_funcs->Draw_ConsoleBackground (view->ylen, alpha);
|
2003-05-06 02:19:13 +00:00
|
|
|
|
|
|
|
// draw everything else
|
|
|
|
view_draw (view);
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
static void
|
|
|
|
draw_notify (view_t *view)
|
|
|
|
{
|
|
|
|
if (con_data.realtime && notify_tail != notify_head
|
|
|
|
&& *con_data.realtime - notify_times[notify_tail] > con_notifytime) {
|
|
|
|
Draw_ScrollBuffer (notify_buffer, 1);
|
|
|
|
notify_buffer->cursy--;
|
|
|
|
notify_tail++;
|
|
|
|
if (notify_tail >= (NOTIFY_LINES + 1)) {
|
|
|
|
notify_tail -= NOTIFY_LINES + 1;
|
|
|
|
}
|
2003-05-06 02:19:13 +00:00
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
Draw_CharBuffer (view->xabs, view->yabs, notify_buffer);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
resize_notify (view_t *view)
|
|
|
|
{
|
|
|
|
Draw_DestroyBuffer (notify_buffer);
|
|
|
|
notify_buffer = Draw_CreateBuffer (view->xlen / 8, NOTIFY_LINES + 1);
|
|
|
|
ClearNotify ();
|
2001-07-16 21:39:50 +00:00
|
|
|
}
|
2001-07-20 18:51:00 +00:00
|
|
|
|
2002-01-16 21:53:42 +00:00
|
|
|
static void
|
2003-07-25 22:21:47 +00:00
|
|
|
setup_console (void)
|
|
|
|
{
|
2021-11-11 06:43:07 +00:00
|
|
|
float lines = 0;
|
2003-07-25 22:21:47 +00:00
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
switch (con_state) {
|
2021-11-28 13:42:01 +00:00
|
|
|
case con_message:
|
|
|
|
case con_menu:
|
2021-11-08 02:20:04 +00:00
|
|
|
case con_inactive:
|
|
|
|
lines = 0;
|
|
|
|
break;
|
|
|
|
case con_active:
|
2022-09-21 08:31:18 +00:00
|
|
|
lines = con_data.screen_view->ylen * bound (0.2, con_size,
|
2021-11-08 02:20:04 +00:00
|
|
|
1);
|
|
|
|
break;
|
|
|
|
case con_fullscreen:
|
2022-09-21 08:31:18 +00:00
|
|
|
lines = con_data.lines = con_data.screen_view->ylen;
|
2021-11-08 02:20:04 +00:00
|
|
|
break;
|
2003-07-25 22:21:47 +00:00
|
|
|
}
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
if (con_speed) {
|
2012-07-18 05:50:49 +00:00
|
|
|
if (lines < con_data.lines) {
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
con_data.lines -= max (0.2, con_speed) * *con_data.frametime;
|
2012-07-18 05:50:49 +00:00
|
|
|
con_data.lines = max (con_data.lines, lines);
|
|
|
|
} else if (lines > con_data.lines) {
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
con_data.lines += max (0.2, con_speed) * *con_data.frametime;
|
2012-07-18 05:50:49 +00:00
|
|
|
con_data.lines = min (con_data.lines, lines);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
con_data.lines = lines;
|
2003-07-25 22:21:47 +00:00
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (con_data.lines > con_data.screen_view->ylen) {
|
|
|
|
con_data.lines = con_data.screen_view->ylen;
|
2022-03-21 10:21:54 +00:00
|
|
|
}
|
2022-09-21 08:31:18 +00:00
|
|
|
if (con_data.lines >= con_data.screen_view->ylen - r_data->lineadj)
|
2012-02-14 08:28:09 +00:00
|
|
|
r_data->scr_copyeverything = 1;
|
2003-07-25 22:21:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
C_DrawConsole (void)
|
2002-01-16 21:53:42 +00:00
|
|
|
{
|
2003-07-25 22:21:47 +00:00
|
|
|
setup_console ();
|
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
say_line.view->visible = con_state == con_message ? !chat_team : 0;
|
|
|
|
team_line.view->visible = con_state == con_message ? chat_team : 0;
|
2003-07-25 22:21:47 +00:00
|
|
|
console_view->visible = con_data.lines != 0;
|
2021-11-28 13:42:01 +00:00
|
|
|
menu_view->visible = con_state == con_menu;
|
2003-05-06 02:19:13 +00:00
|
|
|
|
2007-04-09 00:22:17 +00:00
|
|
|
con_data.view->draw (con_data.view);
|
2002-01-16 21:53:42 +00:00
|
|
|
}
|
|
|
|
|
2002-01-18 19:19:33 +00:00
|
|
|
static void
|
|
|
|
C_NewMap (void)
|
|
|
|
{
|
2010-08-24 07:20:07 +00:00
|
|
|
static dstring_t *old_gamedir = 0;
|
2002-01-18 19:19:33 +00:00
|
|
|
|
2010-08-24 07:20:07 +00:00
|
|
|
if (!old_gamedir || !strequal (old_gamedir->str, qfs_gamedir->gamedir))
|
2002-01-18 19:19:33 +00:00
|
|
|
Menu_Load ();
|
2010-08-24 07:20:07 +00:00
|
|
|
if (!old_gamedir)
|
|
|
|
old_gamedir = dstring_newstr ();
|
|
|
|
dstring_copystr (old_gamedir, qfs_gamedir->gamedir);
|
2002-01-18 19:19:33 +00:00
|
|
|
}
|
|
|
|
|
2003-05-14 21:17:32 +00:00
|
|
|
static void
|
2003-05-23 02:50:15 +00:00
|
|
|
C_GIB_HUD_Enable_f (void)
|
2003-05-14 21:17:32 +00:00
|
|
|
{
|
|
|
|
hud_view->visible = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2003-05-23 02:50:15 +00:00
|
|
|
C_GIB_HUD_Disable_f (void)
|
2003-05-14 21:17:32 +00:00
|
|
|
{
|
|
|
|
hud_view->visible = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-26 23:03:39 +00:00
|
|
|
static void
|
|
|
|
exec_line (inputline_t *il)
|
|
|
|
{
|
|
|
|
Con_ExecLine (il->line);
|
|
|
|
}
|
2021-11-08 02:20:04 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
con_app_window (const IE_event_t *event)
|
|
|
|
{
|
|
|
|
static int old_xlen;
|
|
|
|
static int old_ylen;
|
|
|
|
if (old_xlen != event->app_window.xlen
|
|
|
|
|| old_ylen != event->app_window.ylen) {
|
|
|
|
old_xlen = event->app_window.xlen;
|
|
|
|
old_ylen = event->app_window.ylen;
|
|
|
|
|
2022-09-21 08:31:18 +00:00
|
|
|
view_resize (con_data.view, con_data.screen_view->xlen,
|
|
|
|
con_data.screen_view->ylen);
|
2022-09-21 03:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
static void
|
|
|
|
con_key_event (const IE_event_t *event)
|
|
|
|
{
|
|
|
|
inputline_t *il;
|
|
|
|
__auto_type key = &event->key;
|
2022-09-20 03:57:22 +00:00
|
|
|
int old_view_offset = view_offset;
|
2021-11-08 02:20:04 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
if (con_curr_keydest == key_menu) {
|
|
|
|
Menu_KeyEvent (key, unicode, down);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (down) {
|
|
|
|
if (key == key_toggleconsole) {
|
|
|
|
ToggleConsole_f ();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
2021-11-28 13:42:01 +00:00
|
|
|
if (con_state == con_message) {
|
2021-11-08 02:20:04 +00:00
|
|
|
if (chat_team) {
|
2022-09-21 03:17:44 +00:00
|
|
|
il = team_line.input_line;
|
2021-11-08 02:20:04 +00:00
|
|
|
} else {
|
2022-09-21 03:17:44 +00:00
|
|
|
il = say_line.input_line;
|
2021-11-08 02:20:04 +00:00
|
|
|
}
|
2021-11-28 13:42:01 +00:00
|
|
|
if (key->code == QFK_ESCAPE) {
|
|
|
|
con_end_message (il);
|
|
|
|
return;
|
|
|
|
}
|
2021-11-08 02:20:04 +00:00
|
|
|
} else {
|
2022-09-20 03:57:22 +00:00
|
|
|
con_buffer_t *cb = con_main;
|
|
|
|
int num_lines = (cb->line_head - cb->line_tail
|
|
|
|
+ cb->max_lines) % cb->max_lines;
|
|
|
|
int con_lines = con_data.lines / 8;
|
2021-11-08 02:20:04 +00:00
|
|
|
switch (key->code) {
|
2021-11-22 05:40:34 +00:00
|
|
|
case QFK_ESCAPE:
|
|
|
|
ToggleConsole_f ();
|
|
|
|
break;
|
2021-11-08 02:20:04 +00:00
|
|
|
case QFK_PAGEUP:
|
2022-09-20 03:57:22 +00:00
|
|
|
view_offset -= 10;
|
|
|
|
if (view_offset <= -(num_lines - con_lines)) {
|
|
|
|
view_offset = -(num_lines - con_lines) + 1;
|
|
|
|
}
|
|
|
|
break;
|
2021-11-08 02:20:04 +00:00
|
|
|
case QFK_PAGEDOWN:
|
2022-09-20 03:57:22 +00:00
|
|
|
view_offset += 10;
|
|
|
|
if (view_offset > 0) {
|
|
|
|
view_offset = 0;
|
|
|
|
}
|
|
|
|
break;
|
2021-11-08 02:20:04 +00:00
|
|
|
#if 0
|
|
|
|
case QFM_WHEEL_UP:
|
2022-09-20 03:57:22 +00:00
|
|
|
break;
|
2021-11-08 02:20:04 +00:00
|
|
|
case QFM_WHEEL_DOWN:
|
2022-09-20 03:57:22 +00:00
|
|
|
break;
|
2021-11-08 02:20:04 +00:00
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2022-09-21 03:17:44 +00:00
|
|
|
il = cmd_line.input_line;
|
2021-11-08 02:20:04 +00:00
|
|
|
}
|
2022-09-20 03:57:22 +00:00
|
|
|
if (old_view_offset != view_offset) {
|
|
|
|
draw_con_scrollback ();
|
|
|
|
}
|
2021-11-28 13:42:01 +00:00
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
if (key->unicode) {
|
|
|
|
Con_ProcessInputLine (il, key->code >= 256 ? (int) key->code
|
|
|
|
: key->unicode);
|
|
|
|
} else {
|
|
|
|
Con_ProcessInputLine (il, key->code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
con_mouse_event (const IE_event_t *event)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
con_event_handler (const IE_event_t *ie_event, void *data)
|
|
|
|
{
|
2021-11-28 13:42:01 +00:00
|
|
|
if (con_state == con_menu) {
|
|
|
|
return Menu_EventHandler (ie_event);
|
|
|
|
}
|
2021-11-08 02:20:04 +00:00
|
|
|
static void (*handlers[ie_event_count]) (const IE_event_t *ie_event) = {
|
2022-09-21 03:17:44 +00:00
|
|
|
[ie_app_window] = con_app_window,
|
2021-11-08 02:20:04 +00:00
|
|
|
[ie_key] = con_key_event,
|
|
|
|
[ie_mouse] = con_mouse_event,
|
|
|
|
};
|
2022-03-30 15:16:29 +00:00
|
|
|
if ((unsigned) ie_event->type >= ie_event_count
|
2021-11-08 02:20:04 +00:00
|
|
|
|| !handlers[ie_event->type]) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
handlers[ie_event->type] (ie_event);
|
|
|
|
return 1;
|
|
|
|
}
|
2013-01-16 04:18:54 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
static void
|
|
|
|
Clear_f (void)
|
|
|
|
{
|
|
|
|
Con_ClearBuffer (con_main);
|
|
|
|
clear_console_text ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
MessageMode_f (void)
|
|
|
|
{
|
|
|
|
if (con_state != con_inactive)
|
|
|
|
return;
|
|
|
|
chat_team = false;
|
|
|
|
C_SetState (con_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
MessageMode2_f (void)
|
|
|
|
{
|
|
|
|
if (con_state != con_inactive)
|
|
|
|
return;
|
|
|
|
chat_team = true;
|
|
|
|
C_SetState (con_message);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
Condump_f (void)
|
|
|
|
{
|
|
|
|
QFile *file;
|
|
|
|
const char *name;
|
|
|
|
|
|
|
|
if (Cmd_Argc () != 2) {
|
|
|
|
Sys_Printf ("usage: condump <filename>\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strchr (Cmd_Argv (1), '/') || strchr (Cmd_Argv (1), '\\')) {
|
|
|
|
Sys_Printf ("invalid character in filename\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
name = va (0, "%s/%s.txt", qfs_gamedir->dir.def, Cmd_Argv (1));//FIXME
|
|
|
|
|
|
|
|
if (!(file = QFS_WOpen (name, 0))) {
|
|
|
|
Sys_Printf ("could not open %s for writing: %s\n", name,
|
|
|
|
strerror (errno));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (uint32_t line_ind = con->line_tail; line_ind != con->line_head;
|
|
|
|
line_ind = (line_ind + 1) % con->max_lines) {
|
|
|
|
con_line_t *line = &con->lines[line_ind];
|
|
|
|
Qwrite (file, con->buffer + line->text, line->len);
|
|
|
|
}
|
|
|
|
|
|
|
|
Qclose (file);
|
|
|
|
}
|
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
static void
|
|
|
|
C_Init (void)
|
|
|
|
{
|
|
|
|
view_t *view;
|
|
|
|
|
2004-01-20 05:57:39 +00:00
|
|
|
#ifdef __QNXNTO__
|
|
|
|
setlocale (LC_ALL, "C-TRADITIONAL");
|
|
|
|
#endif
|
|
|
|
|
2021-11-08 02:20:04 +00:00
|
|
|
con_event_id = IE_Add_Handler (con_event_handler, 0);
|
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
Menu_Init ();
|
|
|
|
|
[cvar] Make cvars properly typed
This is an extremely extensive patch as it hits every cvar, and every
usage of the cvars. Cvars no longer store the value they control,
instead, they use a cexpr value object to reference the value and
specify the value's type (currently, a null type is used for strings).
Non-string cvars are passed through cexpr, allowing expressions in the
cvars' settings. Also, cvars have returned to an enhanced version of the
original (id quake) registration scheme.
As a minor benefit, relevant code having direct access to the
cvar-controlled variables is probably a slight optimization as it
removed a pointer dereference, and the variables can be located for data
locality.
The static cvar descriptors are made private as an additional safety
layer, though there's nothing stopping external modification via
Cvar_FindVar (which is needed for adding listeners).
While not used yet (partly due to working out the design), cvars can
have a validation function.
Registering a cvar allows a primary listener (and its data) to be
specified: it will always be called first when the cvar is modified. The
combination of proper listeners and direct access to the controlled
variable greatly simplifies the more complex cvar interactions as much
less null checking is required, and there's no need for one cvar's
callback to call another's.
nq-x11 is known to work at least well enough for the demos. More testing
will come.
2022-04-23 03:22:45 +00:00
|
|
|
Cvar_Register (&con_notifytime_cvar, 0, 0);
|
|
|
|
|
|
|
|
Cvar_Register (&con_alpha_cvar, 0, 0);
|
|
|
|
Cvar_Register (&con_size_cvar, 0, 0);
|
|
|
|
Cvar_Register (&con_speed_cvar, 0, 0);
|
|
|
|
Cvar_Register (&cl_conmode_cvar, 0, 0);
|
2003-07-25 22:21:47 +00:00
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
con_debuglog = COM_CheckParm ("-condebug");
|
|
|
|
|
2009-12-23 02:08:49 +00:00
|
|
|
// The console will get resized, so assume initial size is 320x200
|
2003-05-06 02:19:13 +00:00
|
|
|
con_data.view = view_new (0, 0, 320, 200, grav_northeast);
|
|
|
|
console_view = view_new (0, 0, 320, 200, grav_northwest);
|
2022-09-20 03:57:22 +00:00
|
|
|
notify_view = view_new (8, 8, 312, NOTIFY_LINES * 8, grav_northwest);
|
2003-05-06 02:19:13 +00:00
|
|
|
menu_view = view_new (0, 0, 320, 200, grav_center);
|
2009-12-23 02:08:49 +00:00
|
|
|
hud_view = view_new (0, 0, 320, 200, grav_northeast);
|
2003-05-06 02:19:13 +00:00
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
cmd_line.prompt = "";
|
|
|
|
cmd_line.input_line = Con_CreateInputLine (32, MAXCMDLINE, ']');
|
|
|
|
cmd_line.input_line->complete = Con_BasicCompleteCommandLine;
|
|
|
|
cmd_line.input_line->enter = exec_line;
|
|
|
|
cmd_line.input_line->width = con_linewidth;
|
|
|
|
cmd_line.input_line->user_data = &cmd_line;
|
|
|
|
cmd_line.input_line->draw = input_line_draw;
|
|
|
|
cmd_line.view = view_new_data (0, 12, 320, 10, grav_southwest, &cmd_line);
|
|
|
|
cmd_line.view->draw = draw_input;
|
|
|
|
cmd_line.view->setgeometry = resize_input;
|
|
|
|
cmd_line.view->resize_x = 1;
|
|
|
|
view_add (console_view, cmd_line.view);
|
|
|
|
|
|
|
|
say_line.prompt = "say:";
|
|
|
|
say_line.input_line = Con_CreateInputLine (32, MAXCMDLINE, ' ');
|
|
|
|
say_line.input_line->complete = 0;
|
|
|
|
say_line.input_line->enter = C_Say;
|
|
|
|
say_line.input_line->width = con_linewidth - 5;
|
|
|
|
say_line.input_line->user_data = &say_line;
|
|
|
|
say_line.input_line->draw = input_line_draw;
|
|
|
|
say_line.view = view_new_data (0, 0, 320, 8, grav_northwest, &say_line);
|
|
|
|
say_line.view->draw = draw_input;
|
|
|
|
say_line.view->setgeometry = resize_input;
|
|
|
|
say_line.view->visible = 0;
|
|
|
|
say_line.view->resize_x = 1;
|
|
|
|
view_add (con_data.view, say_line.view);
|
|
|
|
|
|
|
|
team_line.prompt = "say_team:";
|
|
|
|
team_line.input_line = Con_CreateInputLine (32, MAXCMDLINE, ' ');
|
|
|
|
team_line.input_line->complete = 0;
|
|
|
|
team_line.input_line->enter = C_SayTeam;
|
|
|
|
team_line.input_line->width = con_linewidth - 10;
|
|
|
|
team_line.input_line->user_data = &team_line;
|
|
|
|
team_line.input_line->draw = input_line_draw;
|
|
|
|
team_line.view = view_new_data (0, 0, 320, 8, grav_northwest, &team_line);
|
|
|
|
team_line.view->draw = draw_input;
|
|
|
|
team_line.view->setgeometry = resize_input;
|
|
|
|
team_line.view->visible = 0;
|
|
|
|
team_line.view->resize_x = 1;
|
|
|
|
view_add (con_data.view, team_line.view);
|
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
view_add (con_data.view, notify_view);
|
2003-05-14 21:17:32 +00:00
|
|
|
view_add (con_data.view, hud_view);
|
2003-05-06 02:19:13 +00:00
|
|
|
view_add (con_data.view, console_view);
|
|
|
|
view_add (con_data.view, menu_view);
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
console_buffer = Draw_CreateBuffer (console_view->xlen / 8,
|
|
|
|
console_view->ylen / 8);
|
|
|
|
Draw_ClearBuffer (console_buffer);
|
|
|
|
con_main = Con_CreateBuffer (CON_BUFFER_SIZE, CON_LINES);
|
2003-05-06 02:19:13 +00:00
|
|
|
console_view->draw = draw_console;
|
2003-05-06 02:25:46 +00:00
|
|
|
console_view->visible = 0;
|
2003-05-06 02:19:13 +00:00
|
|
|
console_view->resize_x = console_view->resize_y = 1;
|
|
|
|
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
notify_buffer = Draw_CreateBuffer (notify_view->xlen / 8, NOTIFY_LINES + 1);
|
|
|
|
Draw_ClearBuffer (notify_buffer);
|
2003-05-06 02:19:13 +00:00
|
|
|
notify_view->draw = draw_notify;
|
2022-09-20 03:57:22 +00:00
|
|
|
notify_view->setgeometry = resize_notify;
|
2003-05-06 02:19:13 +00:00
|
|
|
notify_view->resize_x = 1;
|
|
|
|
|
|
|
|
menu_view->draw = Menu_Draw;
|
2003-05-06 02:25:46 +00:00
|
|
|
menu_view->visible = 0;
|
2003-05-06 02:19:13 +00:00
|
|
|
|
2003-05-14 21:17:32 +00:00
|
|
|
hud_view->draw = Menu_Draw_Hud;
|
|
|
|
hud_view->visible = 0;
|
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
view = view_new (8, 16, 320, 168, grav_southwest);
|
2003-05-06 02:19:13 +00:00
|
|
|
view->draw = draw_console_text;
|
2022-09-21 03:17:44 +00:00
|
|
|
view->setgeometry = resize_console_text;
|
2003-05-06 02:19:13 +00:00
|
|
|
view->resize_x = view->resize_y = 1;
|
|
|
|
view_add (console_view, view);
|
|
|
|
|
|
|
|
view = view_new (0, 2, 320, 11, grav_southwest);
|
|
|
|
view->draw = draw_download;
|
|
|
|
view->resize_x = 1;
|
|
|
|
view_add (console_view, view);
|
|
|
|
|
2022-09-20 03:57:22 +00:00
|
|
|
con = con_main;
|
2003-05-06 02:19:13 +00:00
|
|
|
con_linewidth = -1;
|
|
|
|
|
2022-09-21 03:17:44 +00:00
|
|
|
|
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
|
2007-11-06 10:17:14 +00:00
|
|
|
Sys_Printf ("Console initialized.\n");
|
2003-05-06 02:19:13 +00:00
|
|
|
|
|
|
|
// register our commands
|
|
|
|
Cmd_AddCommand ("toggleconsole", ToggleConsole_f,
|
|
|
|
"Toggle the console up and down");
|
2021-11-28 12:17:06 +00:00
|
|
|
Cmd_AddCommand ("togglechat", ToggleConsole_f,
|
2003-05-06 02:19:13 +00:00
|
|
|
"Toggle the console up and down");
|
|
|
|
Cmd_AddCommand ("messagemode", MessageMode_f,
|
|
|
|
"Prompt to send a message to everyone");
|
|
|
|
Cmd_AddCommand ("messagemode2", MessageMode2_f,
|
|
|
|
"Prompt to send a message to only people on your team");
|
|
|
|
Cmd_AddCommand ("clear", Clear_f, "Clear the console");
|
|
|
|
Cmd_AddCommand ("condump", Condump_f, "dump the console text to a "
|
|
|
|
"file");
|
2012-05-21 23:23:22 +00:00
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
// register GIB builtins
|
2003-05-23 02:50:15 +00:00
|
|
|
GIB_Builtin_Add ("HUD::enable", C_GIB_HUD_Enable_f);
|
|
|
|
GIB_Builtin_Add ("HUD::disable", C_GIB_HUD_Disable_f);
|
2003-05-14 21:17:32 +00:00
|
|
|
|
2003-05-06 02:19:13 +00:00
|
|
|
con_initialized = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2019-07-12 14:15:26 +00:00
|
|
|
C_shutdown (void)
|
2003-05-06 02:19:13 +00:00
|
|
|
{
|
2021-12-29 12:50:38 +00:00
|
|
|
IE_Remove_Handler (con_event_id);
|
2003-05-06 02:19:13 +00:00
|
|
|
}
|
|
|
|
|
2001-07-20 18:51:00 +00:00
|
|
|
static general_funcs_t plugin_info_general_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.init = C_Init,
|
|
|
|
.shutdown = C_shutdown,
|
2001-07-20 18:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static console_funcs_t plugin_info_console_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.print = C_Print,
|
|
|
|
.draw_console = C_DrawConsole,
|
|
|
|
.new_map = C_NewMap,
|
2021-11-08 02:20:04 +00:00
|
|
|
.set_state = C_SetState,
|
2001-07-20 18:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_funcs_t plugin_info_funcs = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.general = &plugin_info_general_funcs,
|
|
|
|
.console = &plugin_info_console_funcs,
|
2001-07-20 18:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_data_t plugin_info_data = {
|
2021-06-26 06:43:17 +00:00
|
|
|
.general = &plugin_info_general_data,
|
|
|
|
.console = &con_data,
|
2001-07-20 18:51:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static plugin_t plugin_info = {
|
|
|
|
qfp_console,
|
|
|
|
0,
|
|
|
|
QFPLUGIN_VERSION,
|
|
|
|
"0.1",
|
|
|
|
"client console driver",
|
|
|
|
"Copyright (C) 1996-1997 id Software, Inc.\n"
|
2001-09-10 12:56:23 +00:00
|
|
|
"Copyright (C) 1999,2000,2001 contributors of the QuakeForge "
|
|
|
|
"project\n"
|
2001-07-20 18:51:00 +00:00
|
|
|
"Please see the file \"AUTHORS\" for a list of contributors",
|
|
|
|
&plugin_info_funcs,
|
|
|
|
&plugin_info_data,
|
|
|
|
};
|
|
|
|
|
2003-08-01 19:53:46 +00:00
|
|
|
PLUGIN_INFO(console, client)
|
2001-07-20 18:51:00 +00:00
|
|
|
{
|
|
|
|
return &plugin_info;
|
|
|
|
}
|