2019-09-24 02:42:42 +02:00
|
|
|
#ifndef DUNGEON_H
|
|
|
|
#define DUNGEON_H
|
2019-09-22 22:12:20 +02:00
|
|
|
|
2019-10-08 00:18:51 +02:00
|
|
|
#include "core/reference.h"
|
2019-09-22 22:12:20 +02:00
|
|
|
|
2019-09-24 15:08:43 +02:00
|
|
|
#include "dungeon_room.h"
|
2019-10-18 09:18:23 +02:00
|
|
|
#include "dungeon_corridor.h"
|
2019-10-05 19:53:52 +02:00
|
|
|
|
|
|
|
#include "../../voxelman/world/voxel_chunk.h"
|
2019-09-24 02:42:42 +02:00
|
|
|
#include "../../voxelman/world/voxel_structure.h"
|
2019-10-08 00:18:51 +02:00
|
|
|
#include "../../voxelman/world/environment_data.h"
|
2019-09-24 02:42:42 +02:00
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
#include "../../entity_spell_system/entities/data/entity_data.h"
|
|
|
|
|
2019-09-24 02:42:42 +02:00
|
|
|
class Dungeon : public Reference {
|
|
|
|
GDCLASS(Dungeon, Reference);
|
2019-09-22 22:12:20 +02:00
|
|
|
|
|
|
|
public:
|
2019-10-18 09:00:01 +02:00
|
|
|
int get_seed();
|
|
|
|
void set_seed(int value);
|
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
//Pos
|
2019-10-18 09:00:01 +02:00
|
|
|
int get_posx();
|
|
|
|
void set_posx(int value);
|
|
|
|
|
|
|
|
int get_posy();
|
|
|
|
void set_posy(int value);
|
|
|
|
|
|
|
|
int get_posz();
|
|
|
|
void set_posz(int value);
|
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
//Size
|
2019-10-18 09:00:01 +02:00
|
|
|
int get_sizex();
|
|
|
|
void set_sizex(int value);
|
|
|
|
|
|
|
|
int get_sizey();
|
|
|
|
void set_sizey(int value);
|
|
|
|
|
|
|
|
int get_sizez();
|
|
|
|
void set_sizez(int value);
|
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
//Room Count
|
|
|
|
int get_room_count();
|
|
|
|
void set_room_count(int value);
|
|
|
|
|
2019-10-08 00:18:51 +02:00
|
|
|
//Environment
|
|
|
|
Ref<EnvironmentData> get_environment();
|
|
|
|
void set_environment(Ref<EnvironmentData> value);
|
|
|
|
|
2019-10-18 09:00:01 +02:00
|
|
|
//Rooms
|
2019-09-24 15:08:43 +02:00
|
|
|
Ref<DungeonRoom> get_dungeon_room(const int index) const;
|
|
|
|
void set_dungeon_room(const int index, const Ref<DungeonRoom> dungeon_room);
|
|
|
|
void add_dungeon_room(const Ref<DungeonRoom> dungeon_room);
|
|
|
|
void remove_dungeon_room(const int index);
|
|
|
|
|
|
|
|
int get_dungeon_room_count() const;
|
2019-09-22 22:12:20 +02:00
|
|
|
|
2019-10-18 09:00:01 +02:00
|
|
|
//Start Rooms
|
|
|
|
Ref<DungeonRoom> get_dungeon_start_room(const int index) const;
|
|
|
|
void set_dungeon_start_room(const int index, const Ref<DungeonRoom> dungeon_start_room);
|
|
|
|
void add_dungeon_start_room(const Ref<DungeonRoom> dungeon_start_room);
|
|
|
|
void remove_dungeon_start_room(const int index);
|
|
|
|
|
|
|
|
int get_dungeon_start_room_count() const;
|
|
|
|
|
|
|
|
//End Rooms
|
|
|
|
Ref<DungeonRoom> get_dungeon_end_room(const int index) const;
|
|
|
|
void set_dungeon_end_room(const int index, const Ref<DungeonRoom> dungeon_end_room);
|
|
|
|
void add_dungeon_end_room(const Ref<DungeonRoom> dungeon_end_room);
|
|
|
|
void remove_dungeon_end_room(const int index);
|
|
|
|
|
|
|
|
int get_dungeon_end_room_count() const;
|
|
|
|
|
|
|
|
//Corridors
|
2019-10-18 09:18:23 +02:00
|
|
|
Ref<DungeonCorridor> get_dungeon_corridor(const int index) const;
|
|
|
|
void set_dungeon_corridor(const int index, const Ref<DungeonCorridor> dungeon_corridors);
|
|
|
|
void add_dungeon_corridor(const Ref<DungeonCorridor> dungeon_corridors);
|
2019-10-18 09:00:01 +02:00
|
|
|
void remove_dungeon_corridor(const int index);
|
|
|
|
|
|
|
|
int get_dungeon_corridor_count() const;
|
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
//Entities
|
2019-10-18 10:45:02 +02:00
|
|
|
Ref<EntityData> get_entity_data(const int index) const;
|
|
|
|
void set_entity_data(const int index, const Ref<EntityData> entity_datas);
|
|
|
|
void add_entity_data(const Ref<EntityData> entity_datas);
|
2019-10-18 10:22:11 +02:00
|
|
|
void remove_entity_data(const int index);
|
|
|
|
|
|
|
|
int get_entity_data_count() const;
|
|
|
|
|
2019-10-18 09:00:01 +02:00
|
|
|
void setup();
|
2019-10-05 19:53:52 +02:00
|
|
|
void generate_chunk(Ref<VoxelChunk> chunk);
|
|
|
|
void generate_structure(Ref<VoxelStructure> structure);
|
2019-09-22 22:12:20 +02:00
|
|
|
|
2019-10-14 21:50:35 +02:00
|
|
|
Ref<Image> generate_map();
|
|
|
|
|
2019-09-24 02:42:42 +02:00
|
|
|
Dungeon();
|
|
|
|
~Dungeon();
|
2019-09-22 22:12:20 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
private:
|
2019-10-18 09:00:01 +02:00
|
|
|
int _seed;
|
|
|
|
|
|
|
|
int _posx;
|
|
|
|
int _posy;
|
|
|
|
int _posz;
|
|
|
|
|
|
|
|
int _sizex;
|
|
|
|
int _sizey;
|
|
|
|
int _sizez;
|
|
|
|
|
2019-10-18 10:22:11 +02:00
|
|
|
int _room_count;
|
|
|
|
|
2019-10-08 00:18:51 +02:00
|
|
|
Ref<EnvironmentData> _environment;
|
2019-09-24 15:08:43 +02:00
|
|
|
Vector<Ref<DungeonRoom> > _dungeon_rooms;
|
2019-10-18 09:00:01 +02:00
|
|
|
Vector<Ref<DungeonRoom> > _dungeon_start_rooms;
|
|
|
|
Vector<Ref<DungeonRoom> > _dungeon_end_rooms;
|
2019-10-18 09:18:23 +02:00
|
|
|
Vector<Ref<DungeonCorridor> > _dungeon_corridors;
|
2019-10-18 10:22:11 +02:00
|
|
|
Vector<Ref<EntityData> > _entity_datas;
|
2019-09-22 22:12:20 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|