2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_probability.h
|
|
|
|
* =============================================================================
|
2024-03-04 20:36:16 +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 20:58:30 +00:00
|
|
|
|
|
|
|
#ifndef BT_PROBABILITY_H
|
|
|
|
#define BT_PROBABILITY_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:58:30 +00:00
|
|
|
class BTProbability : public BTDecorator {
|
|
|
|
GDCLASS(BTProbability, BTDecorator);
|
2023-08-25 15:32:46 +00:00
|
|
|
TASK_CATEGORY(Decorators);
|
2022-08-28 20:58:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
float run_chance = 0.5;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2024-01-06 23:47:46 +00:00
|
|
|
virtual String _generate_name() override;
|
2023-09-19 11:43:26 +00:00
|
|
|
virtual Status _tick(double p_delta) override;
|
2022-08-28 20:58:30 +00:00
|
|
|
|
|
|
|
public:
|
2023-08-15 15:05:30 +00:00
|
|
|
void set_run_chance(float p_value);
|
2022-08-28 20:58:30 +00:00
|
|
|
float get_run_chance() const { return run_chance; }
|
|
|
|
};
|
|
|
|
|
2024-01-13 16:10:42 +00:00
|
|
|
#endif // BT_PROBABILITY_H
|