2001-02-19 21:15:25 +00:00
|
|
|
/*
|
|
|
|
console.c
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
(description)
|
2001-02-19 21:15:25 +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
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
# include "config.h"
|
|
|
|
#endif
|
2001-02-21 21:44:57 +00:00
|
|
|
#ifdef HAVE_STRING_H
|
|
|
|
# include <string.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif
|
2001-02-21 21:44:57 +00:00
|
|
|
#ifdef HAVE_STRINGS_H
|
|
|
|
# include <strings.h>
|
2001-02-19 21:15:25 +00:00
|
|
|
#endif
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "client.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/cmd.h"
|
|
|
|
#include "QF/console.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
#include "draw.h"
|
|
|
|
#include "host.h"
|
2001-04-10 21:45:42 +00:00
|
|
|
#include "QF/input.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/keys.h"
|
|
|
|
#include "QF/qargs.h"
|
2001-02-21 21:44:57 +00:00
|
|
|
#include "screen.h"
|
2001-03-27 20:33:07 +00:00
|
|
|
#include "QF/sys.h"
|
|
|
|
#include "QF/va.h"
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
int con_ormask;
|
|
|
|
console_t con_main;
|
|
|
|
console_t con_chat;
|
2001-02-28 10:49:39 +00:00
|
|
|
console_t *con; // point to either con_main or con_chat
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
int con_linewidth; // characters across screen
|
|
|
|
int con_totallines; // total lines in console scrollback
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
float con_cursorspeed = 4;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
cvar_t *con_notifytime; // seconds
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define NUM_CON_TIMES 4
|
2001-02-28 10:49:39 +00:00
|
|
|
float con_times[NUM_CON_TIMES]; // realtime time the line was generated
|
2001-02-21 21:44:57 +00:00
|
|
|
// for transparent notify lines
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
int con_vislines;
|
2001-02-28 10:49:39 +00:00
|
|
|
int con_notifylines; // scan lines to clear for notify lines
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
qboolean con_debuglog;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
#define MAXCMDLINE 256
|
2001-02-21 21:44:57 +00:00
|
|
|
extern char key_lines[32][MAXCMDLINE];
|
|
|
|
extern int edit_line;
|
|
|
|
extern int key_linepos;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
qboolean con_initialized;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Key_ClearTyping (void)
|
|
|
|
{
|
|
|
|
key_lines[edit_line][1] = 0; // clear any typing
|
|
|
|
key_linepos = 1;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_ToggleConsole_f
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_ToggleConsole_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
Key_ClearTyping ();
|
|
|
|
|
|
|
|
if (key_dest == key_console) {
|
2001-02-28 10:49:39 +00:00
|
|
|
if (cls.state == ca_active)
|
2001-02-19 21:15:25 +00:00
|
|
|
key_dest = key_game;
|
2001-02-21 21:44:57 +00:00
|
|
|
} else
|
2001-02-19 21:15:25 +00:00
|
|
|
key_dest = key_console;
|
2001-02-21 21:44:57 +00:00
|
|
|
|
|
|
|
Con_ClearNotify ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_ToggleChat_f
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_ToggleChat_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
Key_ClearTyping ();
|
|
|
|
|
|
|
|
if (key_dest == key_console) {
|
2001-02-28 10:49:39 +00:00
|
|
|
if (cls.state == ca_active)
|
2001-02-21 21:44:57 +00:00
|
|
|
key_dest = key_game;
|
|
|
|
} else
|
|
|
|
key_dest = key_console;
|
|
|
|
|
|
|
|
Con_ClearNotify ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_Clear_f
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_Clear_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
con_main.numlines = 0;
|
|
|
|
con_chat.numlines = 0;
|
|
|
|
memset (con_main.text, ' ', CON_TEXTSIZE);
|
|
|
|
memset (con_chat.text, ' ', CON_TEXTSIZE);
|
|
|
|
con_main.display = con_main.current;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_ClearNotify
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_ClearNotify (void)
|
|
|
|
{
|
|
|
|
int i;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
for (i = 0; i < NUM_CON_TIMES; i++)
|
|
|
|
con_times[i] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Con_MessageMode_f
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Con_MessageMode_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-28 10:49:39 +00:00
|
|
|
if (cls.state != ca_active)
|
2001-02-21 21:44:57 +00:00
|
|
|
return;
|
|
|
|
chat_team = false;
|
2001-02-19 21:15:25 +00:00
|
|
|
key_dest = key_message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_MessageMode2_f
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_MessageMode2_f (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-28 10:49:39 +00:00
|
|
|
if (cls.state != ca_active)
|
2001-02-21 21:44:57 +00:00
|
|
|
return;
|
|
|
|
chat_team = true;
|
2001-02-19 21:15:25 +00:00
|
|
|
key_dest = key_message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_Resize
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_Resize (console_t *con)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
int i, j, width, oldwidth, oldtotallines, numlines, numchars;
|
|
|
|
char tbuf[CON_TEXTSIZE];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
width = (vid.width >> 3) - 2;
|
|
|
|
|
|
|
|
if (width == con_linewidth)
|
|
|
|
return;
|
|
|
|
|
2001-02-26 06:48:02 +00:00
|
|
|
if (width < 1) { // video hasn't been initialized yet
|
2001-02-19 21:15:25 +00:00
|
|
|
width = 38;
|
|
|
|
con_linewidth = width;
|
|
|
|
con_totallines = CON_TEXTSIZE / con_linewidth;
|
2001-02-21 21:44:57 +00:00
|
|
|
memset (con->text, ' ', CON_TEXTSIZE);
|
|
|
|
} else {
|
2001-02-19 21:15:25 +00:00
|
|
|
oldwidth = con_linewidth;
|
|
|
|
con_linewidth = width;
|
|
|
|
oldtotallines = con_totallines;
|
|
|
|
con_totallines = CON_TEXTSIZE / con_linewidth;
|
|
|
|
numlines = oldtotallines;
|
|
|
|
|
|
|
|
if (con_totallines < numlines)
|
|
|
|
numlines = con_totallines;
|
|
|
|
|
|
|
|
numchars = oldwidth;
|
2001-02-21 21:44:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (con_linewidth < numchars)
|
|
|
|
numchars = con_linewidth;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
memcpy (tbuf, con->text, CON_TEXTSIZE);
|
|
|
|
memset (con->text, ' ', CON_TEXTSIZE);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
for (i = 0; i < numlines; i++) {
|
|
|
|
for (j = 0; j < numchars; j++) {
|
|
|
|
con->text[(con_totallines - 1 - i) * con_linewidth + j] =
|
|
|
|
tbuf[((con->current - i + oldtotallines) %
|
|
|
|
oldtotallines) * oldwidth + j];
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Con_ClearNotify ();
|
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
con->current = con_totallines - 1;
|
|
|
|
con->display = con->current;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_CheckResize
|
|
|
|
|
|
|
|
If the line width has changed, reformat the buffer.
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_CheckResize (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_Resize (&con_main);
|
|
|
|
Con_Resize (&con_chat);
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
/*
|
|
|
|
Con_Init
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
Con_Init (void)
|
|
|
|
{
|
|
|
|
con_debuglog = COM_CheckParm ("-condebug");
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
con = &con_main;
|
2001-02-19 21:15:25 +00:00
|
|
|
con_linewidth = -1;
|
|
|
|
Con_CheckResize ();
|
2001-02-21 21:44:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
Con_Printf ("Console initialized.\n");
|
|
|
|
|
|
|
|
//
|
|
|
|
// register our commands
|
|
|
|
//
|
2001-02-26 06:48:02 +00:00
|
|
|
Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f,
|
|
|
|
"Toggle the console up and down");
|
|
|
|
Cmd_AddCommand ("togglechat", Con_ToggleChat_f,
|
|
|
|
"Toggle the console up and down");
|
|
|
|
Cmd_AddCommand ("messagemode", Con_MessageMode_f,
|
|
|
|
"Prompt to send a message to everyone");
|
|
|
|
Cmd_AddCommand ("messagemode2", Con_MessageMode2_f,
|
|
|
|
"Prompt to send a message to only people on your team");
|
2001-02-21 21:44:57 +00:00
|
|
|
Cmd_AddCommand ("clear", Con_Clear_f, "Clear the console");
|
2001-02-19 21:15:25 +00:00
|
|
|
con_initialized = true;
|
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_Init_Cvars (void)
|
|
|
|
{
|
2001-02-26 06:48:02 +00:00
|
|
|
con_notifytime =
|
2001-03-31 01:02:52 +00:00
|
|
|
Cvar_Get ("con_notifytime", "3", CVAR_NONE, 0,
|
2001-02-26 06:48:02 +00:00
|
|
|
"How long in seconds messages are displayed on screen");
|
2001-02-21 21:44:57 +00:00
|
|
|
}
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_Linefeed
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_Linefeed (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
con->x = 0;
|
|
|
|
if (con->display == con->current)
|
|
|
|
con->display++;
|
|
|
|
con->current++;
|
|
|
|
if (con->numlines < con_totallines)
|
|
|
|
con->numlines++;
|
2001-02-28 10:49:39 +00:00
|
|
|
memset (&con->text[(con->current % con_totallines) * con_linewidth],
|
|
|
|
' ', con_linewidth);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_Print
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +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.
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_Print (char *txt)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
int y;
|
|
|
|
int c, l;
|
|
|
|
static int cr;
|
|
|
|
int mask;
|
|
|
|
|
2001-02-28 10:49:39 +00:00
|
|
|
// echo to debugging console
|
|
|
|
Sys_Printf ("%s", txt);
|
|
|
|
|
|
|
|
// log all messages to file
|
|
|
|
if (con_debuglog)
|
|
|
|
Sys_DebugLog (va ("%s/qconsole.log", com_gamedir), "%s", txt);
|
|
|
|
|
|
|
|
if (!con_initialized)
|
|
|
|
return;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
if (txt[0] == 1 || txt[0] == 2) {
|
|
|
|
mask = 128; // go to colored text
|
2001-02-19 21:15:25 +00:00
|
|
|
txt++;
|
2001-02-21 21:44:57 +00:00
|
|
|
} else
|
2001-02-19 21:15:25 +00:00
|
|
|
mask = 0;
|
|
|
|
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
while ((c = *txt)) {
|
|
|
|
// count word length
|
|
|
|
for (l = 0; l < con_linewidth; l++)
|
|
|
|
if (txt[l] <= ' ')
|
2001-02-19 21:15:25 +00:00
|
|
|
break;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
// word wrap
|
|
|
|
if (l != con_linewidth && (con->x + l > con_linewidth))
|
|
|
|
con->x = 0;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
txt++;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
if (cr) {
|
|
|
|
con->current--;
|
2001-02-19 21:15:25 +00:00
|
|
|
cr = false;
|
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
|
|
|
|
if (!con->x) {
|
2001-02-19 21:15:25 +00:00
|
|
|
Con_Linefeed ();
|
2001-02-21 21:44:57 +00:00
|
|
|
// mark time for transparent overlay
|
|
|
|
if (con->current >= 0)
|
|
|
|
con_times[con->current % NUM_CON_TIMES] = realtime;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
switch (c) {
|
|
|
|
case '\n':
|
2001-02-28 10:49:39 +00:00
|
|
|
con->x = 0;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
case '\r':
|
2001-02-28 10:49:39 +00:00
|
|
|
con->x = 0;
|
|
|
|
cr = 1;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
default: // display character and advance
|
2001-02-28 10:49:39 +00:00
|
|
|
y = con->current % con_totallines;
|
|
|
|
con->text[y * con_linewidth + con->x] = c | mask | con_ormask;
|
|
|
|
con->x++;
|
|
|
|
if (con->x >= con_linewidth)
|
|
|
|
con->x = 0;
|
|
|
|
break;
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
DRAWING
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_DrawInput
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
The input line scrolls horizontally if typing goes beyond the right edge
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_DrawInput (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
int y;
|
|
|
|
int i;
|
|
|
|
char *text;
|
|
|
|
char temp[MAXCMDLINE];
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-28 10:49:39 +00:00
|
|
|
if (key_dest != key_console && cls.state == ca_active)
|
2001-02-22 00:15:03 +00:00
|
|
|
return; // don't draw anything (always draw
|
2001-02-26 06:48:02 +00:00
|
|
|
// if not active)
|
2001-02-21 21:44:57 +00:00
|
|
|
|
|
|
|
text = strcpy (temp, key_lines[edit_line]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
// fill out remainder with spaces
|
2001-02-21 21:44:57 +00:00
|
|
|
for (i = strlen (text); i < MAXCMDLINE; i++)
|
2001-02-19 21:15:25 +00:00
|
|
|
text[i] = ' ';
|
2001-02-21 21:44:57 +00:00
|
|
|
|
|
|
|
// add the cursor frame
|
|
|
|
if ((int) (realtime * con_cursorspeed) & 1)
|
|
|
|
text[key_linepos] = 11;
|
|
|
|
|
|
|
|
// prestep if horizontally scrolling
|
2001-02-19 21:15:25 +00:00
|
|
|
if (key_linepos >= con_linewidth)
|
|
|
|
text += 1 + key_linepos - con_linewidth;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
// draw it
|
|
|
|
y = con_vislines - 22;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
for (i = 0; i < con_linewidth; i++)
|
|
|
|
Draw_Character8 ((i + 1) << 3, con_vislines - 22, text[i]);
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_DrawNotify
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
Draws the last few lines of output transparently over the game top
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_DrawNotify (void)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
int x, v;
|
|
|
|
char *text;
|
|
|
|
int i;
|
|
|
|
float time;
|
|
|
|
char *s;
|
|
|
|
int skip;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
v = 0;
|
2001-02-21 21:44:57 +00:00
|
|
|
for (i = con->current - NUM_CON_TIMES + 1; i <= con->current; i++) {
|
2001-02-19 21:15:25 +00:00
|
|
|
if (i < 0)
|
|
|
|
continue;
|
|
|
|
time = con_times[i % NUM_CON_TIMES];
|
|
|
|
if (time == 0)
|
|
|
|
continue;
|
|
|
|
time = realtime - time;
|
|
|
|
if (time > con_notifytime->value)
|
|
|
|
continue;
|
2001-02-21 21:44:57 +00:00
|
|
|
text = con->text + (i % con_totallines) * con_linewidth;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
clearnotify = 0;
|
|
|
|
scr_copytop = 1;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
for (x = 0; x < con_linewidth; x++)
|
|
|
|
Draw_Character8 ((x + 1) << 3, v, text[x]);
|
2001-02-19 21:15:25 +00:00
|
|
|
|
|
|
|
v += 8;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
if (key_dest == key_message) {
|
2001-02-19 21:15:25 +00:00
|
|
|
clearnotify = 0;
|
|
|
|
scr_copytop = 1;
|
2001-02-21 21:44:57 +00:00
|
|
|
|
|
|
|
if (chat_team) {
|
|
|
|
Draw_String8 (8, v, "say_team:");
|
|
|
|
skip = 11;
|
|
|
|
} else {
|
|
|
|
Draw_String8 (8, v, "say:");
|
|
|
|
skip = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
s = chat_buffer;
|
|
|
|
if (chat_bufferlen > (vid.width >> 3) - (skip + 1))
|
|
|
|
s += chat_bufferlen - ((vid.width >> 3) - (skip + 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
x = 0;
|
2001-02-21 21:44:57 +00:00
|
|
|
while (s[x]) {
|
|
|
|
Draw_Character8 ((x + skip) << 3, v, s[x]);
|
2001-02-19 21:15:25 +00:00
|
|
|
x++;
|
|
|
|
}
|
2001-02-21 21:44:57 +00:00
|
|
|
Draw_Character8 ((x + skip) << 3, v,
|
|
|
|
10 + ((int) (realtime * con_cursorspeed) & 1));
|
2001-02-19 21:15:25 +00:00
|
|
|
v += 8;
|
|
|
|
}
|
2001-02-21 21:44:57 +00:00
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (v > con_notifylines)
|
|
|
|
con_notifylines = v;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2001-02-21 21:44:57 +00:00
|
|
|
Con_DrawConsole
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
Draws the console with the solid background
|
2001-02-19 21:15:25 +00:00
|
|
|
*/
|
2001-02-21 21:44:57 +00:00
|
|
|
void
|
|
|
|
Con_DrawConsole (int lines)
|
2001-02-19 21:15:25 +00:00
|
|
|
{
|
2001-02-21 21:44:57 +00:00
|
|
|
int i, x, y;
|
|
|
|
int rows;
|
|
|
|
char *text;
|
|
|
|
int row;
|
|
|
|
|
2001-02-19 21:15:25 +00:00
|
|
|
if (lines <= 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// draw the background
|
|
|
|
Draw_ConsoleBackground (lines);
|
|
|
|
|
|
|
|
// draw the text
|
|
|
|
con_vislines = lines;
|
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
// changed to line things up better
|
|
|
|
rows = (lines - 22) >> 3; // rows of text to draw
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
y = lines - 30;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
// draw from the bottom up
|
|
|
|
if (con->display != con->current) {
|
|
|
|
// draw arrows to show the buffer is backscrolled
|
|
|
|
for (x = 0; x < con_linewidth; x += 4)
|
|
|
|
Draw_Character8 ((x + 1) << 3, y, '^');
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
y -= 8;
|
|
|
|
rows--;
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
row = con->display;
|
|
|
|
for (i = 0; i < rows; i++, y -= 8, row--) {
|
|
|
|
if (row < 0)
|
|
|
|
break;
|
|
|
|
if (con->current - row >= con_totallines)
|
|
|
|
break; // past scrollback wrap point
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
text = con->text + (row % con_totallines) * con_linewidth;
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
for (x = 0; x < con_linewidth; x++)
|
|
|
|
Draw_Character8 ((x + 1) << 3, y, text[x]);
|
|
|
|
}
|
2001-02-19 21:15:25 +00:00
|
|
|
|
2001-02-21 21:44:57 +00:00
|
|
|
// draw the input prompt, user text, and cursor if desired
|
|
|
|
Con_DrawInput ();
|
2001-02-19 21:15:25 +00:00
|
|
|
}
|
2001-02-28 10:49:39 +00:00
|
|
|
|
2001-03-01 02:51:51 +00:00
|
|
|
void
|
|
|
|
Con_DrawDownload (int lines)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|