mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-10-27 06:16:04 +03:00
42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
#ifndef UTIL_C_VAR_HPP
|
|
#define UTIL_C_VAR_HPP
|
|
|
|
#include <cstdint>
|
|
#include <common/String.hpp>
|
|
#include <storm/Hash.hpp>
|
|
|
|
class CVar : public TSHashObject<CVar, HASHKEY_STRI> {
|
|
public:
|
|
// Static variables
|
|
static TSHashTable<CVar, HASHKEY_STRI> s_registeredCVars;
|
|
static bool m_needsSave;
|
|
|
|
// Static functions
|
|
static CVar* Lookup(const char* name);
|
|
static CVar* Register(const char*, const char*, uint32_t, const char*, bool (*)(CVar*, const char*, const char*, void*), uint32_t, bool, void*, bool);
|
|
|
|
// Member variables
|
|
uint32_t m_category = 0;
|
|
uint32_t m_flags = 0;
|
|
RCString m_stringValue;
|
|
float m_floatValue = 0.0;
|
|
int32_t m_intValue = 0;
|
|
int32_t m_modified = 0;
|
|
RCString m_defaultValue;
|
|
RCString m_resetValue;
|
|
RCString m_latchedValue;
|
|
RCString m_help;
|
|
bool (*m_callback)(CVar*, const char*, const char*, void*) = nullptr;
|
|
void* m_arg = nullptr;
|
|
|
|
// Member functions
|
|
CVar();
|
|
int32_t GetInt();
|
|
const char* GetString(void);
|
|
void InternalSet(const char*, bool, bool, bool, bool);
|
|
bool Set(const char*, bool, bool, bool, bool);
|
|
int32_t Update();
|
|
};
|
|
|
|
#endif
|