metaforce/hecl/lib/CVar.cpp

471 lines
11 KiB
C++
Raw Normal View History

2016-03-04 23:02:44 +00:00
#include "hecl/hecl.hpp"
#include "hecl/CVar.hpp"
#include "hecl/CVarManager.hpp"
2015-12-02 21:11:10 +00:00
2016-03-04 23:02:44 +00:00
#include <athena/Utility.hpp>
2015-12-02 21:11:10 +00:00
#include <algorithm>
2016-03-04 23:02:44 +00:00
namespace hecl
2015-12-02 21:11:10 +00:00
{
extern CVar* com_developer;
extern CVar* com_enableCheats;
2017-11-13 06:13:53 +00:00
using namespace std::literals;
CVar::CVar(std::string_view name, std::string_view value, std::string_view help, EType type, EFlags flags, CVarManager& parent)
2015-12-02 21:11:10 +00:00
: m_mgr(parent)
{
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
m_value = std::string(value);
m_defaultValue = std::string(value);
2015-12-02 21:11:10 +00:00
m_help = help;
m_type = type;
m_flags = flags;
}
2017-11-13 06:13:53 +00:00
CVar::CVar(std::string_view name, std::string_view value, std::string_view help, CVar::EFlags flags, CVarManager& parent)
2016-01-04 05:25:00 +00:00
: m_mgr(parent)
2015-12-02 21:11:10 +00:00
{
m_flags = flags;
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
2016-01-04 05:25:00 +00:00
m_help = help;
m_type = EType::Literal;
// Unlock the cvar for writing if readonly
unlock();
2015-12-02 21:11:10 +00:00
fromLiteral(value);
m_defaultValue = m_value;
// Lock the cvar
lock();
// Clear the modified flag, just incase lock didn't do it.
m_flags = flags;
}
2017-11-13 06:13:53 +00:00
CVar::CVar(std::string_view name, const atVec4f& value, std::string_view help, EFlags flags, CVarManager& parent)
2015-12-02 21:11:10 +00:00
: m_mgr(parent)
{
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
2015-12-02 21:11:10 +00:00
m_help = help;
m_type = EType::Vec4f;
m_flags = flags;
2016-01-04 05:25:00 +00:00
// Unlock the cvar for writing if readonly
unlock();
2015-12-02 21:11:10 +00:00
fromVec4f(value);
m_defaultValue = m_value;
// Lock the cvar
lock();
// Clear the modified flag, just incase lock didn't do it.
m_flags = flags;
}
2017-11-13 06:13:53 +00:00
CVar::CVar(std::string_view name, float value, std::string_view help, EFlags flags, CVarManager& parent)
2015-12-02 21:11:10 +00:00
: m_mgr(parent)
{
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
2015-12-02 21:11:10 +00:00
m_help = help;
m_type = EType::Float;
m_flags = flags;
2016-01-04 05:25:00 +00:00
// Unlock the cvar for writing if readonly
unlock();
2015-12-02 21:11:10 +00:00
fromFloat(value);
m_defaultValue = m_value;
// Lock the cvar
lock();
// Clear the modified flag, just incase lock didn't do it.
m_flags = flags;
}
2017-11-13 06:13:53 +00:00
CVar::CVar(std::string_view name, bool value, std::string_view help, CVar::EFlags flags, CVarManager& parent)
2015-12-02 21:11:10 +00:00
: m_mgr(parent)
{
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
2015-12-02 21:11:10 +00:00
m_help = help;
m_type = EType::Boolean;
m_flags = flags;
2016-01-04 05:25:00 +00:00
// Unlock the cvar for writing if readonly
unlock();
2015-12-02 21:11:10 +00:00
fromBoolean(value);
m_defaultValue = m_value;
// Lock the cvar
lock();
// Clear the modified flag, just incase lock didn't do it.
m_flags = flags;
}
2017-11-13 06:13:53 +00:00
CVar::CVar(std::string_view name, int value, std::string_view help, CVar::EFlags flags, CVarManager& parent)
2015-12-02 21:11:10 +00:00
: m_mgr(parent)
{
2017-11-13 06:13:53 +00:00
m_name = std::string(name);
2015-12-02 21:11:10 +00:00
m_help = help;
m_type = EType::Integer;
m_flags = flags;
2016-01-04 05:25:00 +00:00
// Unlock the cvar for writing if readonly
unlock();
2015-12-02 21:11:10 +00:00
fromInteger(value);
m_defaultValue = m_value;
// Lock the cvar
lock();
// Clear the modified flag, just incase lock didn't do it.
m_flags = flags;
}
std::string CVar::help() const
{
return std::string(m_help + (m_defaultValue != std::string() ? "\ndefault: " + m_defaultValue : "") +
(isReadOnly() ? "[ReadOnly]" : ""));
}
atVec4f CVar::toVec4f(bool* isValid) const
{
if (m_type != EType::Vec4f)
{
if (isValid != nullptr)
*isValid = false;
2015-12-05 04:10:40 +00:00
return atVec4f{};
2015-12-02 21:11:10 +00:00
}
if (isValid != NULL)
*isValid = true;
atVec4f vec;
std::sscanf(m_value.c_str(), "%f %f %f %f", &vec.vec[0], &vec.vec[1], &vec.vec[2], &vec.vec[3]);
return vec;
}
float CVar::toFloat(bool* isValid) const
{
if (m_type != EType::Float)
{
if (isValid)
*isValid = false;
return 0.0f;
}
return strtof(m_value.c_str(), nullptr);
}
bool CVar::toBoolean(bool* isValid) const
{
if (m_type != EType::Boolean)
{
if (isValid)
*isValid = false;
return false;
}
// We don't want to modify the original value;
std::string tmp = m_value;
athena::utility::tolower(tmp);
2015-12-02 21:11:10 +00:00
if (!tmp.compare("yes") || !tmp.compare("true") || !tmp.compare("1"))
{
if (isValid)
*isValid = true;
return true;
}
else if (!tmp.compare("no") || !tmp.compare("false") || !tmp.compare("0"))
{
if (isValid)
*isValid = true;
return false;
}
if (isValid)
*isValid = false;
return false;
}
int CVar::toInteger(bool* isValid) const
{
if (m_type != EType::Integer)
{
if (isValid)
*isValid = false;
return 0;
}
return strtol(m_value.c_str(), nullptr, 0);
}
const std::string CVar::toLiteral(bool* isValid) const
{
if (m_type != EType::Literal && (com_developer && com_developer->toBoolean()))
{
if (isValid != nullptr)
*isValid = false;
}
else if (isValid != nullptr)
*isValid = true;
// Even if it's not a literal, it's still safe to return
return m_value;
}
const std::wstring CVar::toWideLiteral(bool* isValid) const
{
if (m_type != EType::Literal && (com_developer && com_developer->toBoolean()))
{
if (isValid != nullptr)
*isValid = false;
}
else if (isValid != nullptr)
*isValid = true;
// Even if it's not a literal, it's still safe to return
2016-03-04 23:02:44 +00:00
return hecl::UTF8ToWide(m_value);
2015-12-02 21:11:10 +00:00
}
bool CVar::fromVec4f(const atVec4f& val)
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Vec4f)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
2016-03-04 23:02:44 +00:00
m_value.assign(hecl::Format("%f %f %f %f", val.vec[0], val.vec[1], val.vec[2], val.vec[3]));
2015-12-02 21:11:10 +00:00
m_flags |= EFlags::Modified;
return true;
}
bool CVar::fromFloat(float val)
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Float)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
2016-03-04 23:02:44 +00:00
m_value.assign(hecl::Format("%f", val));
2015-12-02 21:11:10 +00:00
setModified();
return true;
}
bool CVar::fromBoolean(bool val)
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Boolean)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
if (val)
2017-11-13 06:13:53 +00:00
m_value = "true"sv;
2015-12-02 21:11:10 +00:00
else
2017-11-13 06:13:53 +00:00
m_value = "false"sv;
2015-12-02 21:11:10 +00:00
setModified();
return true;
}
bool CVar::fromInteger(int val)
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Integer)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
2016-03-04 23:02:44 +00:00
m_value = hecl::Format("%i", val);
2015-12-02 21:11:10 +00:00
setModified();
return true;
}
2017-11-13 06:13:53 +00:00
bool CVar::fromLiteral(std::string_view val)
2015-12-02 21:11:10 +00:00
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Literal)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
m_value.assign(val);
setModified();
return true;
}
2017-11-13 06:13:53 +00:00
bool CVar::fromLiteral(std::wstring_view val)
2015-12-02 21:11:10 +00:00
{
if (isCheat() && (com_developer && !com_developer->toBoolean() && !com_enableCheats->toBoolean()))
return false;
else if (isCheat())
return false;
if (m_type != EType::Literal)
return false;
if (isReadOnly() && (com_developer && !com_developer->toBoolean()))
return false;
2016-03-04 23:02:44 +00:00
m_value.assign(hecl::WideToUTF8(val));
2015-12-02 21:11:10 +00:00
setModified();
return true;
}
bool CVar::fromLiteralToType(std::string_view val)
{
switch (m_type)
{
case EType::Literal: return fromLiteral(val);
case EType::Boolean:
{
std::stringstream ss;
ss << std::boolalpha << val;
bool v;
ss >> v;
return fromBoolean(v);
}
case EType::Float:
{
std::stringstream ss;
ss << val;
float v;
ss >> v;
return fromFloat(v);
}
case EType::Integer:
{
std::stringstream ss;
ss << val;
int v;
ss >> v;
return fromInteger(v);
}
case EType::Vec4f:
{
atVec4f vec;
std::sscanf(val.data(), "%f %f %f %f", &vec.vec[0], &vec.vec[1], &vec.vec[2], &vec.vec[3]);
return fromVec4f(vec);
}
}
return false;
}
bool CVar::fromLiteralToType(std::wstring_view val)
{
switch (m_type)
{
case EType::Literal: return fromLiteral(val);
case EType::Boolean:
{
std::wstringstream ss;
ss << std::boolalpha << val;
bool v;
ss >> v;
return fromBoolean(v);
}
case EType::Float:
{
std::wstringstream ss;
ss << val;
float v;
ss >> v;
return fromFloat(v);
}
case EType::Integer:
{
std::wstringstream ss;
ss << val;
int v;
ss >> v;
return fromInteger(v);
}
case EType::Vec4f:
{
atVec4f vec;
std::swscanf(val.data(), L"%f %f %f %f", &vec.vec[0], &vec.vec[1], &vec.vec[2], &vec.vec[3]);
return fromVec4f(vec);
}
}
return false;
}
2015-12-02 21:11:10 +00:00
bool CVar::isModified() const { return int(m_flags & EFlags::Modified) != 0;}
2018-01-11 09:35:27 +00:00
bool CVar::modificationRequiresRestart() const { return int(m_flags & EFlags::ModifyRestart) != 0; }
2015-12-02 21:11:10 +00:00
bool CVar::isReadOnly() const { return int(m_flags & EFlags::ReadOnly) != 0; }
bool CVar::isCheat() const { return int(m_flags & EFlags::Cheat) != 0; }
bool CVar::isHidden() const { return int(m_flags & EFlags::Hidden) != 0; }
bool CVar::isArchive() const { return int(m_flags & EFlags::Archive) != 0; }
void CVar::clearModified()
{
if (!modificationRequiresRestart())
m_flags &= ~EFlags::Modified;
}
2015-12-02 21:11:10 +00:00
void CVar::setModified() { m_flags |= EFlags::Modified; }
void CVar::unlock()
{
if (isReadOnly() && !m_unlocked)
2015-12-02 21:11:10 +00:00
{
m_oldFlags = m_flags;
2015-12-02 21:11:10 +00:00
m_flags &= ~EFlags::ReadOnly;
m_unlocked = true;
2015-12-02 21:11:10 +00:00
}
}
void CVar::lock()
{
if (!isReadOnly() && m_unlocked)
2015-12-02 21:11:10 +00:00
{
m_flags = m_oldFlags;
m_unlocked = false;
2015-12-02 21:11:10 +00:00
}
}
void CVar::dispatch()
{
for (const ListenerFunc& listen : m_listeners)
listen(this);
}
}