limboai/bt/composites/bt_random_selector.h

30 lines
774 B
C
Raw Normal View History

/**
* bt_random_selector.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 09:41:42 +00:00
#ifndef BT_RANDOM_SELECTOR_H
#define BT_RANDOM_SELECTOR_H
#include "bt_composite.h"
2023-07-20 16:35:36 +00:00
#include "core/templates/vector.h"
2022-08-29 09:41:42 +00:00
class BTRandomSelector : public BTComposite {
GDCLASS(BTRandomSelector, BTComposite);
private:
int last_running_idx = 0;
Array indicies;
2022-08-29 09:41:42 +00:00
protected:
virtual void _enter() override;
virtual int _tick(double p_delta) override;
2022-08-29 09:41:42 +00:00
};
#endif // BT_RANDOM_SELECTOR_H