-
Notifications
You must be signed in to change notification settings - Fork 20
/
util.cpp
53 lines (48 loc) · 1.09 KB
/
util.cpp
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
/*
* Heart of Darkness engine rewrite
* Copyright (C) 2009-2011 Gregory Montoir (cyx@users.sourceforge.net)
*/
#ifdef __ANDROID__
#define LOG_TAG "HodJni"
#include <android/log.h>
#endif
#include <stdio.h>
#include <stdarg.h>
extern void System_printLog(FILE *, const char *s);
extern void System_fatalError(const char *s);
int g_debugMask;
void debug(int mask, const char *msg, ...) {
char buf[1024];
if (mask & g_debugMask) {
va_list va;
va_start(va, msg);
vsprintf(buf, msg, va);
va_end(va);
#ifdef __ANDROID__
__android_log_print(ANDROID_LOG_INFO, LOG_TAG, "%s", buf);
#endif
System_printLog(stdout, buf);
}
}
void error(const char *msg, ...) {
char buf[1024];
va_list va;
va_start(va, msg);
vsprintf(buf, msg, va);
va_end(va);
#ifdef __ANDROID__
__android_log_print(ANDROID_LOG_ERROR, LOG_TAG, "%s", buf);
#endif
System_fatalError(buf);
}
void warning(const char *msg, ...) {
char buf[1024];
va_list va;
va_start(va, msg);
vsprintf(buf, msg, va);
va_end(va);
#ifdef __ANDROID__
__android_log_print(ANDROID_LOG_WARN, LOG_TAG, "%s", buf);
#endif
System_printLog(stderr, buf);
}