blob: b42151cae9ec4b4c24230074dbf192b6153970c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
/**
@file debugPrintf.h
@maintainer Morgan McGuire, http://graphics.cs.williams.edu
@created 2001-08-26
@edited 2007-07-20
Copyright 2000-2007, Morgan McGuire.
All rights reserved.
*/
#ifndef G3D_DEBUGPRINTF_H
#define G3D_DEBUGPRINTF_H
#include "G3D/platform.h"
#include <stdio.h>
#include <cstdarg>
#include "G3D/format.h"
#include <string>
namespace G3D {
typedef void (*ConsolePrintHook)(const std::string&);
namespace _internal {
extern ConsolePrintHook _consolePrintHook;
}
/** Called by consolePrintf after the log and terminal have been written to.
Used by GConsole to intercept printing routines.*/
void setConsolePrintHook(ConsolePrintHook h);
ConsolePrintHook consolePrintHook();
/**
Sends output to the log and to the last GConsole instantiated.
Guarantees that the output has been flushed by the time the routine
returns.
@sa G3D::logPrintf, G3D::screenPrintf
@return The string that was printed
*/
std::string __cdecl consolePrintf(const char* fmt ...) G3D_CHECK_PRINTF_ARGS;
std::string consolePrint(const std::string&);
/**
Under visual studio, appears in the VS debug pane.
On unix-based operating systems the output is sent to stderr.
Also sends output to the console (G3D::consolePrintf) if there is a consolePrintHook,
and log (G3D::logPrintf), and flushes before returning.
@return The string that was printed
*/
std::string __cdecl debugPrintf(const char* fmt ...) G3D_CHECK_PRINTF_ARGS;
std::string debugPrint(const std::string&);
} // namespace G3D
#endif
|