limboai/bt/tasks/utility/bt_wait_ticks.h

42 lines
941 B
C
Raw Permalink Normal View History

/**
* bt_wait_ticks.h
* =============================================================================
* Copyright 2021-2024 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-29 12:06:48 +00:00
#ifndef BT_WAIT_TICKS_H
#define BT_WAIT_TICKS_H
2023-08-15 15:49:13 +00:00
#include "../bt_action.h"
2022-08-29 12:06:48 +00:00
class BTWaitTicks : public BTAction {
GDCLASS(BTWaitTicks, BTAction);
2023-08-28 11:22:23 +00:00
TASK_CATEGORY(Utility);
2022-08-29 12:06:48 +00:00
private:
int num_ticks = 1;
2022-12-17 10:26:48 +00:00
int num_passed = 0;
2022-08-29 12:06:48 +00:00
protected:
static void _bind_methods();
virtual String _generate_name() override;
virtual void _enter() override;
virtual Status _tick(double p_delta) override;
2022-08-29 12:06:48 +00:00
public:
void set_num_ticks(int p_value) {
num_ticks = p_value;
emit_changed();
}
int get_num_ticks() const { return num_ticks; }
};
2024-01-13 16:10:42 +00:00
#endif // BT_WAIT_TICKS_H