2023-07-21 09:50:06 +00:00
|
|
|
/**
|
|
|
|
* bt_random_sequence.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-29 09:41:42 +00:00
|
|
|
|
|
|
|
#ifndef BT_RANDOM_SEQUENCE_H
|
|
|
|
#define BT_RANDOM_SEQUENCE_H
|
|
|
|
|
2023-08-15 15:49:13 +00:00
|
|
|
#include "../bt_composite.h"
|
2023-07-20 16:35:36 +00:00
|
|
|
|
2022-08-29 09:41:42 +00:00
|
|
|
class BTRandomSequence : public BTComposite {
|
|
|
|
GDCLASS(BTRandomSequence, BTComposite);
|
2023-08-25 15:32:46 +00:00
|
|
|
TASK_CATEGORY(Composites);
|
2022-08-29 09:41:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int last_running_idx = 0;
|
2022-12-17 10:47:10 +00:00
|
|
|
Array indicies;
|
2022-08-29 09:41:42 +00:00
|
|
|
|
|
|
|
protected:
|
2024-05-28 17:50:57 +00:00
|
|
|
static void _bind_methods() {}
|
|
|
|
|
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-29 09:41:42 +00:00
|
|
|
};
|
2024-01-13 16:10:42 +00:00
|
|
|
|
|
|
|
#endif // BT_RANDOM_SEQUENCE_H
|