mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 17:07:20 +01:00
76 lines
2.2 KiB
C++
76 lines
2.2 KiB
C++
#ifndef GSAI_STEERING_AGENT_H
|
|
#define GSAI_STEERING_AGENT_H
|
|
|
|
#include "core/int_types.h"
|
|
#include "core/math/vector3.h"
|
|
|
|
#include "core/object/reference.h"
|
|
|
|
#include "gsai_agent_location.h"
|
|
|
|
class GSAISteeringAgent : public GSAIAgentLocation {
|
|
GDCLASS(GSAISteeringAgent, GSAIAgentLocation);
|
|
|
|
public:
|
|
float get_zero_linear_speed_threshold() const;
|
|
void set_zero_linear_speed_threshold(const float val);
|
|
|
|
float get_linear_speed_max() const;
|
|
void set_linear_speed_max(const float val);
|
|
|
|
float get_linear_acceleration_max() const;
|
|
void set_linear_acceleration_max(const float val);
|
|
|
|
float get_angular_speed_max() const;
|
|
void set_angular_speed_max(const float val);
|
|
|
|
float get_angular_acceleration_max() const;
|
|
void set_angular_acceleration_max(const float val);
|
|
|
|
Vector3 get_linear_velocity();
|
|
void set_linear_velocity(const Vector3 &val);
|
|
|
|
float get_angular_velocity() const;
|
|
void set_angular_velocity(const float val);
|
|
|
|
float get_bounding_radius() const;
|
|
void set_bounding_radius(const float val);
|
|
|
|
bool get_is_tagged() const;
|
|
void set_is_tagged(const bool val);
|
|
|
|
GSAISteeringAgent();
|
|
~GSAISteeringAgent();
|
|
|
|
protected:
|
|
static void _bind_methods();
|
|
|
|
// Adds velocity, speed, and size data to `GSAIAgentLocation`.
|
|
//
|
|
// It is the character's responsibility to keep this information up to date for
|
|
// the steering toolkit to work correctly.
|
|
// @category - Base types
|
|
// The amount of velocity to be considered effectively not moving.
|
|
float zero_linear_speed_threshold;
|
|
// The maximum speed at which the agent can move.
|
|
float linear_speed_max;
|
|
// The maximum amount of acceleration that any behavior can apply to the agent.
|
|
float linear_acceleration_max;
|
|
// The maximum amount of angular speed at which the agent can rotate.
|
|
float angular_speed_max;
|
|
// The maximum amount of angular acceleration that any behavior can apply to an
|
|
// agent.
|
|
float angular_acceleration_max;
|
|
// Current velocity of the agent.
|
|
Vector3 linear_velocity;
|
|
// Current angular velocity of the agent.
|
|
float angular_velocity;
|
|
// The radius of the sphere that approximates the agent's size in space.
|
|
float bounding_radius;
|
|
// Used internally by group behaviors and proximities to mark the agent as already
|
|
// considered.
|
|
bool is_tagged;
|
|
};
|
|
|
|
#endif
|