limboai/bt/tasks/decorators/bt_cooldown.h

59 lines
1.5 KiB
C
Raw Normal View History

/**
* bt_cooldown.h
* =============================================================================
* Copyright 2021-2023 Serhii Snitsaruk
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
2022-08-28 20:24:33 +00:00
#ifndef BT_COOLDOWN_H
#define BT_COOLDOWN_H
2023-08-15 15:49:13 +00:00
#include "../bt_decorator.h"
2023-07-20 16:35:36 +00:00
2022-08-28 20:24:33 +00:00
#include "scene/main/scene_tree.h"
class BTCooldown : public BTDecorator {
GDCLASS(BTCooldown, BTDecorator);
TASK_CATEGORY(Decorators);
2022-08-28 20:24:33 +00:00
private:
double duration = 10.0;
2022-08-28 20:24:33 +00:00
bool process_pause = false;
bool start_cooled = false;
bool trigger_on_failure = false;
String cooldown_state_var = "";
Ref<SceneTreeTimer> timer = nullptr;
2022-08-28 20:24:33 +00:00
void _chill();
void _on_timeout();
protected:
static void _bind_methods();
virtual String _generate_name() const override;
virtual void _setup() override;
virtual Status _tick(double p_delta) override;
2022-08-28 20:24:33 +00:00
public:
void set_duration(double p_value);
double get_duration() const { return duration; }
void set_process_pause(bool p_value);
2022-08-28 20:24:33 +00:00
bool get_process_pause() const { return process_pause; }
void set_start_cooled(bool p_value);
2022-08-28 20:24:33 +00:00
bool get_start_cooled() const { return start_cooled; }
void set_trigger_on_failure(bool p_value);
2022-08-28 20:24:33 +00:00
bool get_trigger_on_failure() const { return trigger_on_failure; }
void set_cooldown_state_var(String p_value);
2022-08-28 20:24:33 +00:00
String get_cooldown_state_var() const { return cooldown_state_var; }
};
#endif // BT_COOLDOWN_H