Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
Logging.hpp
1#pragma once
2
3#include <string>
4#include <chrono>
5
6namespace Grindstone {
7 enum class LogSource : uint16_t {
8 Unknown,
9 EngineCore,
10 Editor,
11 EditorImporter,
12 GraphicsAPI,
13 RenderingBackend,
14 Rendering,
15 Audio,
16 Physics,
17 Scripting,
18 Count
19 };
20
21 constexpr const char* logSourceStrings[] = {
22 "Unknown",
23 "Engine Core",
24 "Editor",
25 "Editor Importer",
26 "Graphics API",
27 "Rendering Backend",
28 "Rendering",
29 "Audio",
30 "Physics",
31 "Scripting"
32 };
33
34 using LogInternalType = uint32_t;
35 constexpr LogInternalType LOG_UNSPECIFIED_INTERNAL_TYPE = UINT32_MAX;
36
37 enum class LogSeverity : uint8_t {
38 Info,
39 Trace,
40 Warning,
41 Error,
42 Fatal
43 };
44
45 constexpr const char* logSeverityPrefixes[] = {
46 "Info",
47 "Trace",
48 "Warning",
49 "Error",
50 "Fatal Error"
51 };
52
54 std::string message;
55 std::string filename;
56 uint32_t line;
57 std::chrono::system_clock::time_point timepoint;
58 LogSource source;
59 LogInternalType internalType;
60 LogSeverity severity;
61 };
62};
Definition Logging.hpp:53