2015-05-23 22:55:12 -06:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2021-07-04 19:22:19 -06:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-03-07 01:35:01 -07:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2011-01-13 17:15:08 -07:00
|
|
|
|
2020-11-19 04:56:46 -07:00
|
|
|
#include <cstdint>
|
2011-01-13 17:15:08 -07:00
|
|
|
#include <string>
|
2020-10-14 12:50:38 -06:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2011-01-13 17:15:08 -07:00
|
|
|
|
2020-11-19 04:56:46 -07:00
|
|
|
#include "Common/FormatUtil.h"
|
2021-11-10 19:34:28 -07:00
|
|
|
#include "Common/Logging/Log.h"
|
2020-11-19 04:56:46 -07:00
|
|
|
|
2019-06-16 21:45:37 -06:00
|
|
|
namespace Common
|
|
|
|
{
|
2009-03-07 01:35:01 -07:00
|
|
|
// Message alerts
|
2017-07-25 22:11:17 -06:00
|
|
|
enum class MsgType
|
2009-03-07 01:35:01 -07:00
|
|
|
{
|
2017-07-25 22:11:17 -06:00
|
|
|
Information,
|
|
|
|
Question,
|
|
|
|
Warning,
|
|
|
|
Critical
|
2009-03-07 01:35:01 -07:00
|
|
|
};
|
|
|
|
|
2019-06-16 21:27:31 -06:00
|
|
|
using MsgAlertHandler = bool (*)(const char* caption, const char* text, bool yes_no, MsgType style);
|
|
|
|
using StringTranslator = std::string (*)(const char* text);
|
2011-01-12 19:05:58 -07:00
|
|
|
|
2009-03-07 01:35:01 -07:00
|
|
|
void RegisterMsgAlertHandler(MsgAlertHandler handler);
|
2011-01-12 19:05:58 -07:00
|
|
|
void RegisterStringTranslator(StringTranslator translator);
|
|
|
|
|
2022-09-23 06:58:18 -06:00
|
|
|
[[nodiscard]] std::string GetStringT(const char* string);
|
2020-11-09 05:50:35 -07:00
|
|
|
|
2021-11-16 19:48:30 -07:00
|
|
|
bool MsgAlertFmtImpl(bool yes_no, MsgType style, Common::Log::LogType log_type, const char* file,
|
|
|
|
int line, fmt::string_view format, const fmt::format_args& args);
|
2020-11-09 05:50:35 -07:00
|
|
|
|
2020-11-19 04:56:46 -07:00
|
|
|
template <std::size_t NumFields, typename S, typename... Args>
|
2021-11-16 19:48:30 -07:00
|
|
|
bool MsgAlertFmt(bool yes_no, MsgType style, Common::Log::LogType log_type, const char* file,
|
|
|
|
int line, const S& format, const Args&... args)
|
2020-11-09 05:50:35 -07:00
|
|
|
{
|
2020-11-19 04:56:46 -07:00
|
|
|
static_assert(NumFields == sizeof...(args),
|
|
|
|
"Unexpected number of replacement fields in format string; did you pass too few or "
|
|
|
|
"too many arguments?");
|
2022-07-09 09:02:09 -06:00
|
|
|
#if FMT_VERSION >= 90000
|
|
|
|
static_assert(fmt::detail::is_compile_string<S>::value);
|
|
|
|
#else
|
2021-11-10 21:14:57 -07:00
|
|
|
static_assert(fmt::is_compile_string<S>::value);
|
2022-07-09 09:02:09 -06:00
|
|
|
#endif
|
2021-11-16 19:48:30 -07:00
|
|
|
return MsgAlertFmtImpl(yes_no, style, log_type, file, line, format,
|
2022-05-10 17:39:12 -06:00
|
|
|
fmt::make_format_args(args...));
|
2020-11-09 05:50:35 -07:00
|
|
|
}
|
|
|
|
|
2021-11-10 20:38:02 -07:00
|
|
|
template <std::size_t NumFields, bool has_non_positional_args, typename S, typename... Args>
|
2021-11-16 19:48:30 -07:00
|
|
|
bool MsgAlertFmtT(bool yes_no, MsgType style, Common::Log::LogType log_type, const char* file,
|
|
|
|
int line, const S& format, fmt::string_view translated_format,
|
|
|
|
const Args&... args)
|
2021-11-10 20:38:02 -07:00
|
|
|
{
|
|
|
|
static_assert(!has_non_positional_args,
|
|
|
|
"Translatable strings must use positional arguments (e.g. {0} instead of {})");
|
|
|
|
static_assert(NumFields == sizeof...(args),
|
|
|
|
"Unexpected number of replacement fields in format string; did you pass too few or "
|
|
|
|
"too many arguments?");
|
2022-07-09 09:02:09 -06:00
|
|
|
#if FMT_VERSION >= 90000
|
|
|
|
static_assert(fmt::detail::is_compile_string<S>::value);
|
|
|
|
#else
|
2021-11-10 21:14:57 -07:00
|
|
|
static_assert(fmt::is_compile_string<S>::value);
|
2022-07-09 09:02:09 -06:00
|
|
|
#endif
|
2022-05-10 17:39:12 -06:00
|
|
|
auto arg_list = fmt::make_format_args(args...);
|
2021-11-16 19:48:30 -07:00
|
|
|
return MsgAlertFmtImpl(yes_no, style, log_type, file, line, translated_format, arg_list);
|
2021-11-10 20:38:02 -07:00
|
|
|
}
|
|
|
|
|
2009-03-18 16:05:31 -06:00
|
|
|
void SetEnableAlert(bool enable);
|
2021-08-28 17:53:12 -06:00
|
|
|
void SetAbortOnPanicAlert(bool should_abort);
|
2020-10-14 12:50:38 -06:00
|
|
|
|
|
|
|
// Like fmt::format, except the string becomes translatable
|
|
|
|
template <typename... Args>
|
|
|
|
std::string FmtFormatT(const char* string, Args&&... args)
|
|
|
|
{
|
2022-01-13 00:25:36 -07:00
|
|
|
return fmt::format(fmt::runtime(Common::GetStringT(string)), std::forward<Args>(args)...);
|
2020-10-14 12:50:38 -06:00
|
|
|
}
|
2019-06-16 21:45:37 -06:00
|
|
|
} // namespace Common
|
2009-03-07 01:35:01 -07:00
|
|
|
|
2020-11-09 05:50:35 -07:00
|
|
|
// Fmt-capable variants of the macros
|
|
|
|
|
2021-11-10 19:34:28 -07:00
|
|
|
#define GenericAlertFmt(yes_no, style, log_type, format, ...) \
|
2021-11-10 20:38:02 -07:00
|
|
|
Common::MsgAlertFmt<Common::CountFmtReplacementFields(format)>( \
|
2022-08-23 12:14:47 -06:00
|
|
|
yes_no, style, Common::Log::LogType::log_type, __FILE__, __LINE__, \
|
|
|
|
FMT_STRING(format) __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-19 04:56:46 -07:00
|
|
|
|
2021-11-10 19:34:28 -07:00
|
|
|
#define GenericAlertFmtT(yes_no, style, log_type, format, ...) \
|
2021-11-10 20:38:02 -07:00
|
|
|
Common::MsgAlertFmtT<Common::CountFmtReplacementFields(format), \
|
|
|
|
Common::ContainsNonPositionalArguments(format)>( \
|
2021-11-16 19:48:30 -07:00
|
|
|
yes_no, style, Common::Log::LogType::log_type, __FILE__, __LINE__, FMT_STRING(format), \
|
2022-08-23 12:14:47 -06:00
|
|
|
Common::GetStringT(format) __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-20 09:29:11 -07:00
|
|
|
|
2020-11-09 05:50:35 -07:00
|
|
|
#define SuccessAlertFmt(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Information, MASTER_LOG, \
|
|
|
|
format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define PanicAlertFmt(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Warning, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define PanicYesNoFmt(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(true, Common::MsgType::Warning, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define AskYesNoFmt(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(true, Common::MsgType::Question, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define CriticalAlertFmt(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Critical, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
// Use these macros (that do the same thing) if the message should be translated.
|
|
|
|
#define SuccessAlertFmtT(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Information, MASTER_LOG, \
|
|
|
|
format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define PanicAlertFmtT(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Warning, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define PanicYesNoFmtT(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmtT(true, Common::MsgType::Warning, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define AskYesNoFmtT(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmtT(true, Common::MsgType::Question, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2020-11-09 05:50:35 -07:00
|
|
|
|
|
|
|
#define CriticalAlertFmtT(format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Critical, MASTER_LOG, format __VA_OPT__(, ) __VA_ARGS__)
|
2021-11-10 19:34:28 -07:00
|
|
|
|
|
|
|
// Variant that takes a log type, used by the assert macros
|
|
|
|
#define PanicYesNoFmtAssert(log_type, format, ...) \
|
2022-08-23 12:14:47 -06:00
|
|
|
GenericAlertFmt(true, Common::MsgType::Warning, log_type, format __VA_OPT__(, ) __VA_ARGS__)
|