2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_repeat.h
|
|
|
|
* =============================================================================
|
2024-03-21 20:38:57 +00:00
|
|
|
* Copyright 2021-2024 Serhii Snitsaruk
|
2023-07-21 09:50:06 +00:00
|
|
|
*
|
|
|
|
* 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 12:49:02 +00:00
|
|
|
|
|
|
|
#ifndef BT_REPEAT_H
|
|
|
|
#define BT_REPEAT_H
|
|
|
|
|
2023-08-15 15:49:13 +00:00
|
|
|
#include "../bt_decorator.h"
|
2022-08-28 12:49:02 +00:00
|
|
|
|
|
|
|
class BTRepeat : public BTDecorator {
|
|
|
|
GDCLASS(BTRepeat, BTDecorator);
|
2023-08-25 15:32:46 +00:00
|
|
|
TASK_CATEGORY(Decorators);
|
2022-08-28 12:49:02 +00:00
|
|
|
|
|
|
|
private:
|
2023-08-06 10:45:19 +00:00
|
|
|
bool forever = false;
|
2022-08-28 12:49:02 +00:00
|
|
|
int times = 1;
|
|
|
|
bool abort_on_failure = false;
|
2022-12-17 10:47:10 +00:00
|
|
|
int cur_iteration = 0;
|
2022-08-28 12:49:02 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2023-08-06 10:45:19 +00:00
|
|
|
void _get_property_list(List<PropertyInfo> *p_list) const;
|
|
|
|
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual String _generate_name() override;
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual void _enter() override;
|
2023-09-19 11:43:26 +00:00
|
|
|
virtual Status _tick(double p_delta) override;
|
2022-08-28 12:49:02 +00:00
|
|
|
|
|
|
|
public:
|
2023-08-06 10:45:19 +00:00
|
|
|
void set_forever(bool p_forever);
|
|
|
|
bool get_forever() const { return forever; }
|
|
|
|
|
|
|
|
void set_times(int p_value);
|
2022-08-31 15:05:25 +00:00
|
|
|
int get_times() const { return times; }
|
2023-08-06 10:45:19 +00:00
|
|
|
|
|
|
|
void set_abort_on_failure(bool p_value);
|
2022-08-31 15:05:25 +00:00
|
|
|
bool get_abort_on_failure() const { return abort_on_failure; }
|
2024-01-06 23:47:46 +00:00
|
|
|
|
|
|
|
BTRepeat();
|
2022-08-28 12:49:02 +00:00
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_REPEAT_H
|