limboai/bt/decorators/bt_run_limit.h

31 lines
555 B
C
Raw Normal View History

2022-08-28 13:24:01 +00:00
/* bt_run_limit.h */
#ifndef BT_RUN_LIMIT_H
#define BT_RUN_LIMIT_H
#include "bt_decorator.h"
2023-07-20 16:35:36 +00:00
#include "core/object/object.h"
2022-08-28 13:24:01 +00:00
class BTRunLimit : public BTDecorator {
GDCLASS(BTRunLimit, BTDecorator);
private:
int run_limit = 1;
int num_runs = 0;
2022-08-28 13:24:01 +00:00
protected:
static void _bind_methods();
virtual String _generate_name() const override;
virtual int _tick(double p_delta) override;
2022-08-28 13:24:01 +00:00
public:
void set_run_limit(int p_value) {
run_limit = p_value;
emit_changed();
2022-08-31 15:05:25 +00:00
}
int get_run_limit() const { return run_limit; }
2022-08-28 13:24:01 +00:00
};
#endif // BT_RUN_LIMIT_H