entity_spell_system/utility/cooldown.cpp

105 lines
3.3 KiB
C++

/*
Copyright (c) 2019-2020 Péter Magyar
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
#include "cooldown.h"
#include "../database/ess_resource_db.h"
#include "../singletons/ess.h"
#include "../defines.h"
int Cooldown::get_spell_id() const {
return _spell_id;
}
void Cooldown::set_spell_id(const int value) {
_spell_id = value;
}
float Cooldown::get_remaining() const {
return _remaining;
}
void Cooldown::set_remaining(const float value) {
_remaining = value;
}
bool Cooldown::update(const float delta) {
_remaining -= delta;
if (_remaining <= 0) {
_remaining = 0;
return true;
}
return false;
}
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["spell_path"] = ESS::get_singleton()->get_resource_db()->spell_id_to_path(_spell_id);
dict["remaining"] = _remaining;
return dict;
}
void Cooldown::_from_dict(const Dictionary &dict) {
ERR_FAIL_COND(dict.empty());
ERR_FAIL_COND(!ESS::get_singleton()->get_resource_db().is_valid());
StringName spell_path = dict.get("spell_path", "");
//_spell_id = dict.get("spell_id", 0);
_spell_id = ESS::get_singleton()->get_resource_db()->spell_path_to_id(spell_path);
_remaining = dict.get("remaining", 0);
}
void Cooldown::_bind_methods() {
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);
//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);
}