75 lines
1.8 KiB
C++
75 lines
1.8 KiB
C++
/* REminiscence - Flashback interpreter
|
|
* Copyright (C) 2005-2007 Gregory Montoir
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include <cstdarg>
|
|
#include "util.h"
|
|
#include <android/log.h>
|
|
|
|
|
|
uint16 g_debugMask;
|
|
|
|
void debug(uint16 cm, const char *msg, ...) {
|
|
char buf[1024];
|
|
if (cm & g_debugMask) {
|
|
va_list va;
|
|
va_start(va, msg);
|
|
vsprintf(buf, msg, va);
|
|
va_end(va);
|
|
printf("%s\n", buf);
|
|
fflush(stdout);
|
|
__android_log_print(ANDROID_LOG_INFO, "REminiscence", "%s", buf);
|
|
}
|
|
}
|
|
|
|
void error(const char *msg, ...) {
|
|
char buf[1024];
|
|
va_list va;
|
|
va_start(va, msg);
|
|
vsprintf(buf, msg, va);
|
|
va_end(va);
|
|
fprintf(stderr, "ERROR: %s!\n", buf);
|
|
__android_log_print(ANDROID_LOG_INFO, "REminiscence", "ERROR: %s", buf);
|
|
exit(-1);
|
|
}
|
|
|
|
void warning(const char *msg, ...) {
|
|
char buf[1024];
|
|
va_list va;
|
|
va_start(va, msg);
|
|
vsprintf(buf, msg, va);
|
|
va_end(va);
|
|
fprintf(stderr, "WARNING: %s!\n", buf);
|
|
__android_log_print(ANDROID_LOG_INFO, "REminiscence", "WARNING: %s", buf);
|
|
}
|
|
|
|
void string_lower(char *p) {
|
|
for (; *p; ++p) {
|
|
if (*p >= 'A' && *p <= 'Z') {
|
|
*p += 'a' - 'A';
|
|
}
|
|
}
|
|
}
|
|
|
|
void string_upper(char *p) {
|
|
for (; *p; ++p) {
|
|
if (*p >= 'a' && *p <= 'z') {
|
|
*p += 'A' - 'a';
|
|
}
|
|
}
|
|
}
|