-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDebug.h
38 lines (29 loc) · 843 Bytes
/
Debug.h
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
#pragma once
#include <windows.h>
#include <stdio.h>
static int VDebugPrintF(const char* format, va_list args) {
const UINT32 MAX_CHARS = 1024;
static char s_buffer[MAX_CHARS];
int charsWritten = vsnprintf(s_buffer, MAX_CHARS, format, args);
OutputDebugStringA(s_buffer);
return charsWritten;
}
static int DebugPrintF(const char* format, ...) {
va_list argList;
va_start(argList, format);
int charsWritten = VDebugPrintF(format, argList);
va_end(argList);
return charsWritten;
}
static void DebugPrintVector3(Vector3 vec) {
DebugPrintF(std::to_string(vec.x).c_str());
DebugPrintF(" ");
DebugPrintF(std::to_string(vec.y).c_str());
DebugPrintF(" ");
DebugPrintF(std::to_string(vec.z).c_str());
DebugPrintF("\n");
}
static void DebugPrintFloat(float f) {
DebugPrintF(std::to_string(f).c_str());
DebugPrintF("\n");
}