aboutsummaryrefslogtreecommitdiff
path: root/primedev/logging/sourceconsole.h
blob: 44d73843404d35947b50ff6887eeae640409dc95 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#pragma once
#include "core/sourceinterface.h"
#include "spdlog/sinks/base_sink.h"
#include <map>

class EditablePanel
{
public:
	virtual ~EditablePanel() = 0;
	unsigned char unknown[0x2B0];
};

class IConsoleDisplayFunc
{
public:
	virtual void ColorPrint(const SourceColor& clr, const char* pMessage) = 0;
	virtual void Print(const char* pMessage) = 0;
	virtual void DPrint(const char* pMessage) = 0;
};

class CConsolePanel : public EditablePanel, public IConsoleDisplayFunc
{
};

class CConsoleDialog
{
public:
	struct VTable
	{
		void* unknown[298];
		void (*OnCommandSubmitted)(CConsoleDialog* consoleDialog, const char* pCommand);
	};

	VTable* m_vtable;
	unsigned char unknown[0x398];
	CConsolePanel* m_pConsolePanel;
};

class CGameConsole
{
public:
	virtual ~CGameConsole() = 0;

	// activates the console, makes it visible and brings it to the foreground
	virtual void Activate() = 0;

	virtual void Initialize() = 0;

	// hides the console
	virtual void Hide() = 0;

	// clears the console
	virtual void Clear() = 0;

	// return true if the console has focus
	virtual bool IsConsoleVisible() = 0;

	virtual void SetParent(int parent) = 0;

	bool m_bInitialized;
	CConsoleDialog* m_pConsole;
};

extern SourceInterface<CGameConsole>* g_pSourceGameConsole;

// spdlog logger
class SourceConsoleSink : public CustomSink
{
private:
	std::map<spdlog::level::level_enum, SourceColor> m_LogColours = {
		{spdlog::level::trace, NS::Colors::TRACE.ToSourceColor()},
		{spdlog::level::debug, NS::Colors::DEBUG.ToSourceColor()},
		{spdlog::level::info, NS::Colors::INFO.ToSourceColor()},
		{spdlog::level::warn, NS::Colors::WARN.ToSourceColor()},
		{spdlog::level::err, NS::Colors::ERR.ToSourceColor()},
		{spdlog::level::critical, NS::Colors::CRIT.ToSourceColor()},
		{spdlog::level::off, NS::Colors::OFF.ToSourceColor()}};

protected:
	void custom_sink_it_(const custom_log_msg& msg);
	void sink_it_(const spdlog::details::log_msg& msg) override;
	void flush_() override;
};

void InitialiseConsoleOnInterfaceCreation();