2019-05-06 18:07:07 +02:00
|
|
|
#include "cooldown.h"
|
|
|
|
|
2020-01-09 04:27:19 +01:00
|
|
|
int Cooldown::get_spell_id() const {
|
|
|
|
return _spell_id;
|
2019-05-06 18:07:07 +02:00
|
|
|
}
|
|
|
|
|
2020-01-09 04:27:19 +01:00
|
|
|
void Cooldown::set_spell_id(const int value) {
|
|
|
|
_spell_id = value;
|
2019-05-06 18:07:07 +02:00
|
|
|
}
|
|
|
|
|
2020-01-09 04:27:19 +01:00
|
|
|
float Cooldown::get_remaining() const {
|
|
|
|
return _remaining;
|
2019-05-06 18:07:07 +02:00
|
|
|
}
|
|
|
|
|
2020-01-09 04:27:19 +01:00
|
|
|
void Cooldown::set_remaining(const float value) {
|
|
|
|
_remaining = value;
|
2019-05-06 18:07:07 +02:00
|
|
|
}
|
|
|
|
|
2019-08-05 01:36:33 +02:00
|
|
|
bool Cooldown::update(const float delta) {
|
2020-01-09 04:27:19 +01:00
|
|
|
_remaining -= delta;
|
|
|
|
|
|
|
|
if (_remaining <= 0) {
|
|
|
|
_remaining = 0;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
2019-05-27 18:28:27 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 15:21:07 +02:00
|
|
|
Dictionary Cooldown::to_dict() {
|
|
|
|
return call("_to_dict");
|
|
|
|
}
|
|
|
|
void Cooldown::from_dict(const Dictionary &dict) {
|
|
|
|
call("_from_dict", dict);
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary Cooldown::_to_dict() {
|
|
|
|
Dictionary dict;
|
|
|
|
|
|
|
|
dict["spell_id"] = _spell_id;
|
|
|
|
dict["remaining"] = _remaining;
|
|
|
|
|
|
|
|
return dict;
|
|
|
|
}
|
|
|
|
void Cooldown::_from_dict(const Dictionary &dict) {
|
|
|
|
ERR_FAIL_COND(dict.empty());
|
2019-09-14 20:44:50 +02:00
|
|
|
|
|
|
|
_spell_id = dict.get("spell_id", 0);
|
|
|
|
_remaining = dict.get("remaining", 0);
|
2019-09-13 15:21:07 +02:00
|
|
|
}
|
2020-01-09 04:27:19 +01:00
|
|
|
|
2019-05-06 18:07:07 +02:00
|
|
|
void Cooldown::_bind_methods() {
|
2020-01-09 04:27:19 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("get_spell_id"), &Cooldown::get_spell_id);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_spell_id", "value"), &Cooldown::set_spell_id);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::INT, "spell_id"), "set_spell_id", "get_spell_id");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_remaining"), &Cooldown::get_remaining);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_remaining", "value"), &Cooldown::set_remaining);
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::REAL, "remaining"), "set_remaining", "get_remaining");
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("update", "delta"), &Cooldown::update);
|
2019-09-13 15:21:07 +02:00
|
|
|
|
|
|
|
//Serialization
|
|
|
|
BIND_VMETHOD(MethodInfo("_from_dict", PropertyInfo(Variant::DICTIONARY, "dict")));
|
|
|
|
BIND_VMETHOD(MethodInfo(PropertyInfo(Variant::DICTIONARY, "dict"), "_to_dict"));
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("from_dict", "dict"), &Cooldown::from_dict);
|
|
|
|
ClassDB::bind_method(D_METHOD("to_dict"), &Cooldown::to_dict);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("_from_dict", "dict"), &Cooldown::_from_dict);
|
|
|
|
ClassDB::bind_method(D_METHOD("_to_dict"), &Cooldown::_to_dict);
|
2019-05-06 18:07:07 +02:00
|
|
|
}
|