2022-10-20 16:26:46 +00:00
|
|
|
/* bb_param.h */
|
|
|
|
|
|
|
|
#ifndef BB_PARAM_H
|
|
|
|
#define BB_PARAM_H
|
|
|
|
|
|
|
|
#include "core/object.h"
|
|
|
|
#include "core/resource.h"
|
2022-10-20 20:53:09 +00:00
|
|
|
#include "core/typedefs.h"
|
2022-10-20 16:26:46 +00:00
|
|
|
#include "core/variant.h"
|
|
|
|
#include "modules/limboai/blackboard.h"
|
2022-10-20 20:53:09 +00:00
|
|
|
#include "modules/limboai/limbo_utility.h"
|
2022-10-20 16:26:46 +00:00
|
|
|
|
|
|
|
class BBParam : public Resource {
|
|
|
|
GDCLASS(BBParam, Resource);
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum ValueSource : unsigned int {
|
|
|
|
SAVED_VALUE,
|
|
|
|
BLACKBOARD_VAR
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
ValueSource value_source;
|
|
|
|
Variant saved_value;
|
|
|
|
String variable;
|
|
|
|
|
2022-10-20 20:53:09 +00:00
|
|
|
_FORCE_INLINE_ void _update_name() {
|
|
|
|
set_name((value_source == SAVED_VALUE) ? String(saved_value) : LimboUtility::get_singleton()->decorate_var(variable));
|
|
|
|
}
|
|
|
|
|
2022-10-20 16:26:46 +00:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
virtual Variant::Type get_type() const { return Variant::NIL; }
|
|
|
|
|
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
|
|
|
|
|
|
|
public:
|
2022-10-20 20:53:09 +00:00
|
|
|
void set_value_source(ValueSource p_value);
|
2022-10-20 16:26:46 +00:00
|
|
|
ValueSource get_value_source() const { return value_source; }
|
|
|
|
|
2022-10-20 20:53:09 +00:00
|
|
|
void set_saved_value(Variant p_value);
|
2022-10-25 20:01:00 +00:00
|
|
|
Variant get_saved_value();
|
2022-10-20 16:26:46 +00:00
|
|
|
|
2022-10-20 20:53:09 +00:00
|
|
|
void set_variable(const String &p_value);
|
2022-10-20 16:26:46 +00:00
|
|
|
String get_variable() const { return variable; }
|
|
|
|
|
2022-10-25 21:07:27 +00:00
|
|
|
virtual String to_string();
|
|
|
|
|
2022-10-20 16:26:46 +00:00
|
|
|
virtual Variant get_value(Object *p_agent, const Ref<Blackboard> &p_blackboard, const Variant &p_default = Variant());
|
|
|
|
|
|
|
|
BBParam();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BB_PARAM_H
|