2019-09-24 02:42:42 +02:00
|
|
|
#include "biome_data.h"
|
2019-09-22 22:12:20 +02:00
|
|
|
|
2019-09-24 15:08:43 +02:00
|
|
|
Vector2 BiomeData::get_humidity_range() {
|
|
|
|
return _humidity_range;
|
|
|
|
}
|
|
|
|
void BiomeData::set_humidity_range(Vector2 range) {
|
|
|
|
_humidity_range = range;
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector2 BiomeData::get_temperature_range() {
|
|
|
|
return _temperature_range;
|
|
|
|
}
|
|
|
|
void BiomeData::set_temperature_range(Vector2 range) {
|
|
|
|
_temperature_range = range;
|
|
|
|
}
|
|
|
|
|
|
|
|
//// DungeonData ////
|
|
|
|
|
|
|
|
Ref<DungeonData> BiomeData::get_dungeon_data(const int index) const {
|
|
|
|
ERR_FAIL_INDEX_V(index, _dungeon_datas.size(), Ref<DungeonData>());
|
|
|
|
|
|
|
|
return _dungeon_datas.get(index);
|
|
|
|
}
|
|
|
|
void BiomeData::set_dungeon_data(const int index, const Ref<DungeonData> dungeon_data) {
|
|
|
|
ERR_FAIL_INDEX(index, _dungeon_datas.size());
|
|
|
|
|
|
|
|
_dungeon_datas.set(index, dungeon_data);
|
|
|
|
}
|
|
|
|
void BiomeData::add_dungeon_data(const Ref<DungeonData> dungeon_data) {
|
|
|
|
_dungeon_datas.push_back(dungeon_data);
|
|
|
|
}
|
|
|
|
void BiomeData::remove_dungeon_data(const int index) {
|
|
|
|
ERR_FAIL_INDEX(index, _dungeon_datas.size());
|
|
|
|
|
|
|
|
_dungeon_datas.remove(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
int BiomeData::get_dungeon_data_count() const {
|
|
|
|
return _dungeon_datas.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<Variant> BiomeData::get_dungeon_datas() {
|
|
|
|
Vector<Variant> r;
|
|
|
|
for (int i = 0; i < _dungeon_datas.size(); i++) {
|
|
|
|
r.push_back(_dungeon_datas[i].get_ref_ptr());
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
void BiomeData::set_dungeon_datas(const Vector<Variant> &dungeon_datas) {
|
|
|
|
_dungeon_datas.clear();
|
|
|
|
for (int i = 0; i < dungeon_datas.size(); i++) {
|
|
|
|
Ref<DungeonData> dungeon_data = Ref<DungeonData>(dungeon_datas[i]);
|
|
|
|
|
|
|
|
_dungeon_datas.push_back(dungeon_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//// PROP DATA ////
|
|
|
|
|
|
|
|
Ref<PropData> BiomeData::get_prop_data(const int index) const {
|
|
|
|
ERR_FAIL_INDEX_V(index, _prop_datas.size(), Ref<PropData>());
|
|
|
|
|
|
|
|
return _prop_datas.get(index);
|
|
|
|
}
|
|
|
|
void BiomeData::set_prop_data(const int index, const Ref<PropData> prop_data) {
|
|
|
|
ERR_FAIL_INDEX(index, _prop_datas.size());
|
|
|
|
|
|
|
|
_prop_datas.set(index, prop_data);
|
|
|
|
}
|
|
|
|
void BiomeData::add_prop_data(const Ref<PropData> prop_data) {
|
|
|
|
_prop_datas.push_back(prop_data);
|
|
|
|
}
|
|
|
|
void BiomeData::remove_prop_data(const int index) {
|
|
|
|
ERR_FAIL_INDEX(index, _prop_datas.size());
|
|
|
|
|
|
|
|
_prop_datas.remove(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
int BiomeData::get_prop_data_count() const {
|
|
|
|
return _prop_datas.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<Variant> BiomeData::get_prop_datas() {
|
|
|
|
Vector<Variant> r;
|
|
|
|
for (int i = 0; i < _prop_datas.size(); i++) {
|
|
|
|
r.push_back(_prop_datas[i].get_ref_ptr());
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
void BiomeData::set_prop_datas(const Vector<Variant> &prop_datas) {
|
|
|
|
_prop_datas.clear();
|
|
|
|
for (int i = 0; i < prop_datas.size(); i++) {
|
|
|
|
Ref<PropData> prop_data = Ref<PropData>(prop_datas[i]);
|
|
|
|
|
|
|
|
_prop_datas.push_back(prop_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-08 00:18:51 +02:00
|
|
|
//Environments
|
|
|
|
Ref<EnvironmentData> BiomeData::get_environment_data(const int index) const {
|
|
|
|
ERR_FAIL_INDEX_V(index, _environment_datas.size(), Ref<EnvironmentData>());
|
|
|
|
|
|
|
|
return _environment_datas.get(index);
|
|
|
|
}
|
|
|
|
void BiomeData::set_environment_data(const int index, const Ref<EnvironmentData> environment_data) {
|
|
|
|
ERR_FAIL_INDEX(index, _environment_datas.size());
|
|
|
|
|
|
|
|
_environment_datas.set(index, environment_data);
|
|
|
|
}
|
|
|
|
void BiomeData::add_environment_data(const Ref<EnvironmentData> environment_data) {
|
|
|
|
_environment_datas.push_back(environment_data);
|
|
|
|
}
|
|
|
|
void BiomeData::remove_environment_data(const int index) {
|
|
|
|
ERR_FAIL_INDEX(index, _environment_datas.size());
|
|
|
|
|
|
|
|
_environment_datas.remove(index);
|
|
|
|
}
|
|
|
|
int BiomeData::get_environment_data_count() const {
|
|
|
|
return _environment_datas.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
Vector<Variant> BiomeData::get_environment_datas() {
|
|
|
|
Vector<Variant> r;
|
|
|
|
for (int i = 0; i < _environment_datas.size(); i++) {
|
|
|
|
r.push_back(_environment_datas[i].get_ref_ptr());
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
void BiomeData::set_environment_datas(const Vector<Variant> &environment_datas) {
|
|
|
|
_environment_datas.clear();
|
|
|
|
for (int i = 0; i < environment_datas.size(); i++) {
|
|
|
|
Ref<EnvironmentData> environment_data = Ref<EnvironmentData>(environment_datas[i]);
|
|
|
|
|
|
|
|
_environment_datas.push_back(environment_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-24 02:42:42 +02:00
|
|
|
Ref<Biome> BiomeData::setup_biome(int seed) {
|
|
|
|
if (has_method("_setup_biome")) {
|
|
|
|
return call("_setup_biome", seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
return Ref<Biome>(NULL);
|
2019-09-22 22:12:20 +02:00
|
|
|
}
|
|
|
|
|
2019-09-24 02:42:42 +02:00
|
|
|
BiomeData::BiomeData() {
|
2019-09-22 22:12:20 +02:00
|
|
|
|
|
|
|
}
|
2019-09-24 02:42:42 +02:00
|
|
|
BiomeData::~BiomeData() {
|
2019-09-24 15:08:43 +02:00
|
|
|
_dungeon_datas.clear();
|
|
|
|
_prop_datas.clear();
|
2019-09-22 22:12:20 +02:00
|
|
|
}
|
|
|
|
|
2019-09-24 02:42:42 +02:00
|
|
|
void BiomeData::_bind_methods() {
|
|
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::OBJECT, "room", PROPERTY_HINT_RESOURCE_TYPE, "Biome"), "_setup_biome", PropertyInfo(Variant::INT, "seed")));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("setup_biome", "seed"), &BiomeData::setup_biome);
|
2019-09-24 15:08:43 +02:00
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_humidity_range"), &BiomeData::get_humidity_range);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_humidity_range", "value"), &BiomeData::set_humidity_range);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "humidity_range"), "set_humidity_range", "get_humidity_range");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_temperature_range"), &BiomeData::get_temperature_range);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_temperature_range", "value"), &BiomeData::set_temperature_range);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::VECTOR2, "temperature_range"), "set_temperature_range", "get_temperature_range");
|
|
|
|
|
|
|
|
//DungeonDatas
|
|
|
|
ClassDB::bind_method(D_METHOD("get_dungeon_data", "index"), &BiomeData::get_dungeon_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_dungeon_data", "index", "data"), &BiomeData::set_dungeon_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("add_dungeon_data", "dungeon_data"), &BiomeData::add_dungeon_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("remove_dungeon_data", "index"), &BiomeData::remove_dungeon_data);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_dungeon_data_count"), &BiomeData::get_dungeon_data_count);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_dungeon_datas"), &BiomeData::get_dungeon_datas);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_dungeon_datas", "dungeon_datas"), &BiomeData::set_dungeon_datas);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "dungeon_datas", PROPERTY_HINT_NONE, "17/17:DungeonData", PROPERTY_USAGE_DEFAULT, "DungeonData"), "set_dungeon_datas", "get_dungeon_datas");
|
|
|
|
|
|
|
|
//PropData
|
|
|
|
ClassDB::bind_method(D_METHOD("get_prop_data", "index"), &BiomeData::get_prop_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_prop_data", "index", "data"), &BiomeData::set_prop_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("add_prop_data", "prop_data"), &BiomeData::add_prop_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("remove_prop_data", "index"), &BiomeData::remove_prop_data);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_prop_data_count"), &BiomeData::get_prop_data_count);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_prop_datas"), &BiomeData::get_prop_datas);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_prop_datas", "prop_datas"), &BiomeData::set_prop_datas);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "prop_datas", PROPERTY_HINT_NONE, "17/17:PropData", PROPERTY_USAGE_DEFAULT, "PropData"), "set_prop_datas", "get_prop_datas");
|
2019-10-08 00:18:51 +02:00
|
|
|
|
|
|
|
//Environments
|
|
|
|
ClassDB::bind_method(D_METHOD("get_environment_data", "index"), &BiomeData::get_environment_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_environment_data", "index", "data"), &BiomeData::set_environment_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("add_environment_data", "environment_data"), &BiomeData::add_environment_data);
|
|
|
|
ClassDB::bind_method(D_METHOD("remove_environment_data", "index"), &BiomeData::remove_environment_data);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_environment_data_count"), &BiomeData::get_environment_data_count);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_environment_datas"), &BiomeData::get_environment_datas);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_environment_datas", "environment_datas"), &BiomeData::set_environment_datas);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "environment_datas", PROPERTY_HINT_NONE, "17/17:EnvironmentData", PROPERTY_USAGE_DEFAULT, "EnvironmentData"), "set_environment_datas", "get_environment_datas");
|
2019-09-22 22:12:20 +02:00
|
|
|
}
|