| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #ifdef NeXT |
| | #include <libc.h> |
| | #endif |
| | #ifndef _MSC_VER |
| | #include <unistd.h> |
| | #endif |
| | #include <fcntl.h> |
| | #include "quakedef.h" |
| |
|
| | int con_linewidth; |
| |
|
| | float con_cursorspeed = 4; |
| |
|
| | #define CON_TEXTSIZE 16384 |
| |
|
| | qboolean con_forcedup; |
| |
|
| | int con_totallines; |
| | int con_backscroll; |
| | int con_current; |
| | int con_x; |
| | char *con_text=0; |
| |
|
| | cvar_t con_notifytime = {"con_notifytime","3"}; |
| |
|
| | #define NUM_CON_TIMES 4 |
| | float con_times[NUM_CON_TIMES]; |
| | |
| |
|
| | int con_vislines; |
| |
|
| | qboolean con_debuglog; |
| |
|
| | #define MAXCMDLINE 256 |
| | extern char key_lines[32][MAXCMDLINE]; |
| | extern int edit_line; |
| | extern int key_linepos; |
| | |
| |
|
| | qboolean con_initialized; |
| |
|
| | int con_notifylines; |
| |
|
| | extern void M_Menu_Main_f (void); |
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_ToggleConsole_f (void) |
| | { |
| | if (key_dest == key_console) |
| | { |
| | if (cls.state == ca_connected) |
| | { |
| | key_dest = key_game; |
| | key_lines[edit_line][1] = 0; |
| | key_linepos = 1; |
| | } |
| | else |
| | { |
| | M_Menu_Main_f (); |
| | } |
| | } |
| | else |
| | key_dest = key_console; |
| | |
| | SCR_EndLoadingPlaque (); |
| | memset (con_times, 0, sizeof(con_times)); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_Clear_f (void) |
| | { |
| | if (con_text) |
| | Q_memset (con_text, ' ', CON_TEXTSIZE); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_ClearNotify (void) |
| | { |
| | int i; |
| | |
| | for (i=0 ; i<NUM_CON_TIMES ; i++) |
| | con_times[i] = 0; |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | extern qboolean team_message; |
| |
|
| | void Con_MessageMode_f (void) |
| | { |
| | key_dest = key_message; |
| | team_message = false; |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_MessageMode2_f (void) |
| | { |
| | key_dest = key_message; |
| | team_message = true; |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_CheckResize (void) |
| | { |
| | int i, j, width, oldwidth, oldtotallines, numlines, numchars; |
| | char tbuf[CON_TEXTSIZE]; |
| |
|
| | width = (vid.width >> 3) - 2; |
| |
|
| | if (width == con_linewidth) |
| | return; |
| |
|
| | if (width < 1) |
| | { |
| | width = 38; |
| | con_linewidth = width; |
| | con_totallines = CON_TEXTSIZE / con_linewidth; |
| | Q_memset (con_text, ' ', CON_TEXTSIZE); |
| | } |
| | else |
| | { |
| | 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; |
| | |
| | if (con_linewidth < numchars) |
| | numchars = con_linewidth; |
| |
|
| | Q_memcpy (tbuf, con_text, CON_TEXTSIZE); |
| | Q_memset (con_text, ' ', CON_TEXTSIZE); |
| |
|
| | 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]; |
| | } |
| | } |
| |
|
| | Con_ClearNotify (); |
| | } |
| |
|
| | con_backscroll = 0; |
| | con_current = con_totallines - 1; |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_Init (void) |
| | { |
| | #define MAXGAMEDIRLEN 1000 |
| | char temp[MAXGAMEDIRLEN+1]; |
| | char *t2 = "/qconsole.log"; |
| |
|
| | con_debuglog = COM_CheckParm("-condebug"); |
| |
|
| | if (con_debuglog) |
| | { |
| | if (strlen (com_gamedir) < (MAXGAMEDIRLEN - strlen (t2))) |
| | { |
| | sprintf (temp, "%s%s", com_gamedir, t2); |
| | unlink (temp); |
| | } |
| | } |
| |
|
| | con_text = Hunk_AllocName (CON_TEXTSIZE, "context"); |
| | Q_memset (con_text, ' ', CON_TEXTSIZE); |
| | con_linewidth = -1; |
| | Con_CheckResize (); |
| | |
| | Con_Printf ("Console initialized.\n"); |
| |
|
| | |
| | |
| | |
| | Cvar_RegisterVariable (&con_notifytime); |
| |
|
| | Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f); |
| | Cmd_AddCommand ("messagemode", Con_MessageMode_f); |
| | Cmd_AddCommand ("messagemode2", Con_MessageMode2_f); |
| | Cmd_AddCommand ("clear", Con_Clear_f); |
| | con_initialized = true; |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_Linefeed (void) |
| | { |
| | con_x = 0; |
| | con_current++; |
| | Q_memset (&con_text[(con_current%con_totallines)*con_linewidth] |
| | , ' ', con_linewidth); |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_Print (char *txt) |
| | { |
| | int y; |
| | int c, l; |
| | static int cr; |
| | int mask; |
| | |
| | con_backscroll = 0; |
| |
|
| | if (txt[0] == 1) |
| | { |
| | mask = 128; |
| | S_LocalSound ("misc/talk.wav"); |
| | |
| | txt++; |
| | } |
| | else if (txt[0] == 2) |
| | { |
| | mask = 128; |
| | txt++; |
| | } |
| | else |
| | mask = 0; |
| |
|
| |
|
| | while ( (c = *txt) ) |
| | { |
| | |
| | for (l=0 ; l< con_linewidth ; l++) |
| | if ( txt[l] <= ' ') |
| | break; |
| |
|
| | |
| | if (l != con_linewidth && (con_x + l > con_linewidth) ) |
| | con_x = 0; |
| |
|
| | txt++; |
| |
|
| | if (cr) |
| | { |
| | con_current--; |
| | cr = false; |
| | } |
| |
|
| | |
| | if (!con_x) |
| | { |
| | Con_Linefeed (); |
| | |
| | if (con_current >= 0) |
| | con_times[con_current % NUM_CON_TIMES] = realtime; |
| | } |
| |
|
| | switch (c) |
| | { |
| | case '\n': |
| | con_x = 0; |
| | break; |
| |
|
| | case '\r': |
| | con_x = 0; |
| | cr = 1; |
| | break; |
| |
|
| | default: |
| | y = con_current % con_totallines; |
| | con_text[y*con_linewidth+con_x] = c | mask; |
| | con_x++; |
| | if (con_x >= con_linewidth) |
| | con_x = 0; |
| | break; |
| | } |
| | |
| | } |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_DebugLog(char *file, char *fmt, ...) |
| | { |
| | va_list argptr; |
| | static char data[1024]; |
| | int fd; |
| | |
| | va_start(argptr, fmt); |
| | vsprintf(data, fmt, argptr); |
| | va_end(argptr); |
| | fd = open(file, O_WRONLY | O_CREAT | O_APPEND, 0666); |
| | write(fd, data, strlen(data)); |
| | close(fd); |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | #define MAXPRINTMSG 4096 |
| | |
| | void Con_Printf (char *fmt, ...) |
| | { |
| | va_list argptr; |
| | char msg[MAXPRINTMSG]; |
| | static qboolean inupdate; |
| | |
| | va_start (argptr,fmt); |
| | vsprintf (msg,fmt,argptr); |
| | va_end (argptr); |
| | |
| | |
| | Sys_Printf ("%s", msg); |
| |
|
| | |
| | if (con_debuglog) |
| | Con_DebugLog(va("%s/qconsole.log",com_gamedir), "%s", msg); |
| |
|
| | if (!con_initialized) |
| | return; |
| | |
| | if (cls.state == ca_dedicated) |
| | return; |
| |
|
| | |
| | Con_Print (msg); |
| | |
| | |
| | if (cls.signon != SIGNONS && !scr_disabled_for_loading ) |
| | { |
| | |
| | |
| | if (!inupdate) |
| | { |
| | inupdate = true; |
| | SCR_UpdateScreen (); |
| | inupdate = false; |
| | } |
| | } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_DPrintf (char *fmt, ...) |
| | { |
| | va_list argptr; |
| | char msg[MAXPRINTMSG]; |
| | |
| | if (!developer.value) |
| | return; |
| |
|
| | va_start (argptr,fmt); |
| | vsprintf (msg,fmt,argptr); |
| | va_end (argptr); |
| | |
| | Con_Printf ("%s", msg); |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_SafePrintf (char *fmt, ...) |
| | { |
| | va_list argptr; |
| | char msg[1024]; |
| | int temp; |
| | |
| | va_start (argptr,fmt); |
| | vsprintf (msg,fmt,argptr); |
| | va_end (argptr); |
| |
|
| | temp = scr_disabled_for_loading; |
| | scr_disabled_for_loading = true; |
| | Con_Printf ("%s", msg); |
| | scr_disabled_for_loading = temp; |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_DrawInput (void) |
| | { |
| | int y; |
| | int i; |
| | char *text; |
| |
|
| | if (key_dest != key_console && !con_forcedup) |
| | return; |
| |
|
| | text = key_lines[edit_line]; |
| | |
| | |
| | text[key_linepos] = 10+((int)(realtime*con_cursorspeed)&1); |
| | |
| | |
| | for (i=key_linepos+1 ; i< con_linewidth ; i++) |
| | text[i] = ' '; |
| | |
| | |
| | if (key_linepos >= con_linewidth) |
| | text += 1 + key_linepos - con_linewidth; |
| | |
| | |
| | y = con_vislines-16; |
| |
|
| | for (i=0 ; i<con_linewidth ; i++) |
| | Draw_Character ( (i+1)<<3, con_vislines - 16, text[i]); |
| |
|
| | |
| | key_lines[edit_line][key_linepos] = 0; |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_DrawNotify (void) |
| | { |
| | int x, v; |
| | char *text; |
| | int i; |
| | float time; |
| | extern char chat_buffer[]; |
| |
|
| | v = 0; |
| | for (i= con_current-NUM_CON_TIMES+1 ; i<=con_current ; i++) |
| | { |
| | if (i < 0) |
| | continue; |
| | time = con_times[i % NUM_CON_TIMES]; |
| | if (time == 0) |
| | continue; |
| | time = realtime - time; |
| | if (time > con_notifytime.value) |
| | continue; |
| | text = con_text + (i % con_totallines)*con_linewidth; |
| | |
| | clearnotify = 0; |
| | scr_copytop = 1; |
| |
|
| | for (x = 0 ; x < con_linewidth ; x++) |
| | Draw_Character ( (x+1)<<3, v, text[x]); |
| |
|
| | v += 8; |
| | } |
| |
|
| |
|
| | if (key_dest == key_message) |
| | { |
| | clearnotify = 0; |
| | scr_copytop = 1; |
| | |
| | x = 0; |
| | |
| | Draw_String (8, v, "say:"); |
| | while(chat_buffer[x]) |
| | { |
| | Draw_Character ( (x+5)<<3, v, chat_buffer[x]); |
| | x++; |
| | } |
| | Draw_Character ( (x+5)<<3, v, 10+((int)(realtime*con_cursorspeed)&1)); |
| | v += 8; |
| | } |
| | |
| | if (v > con_notifylines) |
| | con_notifylines = v; |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | void Con_DrawConsole (int lines, qboolean drawinput) |
| | { |
| | int i, x, y; |
| | int rows; |
| | char *text; |
| | int j; |
| | |
| | if (lines <= 0) |
| | return; |
| |
|
| | |
| | Draw_ConsoleBackground (lines); |
| |
|
| | |
| | con_vislines = lines; |
| |
|
| | rows = (lines-16)>>3; |
| | y = lines - 16 - (rows<<3); |
| |
|
| | for (i= con_current - rows + 1 ; i<=con_current ; i++, y+=8 ) |
| | { |
| | j = i - con_backscroll; |
| | if (j<0) |
| | j = 0; |
| | text = con_text + (j % con_totallines)*con_linewidth; |
| |
|
| | for (x=0 ; x<con_linewidth ; x++) |
| | Draw_Character ( (x+1)<<3, y, text[x]); |
| | } |
| |
|
| | |
| | if (drawinput) |
| | Con_DrawInput (); |
| | } |
| |
|
| |
|
| | |
| | |
| | |
| | |
| | |
| | void Con_NotifyBox (char *text) |
| | { |
| | double t1, t2; |
| |
|
| | |
| | Con_Printf("\n\n\35\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\37\n"); |
| |
|
| | Con_Printf (text); |
| |
|
| | Con_Printf ("Press a key.\n"); |
| | Con_Printf("\35\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\36\37\n"); |
| |
|
| | key_count = -2; |
| | key_dest = key_console; |
| |
|
| | do |
| | { |
| | t1 = Sys_FloatTime (); |
| | SCR_UpdateScreen (); |
| | Sys_SendKeyEvents (); |
| | t2 = Sys_FloatTime (); |
| | realtime += t2-t1; |
| | } while (key_count < 0); |
| |
|
| | Con_Printf ("\n"); |
| | key_dest = key_game; |
| | realtime = 0; |
| | } |
| |
|
| |
|