mirror of https://github.com/AxioDL/metaforce.git
93 lines
2.9 KiB
C++
Executable File
93 lines
2.9 KiB
C++
Executable File
#ifndef CVAR_HPP
|
|
#define CVAR_HPP
|
|
|
|
#include <string>
|
|
#include "CColor.hpp"
|
|
#include "DataSpec/DNACommon/CVar.hpp"
|
|
|
|
namespace Retro
|
|
{
|
|
|
|
class CVarManager;
|
|
class CVar : protected DNACVAR::CVar
|
|
{
|
|
public:
|
|
using EType = DNACVAR::EType;
|
|
using EFlags = DNACVAR::EFlags;
|
|
|
|
CVar(const std::string& name, const std::string& value, const std::string& help, EType type, EFlags flags, CVarManager* parent);
|
|
CVar(const std::string& name, const std::string& value, const std::string& help, EFlags flags, CVarManager* parent);
|
|
CVar(const std::string& name, const Zeus::CColor& value, const std::string& help, EFlags flags, CVarManager* parent);
|
|
CVar(const std::string& name, float value, const std::string& help, EFlags flags, CVarManager* parent);
|
|
CVar(const std::string& name, bool value, const std::string& help, EFlags flags, CVarManager* parent);
|
|
CVar(const std::string& name, int value, const std::string& help, EFlags flags, CVarManager* parent);
|
|
|
|
|
|
std::string name() const;
|
|
std::string help() const;
|
|
|
|
Zeus::CColor toColor(bool* isValid = nullptr) const;
|
|
float toFloat(bool* isValid = nullptr) const;
|
|
bool toBoolean(bool* isValid = nullptr) const;
|
|
int toInteger(bool* isValid = nullptr) const;
|
|
const std::string& toLiteral(bool* isValid = nullptr) const;
|
|
|
|
bool fromColor(const Zeus::CColor& val);
|
|
bool fromFloat(float val);
|
|
bool fromBoolean(bool val);
|
|
bool fromInteger(int val);
|
|
bool fromLiteral(const std::string& val);
|
|
|
|
bool isFloat() const { return m_type == EType::Float; }
|
|
bool isBoolean() const { return m_type == EType::Boolean; }
|
|
bool isInteger() const { return m_type == EType::Integer; }
|
|
bool isLiteral() const { return m_type == EType::Literal; }
|
|
bool isBinding() const { return m_type == EType::Bind; }
|
|
bool isColor() const { return m_type == EType::Color; }
|
|
bool isModified() const;
|
|
bool isReadOnly() const;
|
|
bool isCheat() const;
|
|
bool isHidden() const;
|
|
bool isArchive() const;
|
|
void clearModified();
|
|
void setModified();
|
|
|
|
EType type() const { return m_type; }
|
|
EFlags flags() const { return m_flags; }
|
|
|
|
/*!
|
|
* \brief Unlocks the CVar for writing if it is ReadOnly.
|
|
* <b>Handle with care!!!</b> if you use unlock(), make sure
|
|
* you lock the cvar using lock()
|
|
* \see lock
|
|
*/
|
|
void unlock();
|
|
|
|
/*!
|
|
* \brief Locks the CVar to prevent writing if it is ReadOnly.
|
|
* Unlike it's partner function unlock, lock is harmless
|
|
* \see unlock
|
|
*/
|
|
void lock();
|
|
private:
|
|
std::string m_help;
|
|
std::string m_defaultValue;
|
|
bool m_allowedWrite;
|
|
|
|
const CVarManager* m_mgr;
|
|
};
|
|
|
|
|
|
|
|
class CVarUnlocker
|
|
{
|
|
CVar* m_cvar;
|
|
public:
|
|
CVarUnlocker(CVar* cvar) : m_cvar(cvar) { if (m_cvar) m_cvar->unlock(); }
|
|
~CVarUnlocker() { if (m_cvar) m_cvar->lock(); }
|
|
};
|
|
|
|
}
|
|
#endif // CVAR_HPP
|
|
|