/* Copyright (C) 1997-2001 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 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ // console.c #include "client.h" console_t con; cvar_t *con_notifytime; cvar_t *con_alpha; // Knightare- Psychospaz's transparent console //cvar_t *con_height; // Knightmare- how far the console drops down qboolean halfconback = false; // whether to draw Q3-style console #define MAXCMDLINE 256 #define CON_FONT_SCALE con_font_size->value/8 extern char key_lines[32][MAXCMDLINE]; extern int edit_line; extern int key_linepos; int stringLengthExtra (const char *string); int stringLen (const char *string) { return strlen(string) - stringLengthExtra(string); } /* ================ Con_DrawString ================ */ void Con_DrawString (int x, int y, char *string, int alpha) { DrawStringGeneric (x, y, string, alpha, SCALETYPE_CONSOLE, false); } /* ================ Key_ClearTyping ================ */ void Key_ClearTyping (void) { key_lines[edit_line][1] = 0; // clear any typing key_linepos = 1; con.backedit = 0; } /* ================ Con_ToggleConsole_f ================ */ void Con_ToggleConsole_f (void) { // SCR_EndLoadingPlaque (); // get rid of loading plaque // Knightmare- allow disconnected menu if (cls.state == ca_disconnected && cls.key_dest != key_menu) { // start the demo loop again Cbuf_AddText ("d1\n"); return; } Key_ClearTyping (); Con_ClearNotify (); if (cls.consoleActive) // Knightmare changed //if (cls.key_dest == key_console) { cls.consoleActive = false; // Knightmare added //UI_ForceMenuOff (); //if (cls.key_dest != key_menu) if (Cvar_VariableValue ("maxclients") == 1 && Com_ServerState () && cls.key_dest != key_menu) Cvar_Set ("paused", "0"); } else { cls.consoleActive = true; // Knightmare added //UI_ForceMenuOff (); //cls.key_dest = key_console; if (Cvar_VariableValue ("maxclients") == 1 && Com_ServerState () && cls.key_dest != key_menu) Cvar_Set ("paused", "1"); } } /* ================ Con_ToggleChat_f ================ */ void Con_ToggleChat_f (void) { Key_ClearTyping (); if (cls.consoleActive) // Knightmare added //if (cls.key_dest == key_console) { if (cls.state == ca_active) { UI_ForceMenuOff (); cls.consoleActive = false; // Knightmare added cls.key_dest = key_game; } } else //cls.key_dest = key_console; cls.consoleActive = true; // Knightmare added Con_ClearNotify (); } /* ================ Con_Clear_f ================ */ void Con_Clear_f (void) { memset (con.text, ' ', CON_TEXTSIZE); } /* ================ Con_Dump_f Save the console contents out to a file ================ */ void Con_Dump_f (void) { int l, x; char *line; FILE *f; char buffer[1024]; char name[MAX_OSPATH]; if (Cmd_Argc() != 2) { Com_Printf ("usage: condump \n"); return; } Com_sprintf (name, sizeof(name), "%s/%s.txt", FS_Gamedir(), Cmd_Argv(1)); Com_Printf ("Dumped console text to %s.\n", name); FS_CreatePath (name); f = fopen (name, "w"); if (!f) { Com_Printf ("ERROR: couldn't open.\n"); return; } // skip empty lines for (l = con.current - con.totallines + 1 ; l <= con.current ; l++) { line = con.text + (l%con.totallines)*con.linewidth; for (x=0 ; x=0 ; x--) { if (buffer[x] == ' ') buffer[x] = 0; else break; } for (x=0; buffer[x]; x++) buffer[x] &= 0x7f; fprintf (f, "%s\n", buffer); } fclose (f); } /* ================ Con_ClearNotify ================ */ void Con_ClearNotify (void) { int i; for (i=0 ; ivalue - 2; else // (viddef.width / 8) width = (viddef.width >> 3) - 2; if (width == con.linewidth) return; if (width < 1) // video hasn't been initialized yet { width = 78; // was 38 con.linewidth = width; con.backedit = 0; con.totallines = CON_TEXTSIZE / con.linewidth; memset (con.text, ' ', CON_TEXTSIZE); } else { oldwidth = con.linewidth; con.linewidth = width; con.backedit = 0; 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; memcpy (tbuf, con.text, CON_TEXTSIZE); memset (con.text, ' ', CON_TEXTSIZE); for (i=0 ; i con.linewidth) ) con.x = 0; txt++; if (cr) { con.current--; cr = false; } if (!con.x) { Con_Linefeed (); // mark time for transparent overlay if (con.current >= 0) con.times[con.current % NUM_CON_TIMES] = cls.realtime; } switch (c) { case '\n': con.x = 0; break; case '\r': con.x = 0; cr = 1; break; default: // display character and advance 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; } } } /* ============== Con_CenteredPrint ============== */ void Con_CenteredPrint (char *text) { int l; char buffer[1024]; l = strlen(text); l = (con.linewidth-l)/2; if (l < 0) l = 0; memset (buffer, ' ', l); strcpy (buffer+l, text); strcat (buffer, "\n"); Con_Print (buffer); } /* ============================================================================== DRAWING ============================================================================== */ /* ================ Con_DrawInput The input line scrolls horizontally if typing goes beyond the right edge ================ */ void Con_DrawInput (void) { int y; int i; char *text, output[2048]; if (!cls.consoleActive && cls.state == ca_active) return; // don't draw anything (always draw if not active) /*if (cls.key_dest == key_menu) return; if (cls.key_dest != key_console && cls.state == ca_active) return;*/ // don't draw anything (always draw if not active) text = key_lines[edit_line]; // add the cursor frame if (con.backedit) text[key_linepos] = ' '; else text[key_linepos] = 10+((int)(cls.realtime>>8)&1); // fill out remainder with spaces for (i=key_linepos+1 ; i< con.linewidth ; i++) text[i] = ' '; // prestep if horizontally scrolling if (key_linepos >= con.linewidth) text += 1 + key_linepos - con.linewidth; // draw it y = con.vislines-FONT_SIZE*2; // was 16 Com_sprintf (output, sizeof(output), ""); for (i=0; i>8)&1)) Com_sprintf (output, sizeof(output), "%s%c", output, 11 ); else Com_sprintf (output, sizeof(output), "%s%c", output, text[i]); } Con_DrawString ( FONT_SIZE/2, con.vislines - (int)(2.75*FONT_SIZE), output, 255); // remove cursor key_lines[edit_line][key_linepos] = 0; } /* ================ Con_DrawNotify Draws the last few lines of output transparently over the game top ================ */ void Con_DrawNotify (void) { int x; char *text, output[2048]; int i, j; //int time; char *s; int alpha, lines; float v, time; lines = 0; v = 0; Com_sprintf (output, sizeof(output), ""); // this is the say msg while typeing... if (cls.key_dest == key_message) { if (chat_team) Com_sprintf (output, sizeof(output), "%s", " say_team: "); else Com_sprintf (output, sizeof(output), "%s", " say: "); s = chat_buffer; x = 0; if (chat_bufferlen > (viddef.width/FONT_SIZE)-(strlen(output)+1)) x += chat_bufferlen - (int)((viddef.width/FONT_SIZE)-(strlen(output)+1)); while(s[x]) { if (chat_backedit && chat_backedit == chat_bufferlen-x && ((int)(cls.realtime>>8)&1)) Com_sprintf (output, sizeof(output), "%s%c", output, 11 ); else Com_sprintf (output, sizeof(output), "%s%c", output, (char)s[x]); x++; } if (!chat_backedit) Com_sprintf (output, sizeof(output), "%s%c", output, 10+((int)(cls.realtime>>8)&1) ); Con_DrawString (0, v, output, 255); v += FONT_SIZE*2; //make extra space so we have room } 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 = cls.realtime - time; if (time > con_notifytime->value*1000) continue; //vertical offset set by closest to dissapearing lines++; } //v = 0; if (lines) for (j=0, i= con.current-NUM_CON_TIMES+1; i<=con.current; i++, j++) { if (i < 0) continue; time = con.times[i % NUM_CON_TIMES]; if (time == 0) continue; time = cls.realtime - time; if (time > con_notifytime->value*1000) continue; text = con.text + (i % con.totallines)*con.linewidth; alpha = 255 * sqrt( (1.0-time/(con_notifytime->value*1000.0+1.0)) * (((float)v+8.0)) / (8.0*lines) ); //alpha = (1-time/(con_notifytime->value*1000.0+2)) * (255*(v+16)) / (4*lines); if (alpha < 0) alpha=0; if (alpha > 255) alpha=255; Com_sprintf (output, sizeof(output), ""); for (x = 0 ; x < con.linewidth ; x++) Com_sprintf (output, sizeof(output), "%s%c", output, (char)text[x]); Con_DrawString (FONT_SIZE/2, v, output, alpha); v += FONT_SIZE; } if (v) { SCR_AddDirtyPoint (0,0); SCR_AddDirtyPoint (viddef.width-1, v); } } /* ================ Con_DrawConsole Draws the console with the solid background ================ */ void Con_DrawConsole (float frac, qboolean trans) { int i, j, x, y, len; int rows; char *text, output[1024]; int row; int lines; char version[64]; char dlbar[1024]; float alpha, barwidth, barheight; //Knightmare added // changeable download bar color int red, green, blue; TextColor((int)alt_text_color->value, &red, &green, &blue); barwidth = SCREEN_WIDTH; barheight = 2; SCR_AdjustFrom640 (NULL, NULL, &barwidth, &barheight, ALIGN_STRETCH); lines = viddef.height * frac; if (lines <= 0) return; if (lines > viddef.height) lines = viddef.height; // Psychospaz's transparent console //alpha = (trans) ? ((frac/ (halfconback?0.5:con_height->value) )*con_alpha->value) : 1; alpha = (trans) ? ((frac/ (0.5) )*con_alpha->value) : 1; // draw the background //i = halfconback ? lines - barheight : lines*(1/con_height->value); //j = halfconback ? 0 : (con_height->value-1)*i - barheight; y = lines - barheight; if (y < 1) y = 0; else if (halfconback) R_DrawStretchPic (0, 0, viddef.width, lines-barheight, "halfconback", alpha); else R_DrawStretchPic (0, lines-viddef.height-(int)barheight, viddef.width, viddef.height, "conback", alpha); SCR_AddDirtyPoint (0,0); SCR_AddDirtyPoint (viddef.width-1,lines-1); // changed to "KMQuake2 vx.xx" #ifdef ERASER_COMPAT_BUILD #ifdef NET_SERVER_BUILD Com_sprintf (version, sizeof(version), S_COLOR_BOLD S_COLOR_SHADOW S_COLOR_ALT"KMQuake2 v%4.2f (Eraser net server)", VERSION); #else // NET_SERVER_BUILD Com_sprintf (version, sizeof(version), S_COLOR_BOLD S_COLOR_SHADOW S_COLOR_ALT"KMQuake2 v%4.2f (Eraser compatible)", VERSION); #endif // NET_SERVER_BUILD #else // ERASER_COMPAT_BUILD #ifdef NET_SERVER_BUILD Com_sprintf (version, sizeof(version), S_COLOR_BOLD S_COLOR_SHADOW S_COLOR_ALT"KMQuake2 v%4.2f (net server)", VERSION); #else Com_sprintf (version, sizeof(version), S_COLOR_BOLD S_COLOR_SHADOW S_COLOR_ALT"TFOL %4.2f / KMQ2 0.20", VERSION); #endif // ERASER_COMPAT_BUILD #endif // NEW_ENTITY_STATE_MEMBERS Con_DrawString (viddef.width-FONT_SIZE*(stringLen((const char *)&version))-3, y-(int)(1.25*FONT_SIZE), version, 255); R_DrawFill2 (0, y, barwidth, barheight, red, green, blue, 255); // bottom line // draw the text con.vislines = lines; rows = (lines-(int)(2.75*FONT_SIZE))/FONT_SIZE; // rows of text to draw y = lines - (int)(3.75*FONT_SIZE); // draw from the bottom up if (con.display != con.current) { // draw arrows to show the buffer is backscrolled for (x=0; x=con.linewidth) ); y -= FONT_SIZE; rows--; } row = con.display; for (i=0; i= con.totallines) break; // past scrollback wrap point text = con.text + (row % con.totallines)*con.linewidth; Com_sprintf (output, sizeof(output), ""); for (x=0; x i) { y = x - i - 11; strncpy(dlbar, text, i); dlbar[i] = 0; strcat(dlbar, "..."); } else strcpy(dlbar, text); strcat(dlbar, ": "); i = strlen(dlbar); // init solid color download bar graph_x = (i+1)*FONT_SIZE; graph_y = con.vislines - (int)(FONT_SIZE*1.5) - (int)barheight; // was -12 graph_w = y*FONT_SIZE; graph_h = FONT_SIZE; for (j = 0; j < y; j++) // add blank spaces sprintf(dlbar + strlen(dlbar), " "); sprintf(dlbar + strlen(dlbar), " %2d%%", cls.downloadpercent); // draw it //y = graph_y; len = strlen(dlbar); for (i = 0; i < len; i++) if (dlbar[i] != ' ') R_DrawChar( (i+1)*FONT_SIZE, graph_y, dlbar[i], CON_FONT_SCALE, 255, 255, 255, 255, false, (i==(len-1)) ); // new solid color download bar graph_x--; graph_y--; graph_w+=2; graph_h +=2; R_DrawFill2 (graph_x, graph_y, graph_w, graph_h, 255, 255, 255, 90); R_DrawFill2 ((int)(graph_x+graph_h*0.2), (int)(graph_y+graph_h*0.2), (int)((graph_w-graph_h*0.4)*cls.downloadpercent*0.01), (int)(graph_h*0.6), red, green, blue, 255); } //ZOID // draw the input prompt, user text, and cursor if desired Con_DrawInput (); }