mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-20 10:56:50 +01:00
37 lines
748 B
C++
37 lines
748 B
C++
#ifndef GSAI_PURSUE_H
|
|
#define GSAI_PURSUE_H
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "../gsai_steering_behavior.h"
|
|
|
|
class GSAISteeringAgent;
|
|
class GSAITargetAcceleration;
|
|
|
|
class GSAIPursue : public GSAISteeringBehavior {
|
|
GDCLASS(GSAIPursue, GSAISteeringBehavior);
|
|
|
|
public:
|
|
Ref<GSAISteeringAgent> get_target();
|
|
void set_target(const Ref<GSAISteeringAgent> &val);
|
|
|
|
float get_predict_time_max() const;
|
|
void set_predict_time_max(const float val);
|
|
|
|
void _calculate_steering(Ref<GSAITargetAcceleration> acceleration);
|
|
|
|
float get_modified_acceleration();
|
|
virtual float _get_modified_acceleration();
|
|
|
|
GSAIPursue();
|
|
~GSAIPursue();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
Ref<GSAISteeringAgent> target;
|
|
float predict_time_max;
|
|
};
|
|
|
|
#endif
|