2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_random_wait.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-29 12:06:48 +00:00
|
|
|
|
|
|
|
#ifndef BT_RANDOM_WAIT_H
|
|
|
|
#define BT_RANDOM_WAIT_H
|
|
|
|
|
|
|
|
#include "bt_action.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
#include "core/object/object.h"
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
class BTRandomWait : public BTAction {
|
|
|
|
GDCLASS(BTRandomWait, BTAction);
|
|
|
|
|
|
|
|
private:
|
2023-04-10 08:08:11 +00:00
|
|
|
double min_duration = 1.0;
|
|
|
|
double max_duration = 2.0;
|
2022-08-29 12:06:48 +00:00
|
|
|
|
2023-04-10 08:08:11 +00:00
|
|
|
double duration = 0.0;
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2022-12-15 07:26:52 +00:00
|
|
|
virtual String _generate_name() const override;
|
|
|
|
virtual void _enter() override;
|
2023-04-10 08:08:11 +00:00
|
|
|
virtual int _tick(double p_delta) override;
|
2022-08-29 12:06:48 +00:00
|
|
|
|
|
|
|
public:
|
2023-04-10 08:08:11 +00:00
|
|
|
void set_min_duration(double p_max_duration);
|
|
|
|
double get_min_duration() const { return min_duration; }
|
|
|
|
|
|
|
|
void set_max_duration(double p_max_duration);
|
|
|
|
double get_max_duration() const { return max_duration; }
|
2022-08-29 12:06:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // BT_RANDOM_WAIT_H
|