mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-23 02:40:26 +01:00
67 lines
2.0 KiB
C++
67 lines
2.0 KiB
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_CONSOLE_INTERNAL_H
|
|
#define SE_INCL_CONSOLE_INTERNAL_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <Engine/Base/Synchronization.h>
|
|
|
|
// Object that takes care of game console.
|
|
#define CONSOLE_MAXLASTLINES 15 // how many last-line times to remember
|
|
class CConsole {
|
|
public:
|
|
// implementation:
|
|
CTCriticalSection con_csConsole; // critical section for access to console data
|
|
char *con_strBuffer; // the allocated buffer
|
|
char *con_strCurrent; // next char to print
|
|
char *con_strLastLine; // start of last line in buffer
|
|
char *con_strLineBuffer; // one-line-sized buffer for temp usage
|
|
INDEX con_ctCharsPerLine; // number of characters per line
|
|
INDEX con_ctLines; // number of total lines
|
|
TIME *con_atmLines; // time stamp for each line
|
|
INDEX con_ctLinesPrinted; // number of lines printed
|
|
FILE *con_fLog; // log file for streaming the console to
|
|
|
|
// clear line buffer
|
|
void ClearLineBuffer();
|
|
// clear one given line in buffer
|
|
void ClearLine(INDEX iLine);
|
|
// scroll buffer up, discarding lines at the start
|
|
void ScrollBufferUp(INDEX ctBytesToFree);
|
|
// Move last line times one place back and add new time
|
|
void NewLastTime(TIME tmNew);
|
|
|
|
// interface:
|
|
|
|
// Constructor.
|
|
CConsole(void);
|
|
// Destructor.
|
|
~CConsole(void);
|
|
|
|
// Initialize the console.
|
|
void Initialize(const CTFileName &fnmLog, INDEX ctCharsPerLine, INDEX ctLines);
|
|
|
|
// Get current console buffer.
|
|
ENGINE_API const char *GetBuffer(void);
|
|
ENGINE_API INDEX GetBufferSize(void);
|
|
// Add a string of text to console
|
|
void PutString(const char *strString);
|
|
// Close console log file buffers (call only when force-exiting!)
|
|
void CloseLog(void);
|
|
|
|
// Get number of lines newer than given time
|
|
INDEX NumberOfLinesAfter(TIME tmLast);
|
|
// Get one of last lines
|
|
CTString GetLastLine(INDEX iLine);
|
|
// Discard timing info for last lines
|
|
void DiscardLastLineTimes(void);
|
|
};
|
|
|
|
ENGINE_API extern CConsole *_pConsole;
|
|
|
|
|
|
#endif /* include-once check. */
|
|
|