fpsmax = cls.td_minframetime > 0 ? 1.0 / cls.td_minframetime : 0;
// LordHavoc: timedemo now prints out 7 digits of fraction, and min/avg/max
Con_Printf("%i frames %5.7f seconds %5.7f fps\nmin/avg/max: %5.7f/%5.7f/%5.7f\n", frames, time, fpsavg, fpsmin, fpsavg, fpsmax);
- Con_LogPrintf("benchmark.log", "date %s | enginedate %s | demo %s | commandline %s | result %i frames %5.7f seconds %5.7f fps min/avg/max: %5.7f/%5.7f/%5.7f\n", Sys_TimeString("%Y-%m-%d %H:%M:%S"), buildstring, cls.demoname, cmdline.string, frames, time, fpsavg, fpsmin, fpsavg, fpsmax);
+ Log_Printf("benchmark.log", "date %s | enginedate %s | demo %s | commandline %s | result %i frames %5.7f seconds %5.7f fps min/avg/max: %5.7f/%5.7f/%5.7f\n", Sys_TimeString("%Y-%m-%d %H:%M:%S"), buildstring, cls.demoname, cmdline.string, frames, time, fpsavg, fpsmin, fpsavg, fpsmax);
if (COM_CheckParm("-benchmark"))
Host_Quit_f();
}
int con_vislines;
-qboolean con_debuglog;
-
#define MAXCMDLINE 256
extern char key_lines[32][MAXCMDLINE];
extern int edit_line;
mempool_t *console_mempool;
-extern void M_Menu_Main_f (void);
+
+/*
+==============================================================================
+
+LOGGING
+
+==============================================================================
+*/
+
+cvar_t log_file = {0, "log_file",""};
+cvar_t log_sync = {0, "log_sync","0"};
+qfile_t* logfile = NULL;
+
+qbyte* logqueue = NULL;
+size_t logq_ind = 0;
+size_t logq_size = 0;
+
+/*
+====================
+Log_Init
+====================
+*/
+void Log_Init (void)
+{
+ Cvar_RegisterVariable (&log_file);
+ Cvar_RegisterVariable (&log_sync);
+
+ // support for the classic Quake option
+ if (COM_CheckParm ("-condebug") != 0)
+ {
+ Cvar_SetQuick (&log_file, "qconsole.log");
+ Cvar_SetValueQuick (&log_sync, 1);
+ }
+
+ // Allocate a log queue
+ logq_size = 4;
+ logqueue = Mem_Alloc (tempmempool, logq_size);
+ logq_ind = 0;
+}
+
+
+/*
+====================
+Log_Start
+====================
+*/
+void Log_Start (void)
+{
+ if (log_file.string[0] != '\0')
+ logfile = FS_Open (log_file.string, "wt", false);
+
+ // Dump the contents of the log queue into the log file and free it
+ if (logqueue != NULL)
+ {
+ if (logfile != NULL && logq_ind != 0)
+ FS_Write (logfile, logqueue, logq_ind);
+ Mem_Free (logqueue);
+ logqueue = NULL;
+ logq_ind = 0;
+ logq_size = 0;
+ }
+}
+
+
+/*
+================
+Log_ConPrint
+================
+*/
+void Log_ConPrint (const char *msg)
+{
+ // Easy case: a log has been started
+ if (logfile != NULL)
+ {
+ FS_Print (logfile, msg);
+ if (log_sync.integer)
+ FS_Flush (logfile);
+ return;
+ }
+
+ // Until the host is completely initialized, we maintain a log queue
+ // to store the messages, since the log can't be started before
+ if (logqueue != NULL)
+ {
+ size_t remain = logq_size - logq_ind;
+ size_t len = strlen (msg);
+
+ // If we need to enlarge the log queue
+ if (len > remain)
+ {
+ unsigned int factor = ((logq_ind + len) / logq_size) + 1;
+ qbyte* newqueue;
+
+ logq_size *= factor;
+ newqueue = Mem_Alloc (tempmempool, logq_size);
+ memcpy (newqueue, logqueue, logq_ind);
+ Mem_Free (logqueue);
+ logqueue = newqueue;
+ remain = logq_size - logq_ind;
+ }
+ memcpy (&logqueue[logq_ind], msg, len);
+ logq_ind += len;
+ }
+}
+
+
+/*
+================
+Log_Print
+================
+*/
+void Log_Print (const char *logfilename, const char *msg)
+{
+ qfile_t *file;
+ file = FS_Open(logfilename, "at", true);
+ if (file)
+ {
+ FS_Print(file, msg);
+ FS_Close(file);
+ }
+}
+
+/*
+================
+Log_Printf
+================
+*/
+void Log_Printf (const char *logfilename, const char *fmt, ...)
+{
+ qfile_t *file;
+
+ file = FS_Open (logfilename, "at", true);
+ if (file != NULL)
+ {
+ va_list argptr;
+
+ va_start (argptr, fmt);
+ FS_VPrintf (file, fmt, argptr);
+ va_end (argptr);
+
+ FS_Close (file);
+ }
+}
+
+
+/*
+==============================================================================
+
+CONSOLE
+
+==============================================================================
+*/
/*
================
con_current = con_totallines - 1;
}
-
-void Con_InitLogging (void)
-{
-#define MAXGAMEDIRLEN 1000
- char temp[MAXGAMEDIRLEN+1];
- char *t2 = "/qconsole.log";
-
- con_debuglog = COM_CheckParm("-condebug");
- if (con_debuglog)
- {
- if (strlen (fs_gamedir) < (MAXGAMEDIRLEN - strlen (t2)))
- {
- sprintf (temp, "%s%s", fs_gamedir, t2);
- unlink (temp);
- }
- }
-}
-
/*
================
Con_Init
Con_Print("Console initialized.\n");
-//
-// register our commands
-//
+ // register our cvars
Cvar_RegisterVariable (&con_notifytime);
Cvar_RegisterVariable (&con_notify);
+ // register our commands
Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
Cmd_AddCommand ("messagemode", Con_MessageMode_f);
Cmd_AddCommand ("messagemode2", Con_MessageMode2_f);
}
}
-// LordHavoc: increased from 4096 to 16384
-#define MAXPRINTMSG 16384
-
-/*
-================
-Con_LogPrint
-================
-*/
-void Con_LogPrint(const char *logfilename, const char *msg)
-{
- qfile_t *file;
- file = FS_Open(logfilename, "at", true);
- if (file)
- {
- FS_Print(file, msg);
- FS_Close(file);
- }
-}
-
-/*
-================
-Con_LogPrintf
-================
-*/
-void Con_LogPrintf(const char *logfilename, const char *fmt, ...)
-{
- va_list argptr;
- char msg[MAXPRINTMSG];
-
- va_start(argptr,fmt);
- vsprintf(msg,fmt,argptr);
- va_end(argptr);
-
- Con_LogPrint(logfilename, msg);
-}
-
/*
================
Con_Print
Sys_Print(msg);
// log all messages to file
- if (con_debuglog)
- Con_LogPrint("qconsole.log", msg);
+ Log_ConPrint (msg);
if (!con_initialized)
return;
Con_PrintToHistory(msg);
}
+
+// LordHavoc: increased from 4096 to 16384
+#define MAXPRINTMSG 16384
+
/*
================
Con_Printf
extern qbyte *con_chars;
void Con_CheckResize (void);
-void Con_InitLogging (void);
void Con_Init (void);
void Con_DrawConsole (int lines);
void Con_Print(const char *txt);
void Con_DPrintf(const char *fmt, ...);
void Con_SafePrint(const char *msg);
void Con_SafePrintf(const char *fmt, ...);
-void Con_LogPrint(const char *logfilename, const char *msg);
-void Con_LogPrintf(const char *logfilename, const char *fmt, ...);
void Con_Clear_f (void);
void Con_DrawNotify (void);
void Con_ClearNotify (void);
// formatted in columns on the console
void Con_DisplayList(const char **list);
+
+//
+// log
+//
+void Log_Init (void);
+void Log_Start (void);
+// Log_Print and Log_Printf can be used as soon as the FS initialization is done
+void Log_Print(const char *logfilename, const char *msg);
+void Log_Printf(const char *logfilename, const char *fmt, ...);
+
#endif