limboai/bt/tasks/composites/bt_random_sequence.h

31 lines
774 B
C
Raw Normal View History

/**
* bt_random_sequence.h
* =============================================================================
2024-03-21 20:38:57 +00:00
* Copyright 2021-2024 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 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);
TASK_CATEGORY(Composites);
2022-08-29 09:41:42 +00:00
private:
int last_running_idx = 0;
Array indicies;
2022-08-29 09:41:42 +00:00
protected:
virtual void _enter() override;
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