Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00025
00028
00029 #ifndef THOR_CONCAVESHAPE_HPP
00030 #define THOR_CONCAVESHAPE_HPP
00031
00032 #include <Thor/Math/TriangulationFigures.hpp>
00033 #include <Thor/Detail/Swap.hpp>
00034 #include <Thor/Config.hpp>
00035
00036 #include <SFML/Graphics/Drawable.hpp>
00037 #include <SFML/Graphics/Shape.hpp>
00038
00039 #include <vector>
00040
00041
00042 namespace thor
00043 {
00044
00047
00051 class THOR_API ConcaveShape : public sf::Drawable
00052 {
00053
00054
00055 public:
00058 ConcaveShape();
00059
00063 ConcaveShape(const sf::Shape& shape);
00064
00067 void Swap(ConcaveShape& other);
00068
00073 void AddPoint(float x, float y, const sf::Color& color, const sf::Color& outlineColor = sf::Color(0,0,0));
00074
00079 void AddPoint(sf::Vector2f position, const sf::Color& color, const sf::Color& outlineColor = sf::Color(0,0,0));
00080
00083 void SetOutlineThickness(float outlineThickness);
00084
00087 float GetOutlineThickness() const;
00088
00089
00090
00091
00092 private:
00093 struct Point : Vertex
00094 {
00095 Point(sf::Vector2f position, const sf::Color& fillColor, const sf::Color& outlineColor);
00096
00097 sf::Color fillColor;
00098 sf::Color outlineColor;
00099 };
00100
00101
00102 typedef std::vector<sf::Shape> ShapeContainer;
00103 typedef std::vector<Point> PointContainer;
00104 typedef std::vector< Edge<Point> > EdgeContainer;
00105
00106 struct TriangleGenerator;
00107
00108
00109
00110
00111 private:
00112
00113 virtual void Render(sf::RenderTarget& target, sf::Renderer& renderer) const;
00114
00115
00116 void Decompose() const;
00117
00118
00119 void FormOutline() const;
00120
00121
00122
00123
00124 private:
00125 PointContainer mPoints;
00126 float mOutlineThickness;
00127
00128 mutable EdgeContainer mEdges;
00129 mutable ShapeContainer mTriangleShapes;
00130 mutable ShapeContainer mEdgeShapes;
00131 mutable bool mNeedsTriangleUpdate;
00132 mutable bool mNeedsEdgeUpdate;
00133 };
00134
00137 THOR_GLOBAL_SWAP(ConcaveShape)
00138
00139
00140
00141 }
00142
00143 #endif // THOR_CONCAVESHAPE_HPP