mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 07:20:49 +00:00
ff8148dd92
Also move colorutil.cpp/h linking build fix experiment Delete a bunch of unused CMakeLists.txt files CMakeLists.txt linking fix Don't include NativeApp.h from any headers. Android.mk buildfix Half of the UWP fix Buildfix Minor project file cleanup Buildfixes Guess what? More buildfixes!
72 lines
2.3 KiB
C++
72 lines
2.3 KiB
C++
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
// 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, version 2.0 or later versions.
|
|
|
|
// 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 2.0 for more details.
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
#include <string>
|
|
|
|
#include "ppsspp_config.h"
|
|
|
|
#include "Common.h"
|
|
#include "Common/Log.h"
|
|
#include "StringUtils.h"
|
|
#include "Common/Data/Encoding/Utf8.h"
|
|
|
|
#if PPSSPP_PLATFORM(ANDROID)
|
|
#include <android/log.h>
|
|
#elif PPSSPP_PLATFORM(WINDOWS)
|
|
#include "CommonWindows.h"
|
|
#endif
|
|
|
|
#define LOG_BUF_SIZE 2048
|
|
|
|
bool HandleAssert(const char *function, const char *file, int line, const char *expression, const char* format, ...) {
|
|
// Read message and write it to the log
|
|
char text[LOG_BUF_SIZE];
|
|
const char *caption = "Critical";
|
|
va_list args;
|
|
va_start(args, format);
|
|
vsnprintf(text, sizeof(text), format, args);
|
|
va_end(args);
|
|
|
|
// Secondary formatting. Wonder if this can be combined into the vsnprintf somehow.
|
|
char formatted[LOG_BUF_SIZE];
|
|
snprintf(formatted, sizeof(formatted), "(%s:%s:%d) %s: [%s] %s", file, function, line, caption, expression, text);
|
|
|
|
// Normal logging (will also log to Android log)
|
|
ERROR_LOG(SYSTEM, "%s", formatted);
|
|
// Also do a simple printf for good measure, in case logging of SYSTEM is disabled (should we disallow that?)
|
|
printf("%s\n", formatted);
|
|
|
|
#if defined(USING_WIN_UI)
|
|
int msgBoxStyle = MB_ICONINFORMATION | MB_YESNO;
|
|
std::wstring wtext = ConvertUTF8ToWString(formatted) + L"\n\nTry to continue?";
|
|
std::wstring wcaption = ConvertUTF8ToWString(caption);
|
|
OutputDebugString(wtext.c_str());
|
|
if (IDYES != MessageBox(0, wtext.c_str(), wcaption.c_str(), msgBoxStyle)) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
#elif PPSSPP_PLATFORM(ANDROID)
|
|
__android_log_assert(expression, "PPSSPP", "%s", formatted);
|
|
// Doesn't matter what we return here.
|
|
return false;
|
|
#else
|
|
OutputDebugStringUTF8(text);
|
|
return false;
|
|
#endif
|
|
}
|