2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2009 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2011-01-14 00:15:08 +00:00
|
|
|
|
2020-11-19 11:56:46 +00:00
|
|
|
#include <cstdint>
|
2011-01-14 00:15:08 +00:00
|
|
|
#include <string>
|
2020-10-14 18:50:38 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2011-01-14 00:15:08 +00:00
|
|
|
|
2020-11-19 11:56:46 +00:00
|
|
|
#include "Common/FormatUtil.h"
|
|
|
|
|
2019-06-17 03:45:37 +00:00
|
|
|
namespace Common
|
|
|
|
{
|
2009-03-07 08:35:01 +00:00
|
|
|
// Message alerts
|
2017-07-26 04:11:17 +00:00
|
|
|
enum class MsgType
|
2009-03-07 08:35:01 +00:00
|
|
|
{
|
2017-07-26 04:11:17 +00:00
|
|
|
Information,
|
|
|
|
Question,
|
|
|
|
Warning,
|
|
|
|
Critical
|
2009-03-07 08:35:01 +00:00
|
|
|
};
|
|
|
|
|
2019-06-17 03:27:31 +00:00
|
|
|
using MsgAlertHandler = bool (*)(const char* caption, const char* text, bool yes_no, MsgType style);
|
|
|
|
using StringTranslator = std::string (*)(const char* text);
|
2011-01-13 02:05:58 +00:00
|
|
|
|
2009-03-07 08:35:01 +00:00
|
|
|
void RegisterMsgAlertHandler(MsgAlertHandler handler);
|
2011-01-13 02:05:58 +00:00
|
|
|
void RegisterStringTranslator(StringTranslator translator);
|
|
|
|
|
2017-07-26 04:11:17 +00:00
|
|
|
std::string GetStringT(const char* string);
|
2020-11-09 12:50:35 +00:00
|
|
|
|
2017-07-26 04:11:17 +00:00
|
|
|
bool MsgAlert(bool yes_no, MsgType style, const char* format, ...)
|
2010-12-05 09:04:34 +00:00
|
|
|
#ifdef __GNUC__
|
2011-01-13 20:53:37 +00:00
|
|
|
__attribute__((format(printf, 3, 4)))
|
2010-12-05 09:04:34 +00:00
|
|
|
#endif
|
|
|
|
;
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
bool MsgAlertFmtImpl(bool yes_no, MsgType style, fmt::string_view format,
|
|
|
|
const fmt::format_args& args);
|
|
|
|
|
2020-11-19 11:56:46 +00:00
|
|
|
template <std::size_t NumFields, typename S, typename... Args>
|
|
|
|
bool MsgAlertFmt(bool yes_no, MsgType style, const S& format, const Args&... args)
|
2020-11-09 12:50:35 +00:00
|
|
|
{
|
2020-11-19 11:56:46 +00:00
|
|
|
static_assert(NumFields == sizeof...(args),
|
|
|
|
"Unexpected number of replacement fields in format string; did you pass too few or "
|
|
|
|
"too many arguments?");
|
2020-11-09 12:50:35 +00:00
|
|
|
return MsgAlertFmtImpl(yes_no, style, format, fmt::make_args_checked<Args...>(format, args...));
|
|
|
|
}
|
|
|
|
|
2009-03-18 22:05:31 +00:00
|
|
|
void SetEnableAlert(bool enable);
|
2020-10-14 18:50:38 +00:00
|
|
|
|
|
|
|
// Like fmt::format, except the string becomes translatable
|
|
|
|
template <typename... Args>
|
|
|
|
std::string FmtFormatT(const char* string, Args&&... args)
|
|
|
|
{
|
|
|
|
return fmt::format(Common::GetStringT(string), std::forward<Args>(args)...);
|
|
|
|
}
|
2019-06-17 03:45:37 +00:00
|
|
|
} // namespace Common
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2020-11-09 12:50:35 +00:00
|
|
|
// Deprecated variants of the alert macros. See the fmt variants down below.
|
|
|
|
|
2019-06-17 03:45:37 +00:00
|
|
|
#define SuccessAlert(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Information, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define PanicAlert(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define PanicYesNo(format, ...) \
|
|
|
|
Common::MsgAlert(true, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define AskYesNo(format, ...) \
|
|
|
|
Common::MsgAlert(true, Common::MsgType::Question, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define CriticalAlert(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Critical, format, ##__VA_ARGS__)
|
|
|
|
|
2011-01-13 02:05:58 +00:00
|
|
|
// Use these macros (that do the same thing) if the message should be translated.
|
2019-06-17 03:45:37 +00:00
|
|
|
#define SuccessAlertT(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Information, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define PanicAlertT(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define PanicYesNoT(format, ...) \
|
|
|
|
Common::MsgAlert(true, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define AskYesNoT(format, ...) \
|
|
|
|
Common::MsgAlert(true, Common::MsgType::Question, format, ##__VA_ARGS__)
|
|
|
|
|
|
|
|
#define CriticalAlertT(format, ...) \
|
|
|
|
Common::MsgAlert(false, Common::MsgType::Critical, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
// Fmt-capable variants of the macros
|
|
|
|
|
2020-11-19 11:56:46 +00:00
|
|
|
#define GenericAlertFmt(yes_no, style, format, ...) \
|
|
|
|
[&] { \
|
|
|
|
/* Use a macro-like name to avoid shadowing warnings */ \
|
|
|
|
constexpr auto GENERIC_ALERT_FMT_N = Common::CountFmtReplacementFields(format); \
|
|
|
|
return Common::MsgAlertFmt<GENERIC_ALERT_FMT_N>(yes_no, style, FMT_STRING(format), \
|
|
|
|
##__VA_ARGS__); \
|
|
|
|
}()
|
|
|
|
|
2020-11-20 16:29:11 +00:00
|
|
|
#define GenericAlertFmtT(yes_no, style, format, ...) \
|
|
|
|
[&] { \
|
|
|
|
static_assert(!Common::ContainsNonPositionalArguments(format), \
|
|
|
|
"Translatable strings must use positional arguments (e.g. {0} instead of {})"); \
|
|
|
|
/* Use a macro-like name to avoid shadowing warnings */ \
|
|
|
|
constexpr auto GENERIC_ALERT_FMT_N = Common::CountFmtReplacementFields(format); \
|
|
|
|
return Common::MsgAlertFmt<GENERIC_ALERT_FMT_N>(yes_no, style, FMT_STRING(format), \
|
|
|
|
##__VA_ARGS__); \
|
|
|
|
}()
|
|
|
|
|
2020-11-09 12:50:35 +00:00
|
|
|
#define SuccessAlertFmt(format, ...) \
|
2020-11-19 11:56:46 +00:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Information, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define PanicAlertFmt(format, ...) \
|
2020-11-19 11:56:46 +00:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define PanicYesNoFmt(format, ...) \
|
2020-11-19 11:56:46 +00:00
|
|
|
GenericAlertFmt(true, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define AskYesNoFmt(format, ...) \
|
2020-11-19 11:56:46 +00:00
|
|
|
GenericAlertFmt(true, Common::MsgType::Question, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define CriticalAlertFmt(format, ...) \
|
2020-11-19 11:56:46 +00:00
|
|
|
GenericAlertFmt(false, Common::MsgType::Critical, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
// Use these macros (that do the same thing) if the message should be translated.
|
|
|
|
#define SuccessAlertFmtT(format, ...) \
|
2020-11-20 16:29:11 +00:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Information, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define PanicAlertFmtT(format, ...) \
|
2020-11-20 16:29:11 +00:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define PanicYesNoFmtT(format, ...) \
|
2020-11-20 16:29:11 +00:00
|
|
|
GenericAlertFmtT(true, Common::MsgType::Warning, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define AskYesNoFmtT(format, ...) \
|
2020-11-20 16:29:11 +00:00
|
|
|
GenericAlertFmtT(true, Common::MsgType::Question, format, ##__VA_ARGS__)
|
2020-11-09 12:50:35 +00:00
|
|
|
|
|
|
|
#define CriticalAlertFmtT(format, ...) \
|
2020-11-20 16:29:11 +00:00
|
|
|
GenericAlertFmtT(false, Common::MsgType::Critical, format, ##__VA_ARGS__)
|