mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
48 lines
1.4 KiB
C++
48 lines
1.4 KiB
C++
#ifndef CONFIG_FILE_H
|
|
#define CONFIG_FILE_H
|
|
|
|
/* config_file.h */
|
|
|
|
|
|
#include "core/containers/ordered_hash_map.h"
|
|
#include "core/os/file_access.h"
|
|
#include "core/object/reference.h"
|
|
#include "core/variant/variant_parser.h"
|
|
|
|
class ConfigFile : public Reference {
|
|
GDCLASS(ConfigFile, Reference);
|
|
|
|
OrderedHashMap<String, OrderedHashMap<String, Variant>> values;
|
|
|
|
PoolStringArray _get_sections() const;
|
|
PoolStringArray _get_section_keys(const String &p_section) const;
|
|
Error _internal_load(const String &p_path, FileAccess *f);
|
|
Error _internal_save(FileAccess *file);
|
|
|
|
Error _parse(const String &p_path, VariantParser::Stream *p_stream);
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
void set_value(const String &p_section, const String &p_key, const Variant &p_value);
|
|
Variant get_value(const String &p_section, const String &p_key, Variant p_default = Variant()) const;
|
|
|
|
bool has_section(const String &p_section) const;
|
|
bool has_section_key(const String &p_section, const String &p_key) const;
|
|
|
|
void get_sections(List<String> *r_sections) const;
|
|
void get_section_keys(const String &p_section, List<String> *r_keys) const;
|
|
|
|
void erase_section(const String &p_section);
|
|
void erase_section_key(const String &p_section, const String &p_key);
|
|
|
|
Error save(const String &p_path);
|
|
Error load(const String &p_path);
|
|
Error parse(const String &p_data);
|
|
|
|
void clear();
|
|
};
|
|
|
|
#endif // CONFIG_FILE_H
|