pandemonium_engine/modules/steering_ai/behaviors/gsai_blend.h

42 lines
914 B
C++
Raw Normal View History

#ifndef GSAI_BLEND_H
#define GSAI_BLEND_H
2023-01-14 02:31:42 +01:00
#include "core/object/reference.h"
#include "../gsai_steering_behavior.h"
class GSAISteeringBehavior;
class GSAITargetAcceleration;
class GSAIBlend : public GSAISteeringBehavior {
GDCLASS(GSAIBlend, GSAISteeringBehavior);
public:
2023-01-14 02:31:42 +01:00
void add_behavior(const Ref<GSAISteeringBehavior> &behavior, const float weight);
Ref<GSAISteeringBehavior> get_behavior(const int index);
float get_behavior_weight(const int index);
void remove_behavior(const int index);
int get_behaviour_count();
2023-01-14 02:31:42 +01:00
Ref<GSAITargetAcceleration> get_accel();
void _calculate_steering(Ref<GSAITargetAcceleration> blended_accel);
GSAIBlend();
~GSAIBlend();
2023-01-14 02:31:42 +01:00
protected:
struct GSAIBlendBehaviorEntry {
Ref<GSAISteeringBehavior> behavior;
float weight;
};
protected:
static void _bind_methods();
2023-01-14 02:31:42 +01:00
Vector<GSAIBlendBehaviorEntry> _behaviors;
Ref<GSAITargetAcceleration> _accel;
};
#endif