2013-09-05 00:17:46 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2014-08-17 17:45:50 +00:00
|
|
|
#pragma once
|
2013-09-05 00:17:46 +00:00
|
|
|
|
2014-12-04 20:57:00 +00:00
|
|
|
#include "common/common_funcs.h"
|
|
|
|
#include "common/msg_handler.h"
|
2014-10-28 07:36:00 +00:00
|
|
|
#include "common/logging/log.h"
|
2014-12-04 20:57:00 +00:00
|
|
|
|
2014-05-30 03:03:03 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
#ifndef __func__
|
|
|
|
#define __func__ __FUNCTION__
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2014-12-06 23:14:14 +00:00
|
|
|
#if _DEBUG
|
2013-09-05 00:17:46 +00:00
|
|
|
#define _dbg_assert_(_t_, _a_) \
|
2014-04-01 22:20:08 +00:00
|
|
|
if (!(_a_)) {\
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_CRITICAL(_t_, "Error...\n\n Line: %d\n File: %s\n Time: %s\n\nIgnore and continue?", \
|
2014-04-01 22:20:08 +00:00
|
|
|
__LINE__, __FILE__, __TIME__); \
|
|
|
|
if (!PanicYesNo("*** Assertion (see log)***\n")) {Crash();} \
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
#define _dbg_assert_msg_(_t_, _a_, ...)\
|
2014-04-01 22:20:08 +00:00
|
|
|
if (!(_a_)) {\
|
2014-12-06 01:53:49 +00:00
|
|
|
LOG_CRITICAL(_t_, __VA_ARGS__); \
|
2014-04-01 22:20:08 +00:00
|
|
|
if (!PanicYesNo(__VA_ARGS__)) {Crash();} \
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
#define _dbg_update_() Host_UpdateLogDisplay();
|
|
|
|
|
|
|
|
#else // not debug
|
|
|
|
#define _dbg_update_() ;
|
|
|
|
|
|
|
|
#ifndef _dbg_assert_
|
|
|
|
#define _dbg_assert_(_t_, _a_) {}
|
|
|
|
#define _dbg_assert_msg_(_t_, _a_, _desc_, ...) {}
|
|
|
|
#endif // dbg_assert
|
2014-12-06 23:14:14 +00:00
|
|
|
#endif
|
2013-09-05 00:17:46 +00:00
|
|
|
|
|
|
|
#define _assert_(_a_) _dbg_assert_(MASTER_LOG, _a_)
|
|
|
|
|
|
|
|
#ifdef _WIN32
|
2014-04-01 22:20:08 +00:00
|
|
|
#define _assert_msg_(_t_, _a_, _fmt_, ...) \
|
|
|
|
if (!(_a_)) {\
|
|
|
|
if (!PanicYesNo(_fmt_, __VA_ARGS__)) {Crash();} \
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
#else // not win32
|
2014-04-01 22:20:08 +00:00
|
|
|
#define _assert_msg_(_t_, _a_, _fmt_, ...) \
|
|
|
|
if (!(_a_)) {\
|
|
|
|
if (!PanicYesNo(_fmt_, ##__VA_ARGS__)) {Crash();} \
|
|
|
|
}
|
2013-09-05 00:17:46 +00:00
|
|
|
#endif // WIN32
|