2014-06-16 15:22:26 +02:00
|
|
|
#ifndef POLYGON_PATH_FINDER_H
|
|
|
|
#define POLYGON_PATH_FINDER_H
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
class PolygonPathFinder : public Resource {
|
|
|
|
|
|
|
|
OBJ_TYPE(PolygonPathFinder,Resource);
|
|
|
|
|
|
|
|
struct Point {
|
|
|
|
Vector2 pos;
|
|
|
|
Set<int> connections;
|
|
|
|
float distance;
|
2014-06-28 04:21:45 +02:00
|
|
|
float penalty;
|
2014-06-16 15:22:26 +02:00
|
|
|
int prev;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Edge {
|
|
|
|
|
|
|
|
int points[2];
|
|
|
|
|
|
|
|
_FORCE_INLINE_ bool operator<(const Edge& p_edge) const {
|
|
|
|
|
|
|
|
if (points[0]==p_edge.points[0])
|
|
|
|
return points[1]<p_edge.points[1];
|
|
|
|
else
|
|
|
|
return points[0]<p_edge.points[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
Edge(int a=0, int b=0) {
|
|
|
|
|
|
|
|
if (a>b) {
|
|
|
|
SWAP(a,b);
|
|
|
|
}
|
2014-06-17 16:58:35 +02:00
|
|
|
points[0] = a;
|
|
|
|
points[1] = b;
|
2014-06-16 15:22:26 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Vector2 outside_point;
|
2014-06-17 16:58:35 +02:00
|
|
|
Rect2 bounds;
|
2014-06-16 15:22:26 +02:00
|
|
|
|
|
|
|
Vector<Point> points;
|
|
|
|
Set<Edge> edges;
|
|
|
|
|
2014-06-17 16:58:35 +02:00
|
|
|
bool _is_point_inside(const Vector2& p_point) const;
|
2014-06-16 15:22:26 +02:00
|
|
|
|
|
|
|
void _set_data(const Dictionary& p_data);
|
|
|
|
Dictionary _get_data() const;
|
|
|
|
protected:
|
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
|
|
void setup(const Vector<Vector2>& p_points, const Vector<int>& p_connections);
|
|
|
|
Vector<Vector2> find_path(const Vector2& p_from, const Vector2& p_to);
|
|
|
|
|
2014-06-28 04:21:45 +02:00
|
|
|
void set_point_penalty(int p_point,float p_penalty);
|
|
|
|
float get_point_penalty(int p_point) const;
|
|
|
|
|
2014-06-17 16:58:35 +02:00
|
|
|
bool is_point_inside(const Vector2& p_point) const;
|
|
|
|
Vector2 get_closest_point(const Vector2& p_point) const;
|
2014-06-28 04:21:45 +02:00
|
|
|
Vector<Vector2> get_intersections(const Vector2& p_from, const Vector2& p_to) const;
|
2014-06-17 16:58:35 +02:00
|
|
|
Rect2 get_bounds() const;
|
|
|
|
|
|
|
|
|
2014-06-16 15:22:26 +02:00
|
|
|
PolygonPathFinder();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // POLYGON_PATH_FINDER_H
|