mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Move cheat_type fmt to cheat_info.cpp
This commit is contained in:
parent
4794558c08
commit
d33d3a9f57
2 changed files with 23 additions and 23 deletions
|
@ -4,6 +4,29 @@
|
||||||
|
|
||||||
LOG_CHANNEL(log_cheat, "Cheat");
|
LOG_CHANNEL(log_cheat, "Cheat");
|
||||||
|
|
||||||
|
template <>
|
||||||
|
void fmt_class_string<cheat_type>::format(std::string& out, u64 arg)
|
||||||
|
{
|
||||||
|
format_enum(out, arg, [](cheat_type value)
|
||||||
|
{
|
||||||
|
switch (value)
|
||||||
|
{
|
||||||
|
case cheat_type::unsigned_8_cheat: return "Unsigned 8 bits";
|
||||||
|
case cheat_type::unsigned_16_cheat: return "Unsigned 16 bits";
|
||||||
|
case cheat_type::unsigned_32_cheat: return "Unsigned 32 bits";
|
||||||
|
case cheat_type::unsigned_64_cheat: return "Unsigned 64 bits";
|
||||||
|
case cheat_type::signed_8_cheat: return "Signed 8 bits";
|
||||||
|
case cheat_type::signed_16_cheat: return "Signed 16 bits";
|
||||||
|
case cheat_type::signed_32_cheat: return "Signed 32 bits";
|
||||||
|
case cheat_type::signed_64_cheat: return "Signed 64 bits";
|
||||||
|
case cheat_type::float_32_cheat: return "Float 32 bits";
|
||||||
|
case cheat_type::max: break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return unknown;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
bool cheat_info::from_str(const std::string& cheat_line)
|
bool cheat_info::from_str(const std::string& cheat_line)
|
||||||
{
|
{
|
||||||
auto cheat_vec = fmt::split(cheat_line, {"@@@"}, false);
|
auto cheat_vec = fmt::split(cheat_line, {"@@@"}, false);
|
||||||
|
|
|
@ -29,29 +29,6 @@ LOG_CHANNEL(log_cheat, "Cheat");
|
||||||
|
|
||||||
cheat_manager_dialog* cheat_manager_dialog::inst = nullptr;
|
cheat_manager_dialog* cheat_manager_dialog::inst = nullptr;
|
||||||
|
|
||||||
template <>
|
|
||||||
void fmt_class_string<cheat_type>::format(std::string& out, u64 arg)
|
|
||||||
{
|
|
||||||
format_enum(out, arg, [](cheat_type value)
|
|
||||||
{
|
|
||||||
switch (value)
|
|
||||||
{
|
|
||||||
case cheat_type::unsigned_8_cheat: return "Unsigned 8 bits";
|
|
||||||
case cheat_type::unsigned_16_cheat: return "Unsigned 16 bits";
|
|
||||||
case cheat_type::unsigned_32_cheat: return "Unsigned 32 bits";
|
|
||||||
case cheat_type::unsigned_64_cheat: return "Unsigned 64 bits";
|
|
||||||
case cheat_type::signed_8_cheat: return "Signed 8 bits";
|
|
||||||
case cheat_type::signed_16_cheat: return "Signed 16 bits";
|
|
||||||
case cheat_type::signed_32_cheat: return "Signed 32 bits";
|
|
||||||
case cheat_type::signed_64_cheat: return "Signed 64 bits";
|
|
||||||
case cheat_type::float_32_cheat: return "Float 32 bits";
|
|
||||||
case cheat_type::max: break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return unknown;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
YAML::Emitter& operator<<(YAML::Emitter& out, const cheat_info& rhs)
|
YAML::Emitter& operator<<(YAML::Emitter& out, const cheat_info& rhs)
|
||||||
{
|
{
|
||||||
std::string type_formatted;
|
std::string type_formatted;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue