2022-03-17 22:33:22 +01:00
|
|
|
#ifndef CHARACTER_SPEC_H
|
|
|
|
#define CHARACTER_SPEC_H
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
|
2022-08-17 13:45:14 +02:00
|
|
|
#include "core/object/resource.h"
|
2022-08-17 14:19:55 +02:00
|
|
|
#include "core/string/ustring.h"
|
2022-08-17 12:53:49 +02:00
|
|
|
#include "core/containers/vector.h"
|
2022-03-15 13:29:32 +01:00
|
|
|
|
|
|
|
class Spell;
|
|
|
|
|
|
|
|
class CharacterSpec : public Resource {
|
|
|
|
GDCLASS(CharacterSpec, Resource);
|
|
|
|
|
|
|
|
public:
|
|
|
|
int get_id() const;
|
|
|
|
void set_id(const int value);
|
|
|
|
|
|
|
|
int get_num_rows() const;
|
|
|
|
void set_num_rows(const int value);
|
|
|
|
|
|
|
|
int get_num_columns(const int row) const;
|
|
|
|
void set_num_columns(const int row, const int value);
|
|
|
|
|
|
|
|
int get_num_ranks(const int row, const int column) const;
|
|
|
|
void set_num_ranks(const int row, const int column, const int value);
|
|
|
|
|
|
|
|
Vector<Variant> get_talents();
|
|
|
|
|
|
|
|
Ref<Spell> get_talent(const int row, const int column, const int rank);
|
|
|
|
void set_talent(const int row, const int column, const int rank, const Ref<Spell> &talent);
|
|
|
|
|
|
|
|
bool has_talent_with_id(const int id);
|
|
|
|
Ref<Spell> get_talent_with_id(const int id);
|
|
|
|
|
|
|
|
CharacterSpec();
|
|
|
|
~CharacterSpec();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool _set(const StringName &p_name, const Variant &p_value);
|
|
|
|
bool _get(const StringName &p_name, Variant &r_ret) const;
|
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int _id;
|
2022-03-18 00:38:45 +01:00
|
|
|
Vector<Vector<Vector<Ref<Spell>>>> _rows;
|
2022-03-15 13:29:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|