| [1474] | 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| [10755] | 5 | |
|---|
| [1474] | 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | |
|---|
| 18 | |
|---|
| 19 | |
|---|
| 20 | |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | |
|---|
| [10755] | 24 | |
|---|
| [1474] | 25 | |
|---|
| 26 | |
|---|
| 27 | |
|---|
| 28 | |
|---|
| 29 | |
|---|
| 30 | |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | |
|---|
| 37 | |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | |
|---|
| 57 | #ifndef TRISTRIP_TRI_STRIPPER_H |
|---|
| 58 | #define TRISTRIP_TRI_STRIPPER_H |
|---|
| 59 | |
|---|
| [1488] | 60 | |
|---|
| 61 | #include <osg/Export> |
|---|
| 62 | |
|---|
| [1474] | 63 | #include <algorithm> |
|---|
| 64 | #include <deque> |
|---|
| 65 | #include <list> |
|---|
| 66 | #include <map> |
|---|
| [1475] | 67 | #include <string> |
|---|
| [1474] | 68 | |
|---|
| 69 | #include <vector> |
|---|
| 70 | |
|---|
| 71 | |
|---|
| 72 | namespace triangle_stripper { |
|---|
| 73 | |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | #include "TriStrip_graph_array.h" |
|---|
| 77 | #include "TriStrip_heap_array.h" |
|---|
| 78 | |
|---|
| [1562] | 79 | typedef unsigned int indice; |
|---|
| [1474] | 80 | |
|---|
| [1562] | 81 | class triangle |
|---|
| 82 | { |
|---|
| 83 | public: |
|---|
| 84 | triangle(); |
|---|
| [9637] | 85 | |
|---|
| 86 | triangle(const triangle& tri): |
|---|
| 87 | m_A(tri.m_A), |
|---|
| 88 | m_B(tri.m_B), |
|---|
| 89 | m_C(tri.m_C), |
|---|
| 90 | m_StripID(tri.m_StripID) |
|---|
| 91 | { |
|---|
| 92 | } |
|---|
| 93 | |
|---|
| [1562] | 94 | triangle(const indice A, const indice B, const indice C); |
|---|
| [9637] | 95 | |
|---|
| 96 | triangle& operator = (const triangle& tri) |
|---|
| 97 | { |
|---|
| 98 | if (&tri==this) return *this; |
|---|
| 99 | |
|---|
| 100 | m_A = tri.m_A; |
|---|
| 101 | m_B = tri.m_B; |
|---|
| 102 | m_C = tri.m_C; |
|---|
| 103 | m_StripID = tri.m_StripID; |
|---|
| 104 | |
|---|
| 105 | return *this; |
|---|
| 106 | } |
|---|
| [1474] | 107 | |
|---|
| [1562] | 108 | void SetStripID(const size_t StripID); |
|---|
| 109 | |
|---|
| 110 | indice A() const; |
|---|
| 111 | indice B() const; |
|---|
| 112 | indice C() const; |
|---|
| 113 | size_t StripID() const; |
|---|
| 114 | |
|---|
| 115 | private: |
|---|
| 116 | indice m_A; |
|---|
| 117 | indice m_B; |
|---|
| 118 | indice m_C; |
|---|
| 119 | size_t m_StripID; |
|---|
| 120 | }; |
|---|
| 121 | |
|---|
| 122 | |
|---|
| 123 | class triangle_edge |
|---|
| 124 | { |
|---|
| 125 | public: |
|---|
| 126 | triangle_edge(const indice A, const indice B, const size_t TriPos); |
|---|
| 127 | |
|---|
| 128 | indice A() const; |
|---|
| 129 | indice B() const; |
|---|
| 130 | size_t TriPos() const; |
|---|
| 131 | |
|---|
| 132 | private: |
|---|
| 133 | indice m_A; |
|---|
| 134 | indice m_B; |
|---|
| 135 | size_t m_TriPos; |
|---|
| 136 | }; |
|---|
| 137 | |
|---|
| 138 | |
|---|
| 139 | class triangle_degree |
|---|
| 140 | { |
|---|
| 141 | public: |
|---|
| 142 | triangle_degree(); |
|---|
| 143 | triangle_degree(const size_t TriPos, const size_t Degree); |
|---|
| 144 | |
|---|
| 145 | size_t Degree() const; |
|---|
| 146 | size_t TriPos() const; |
|---|
| 147 | |
|---|
| 148 | void SetDegree(const size_t Degree); |
|---|
| 149 | |
|---|
| 150 | private: |
|---|
| 151 | size_t m_TriPos; |
|---|
| 152 | size_t m_Degree; |
|---|
| 153 | }; |
|---|
| 154 | |
|---|
| 155 | |
|---|
| 156 | class triangle_strip |
|---|
| 157 | { |
|---|
| 158 | public: |
|---|
| 159 | enum start_order { ABC = 0, BCA = 1, CAB = 2 }; |
|---|
| 160 | |
|---|
| 161 | triangle_strip(); |
|---|
| 162 | triangle_strip(size_t StartTriPos, start_order StartOrder, size_t Size); |
|---|
| 163 | |
|---|
| 164 | size_t StartTriPos() const; |
|---|
| 165 | start_order StartOrder() const; |
|---|
| 166 | size_t Size() const; |
|---|
| 167 | |
|---|
| 168 | private: |
|---|
| 169 | size_t m_StartTriPos; |
|---|
| 170 | start_order m_StartOrder; |
|---|
| 171 | size_t m_Size; |
|---|
| 172 | }; |
|---|
| 173 | |
|---|
| 174 | |
|---|
| 175 | struct _cmp_tri_interface_lt |
|---|
| 176 | { |
|---|
| 177 | bool operator() (const triangle_edge & a, const triangle_edge & b) const; |
|---|
| 178 | }; |
|---|
| 179 | |
|---|
| 180 | |
|---|
| 181 | struct _cmp_tri_degree_gt |
|---|
| 182 | { |
|---|
| 183 | bool operator () (const triangle_degree & a, const triangle_degree & b) const; |
|---|
| 184 | }; |
|---|
| 185 | |
|---|
| [1474] | 186 | class tri_stripper |
|---|
| 187 | { |
|---|
| 188 | public: |
|---|
| 189 | |
|---|
| 190 | |
|---|
| 191 | typedef std::vector<indice> indices; |
|---|
| 192 | |
|---|
| 193 | enum primitive_type { |
|---|
| 194 | PT_Triangles = 0x0004, |
|---|
| 195 | PT_Triangle_Strip = 0x0005 |
|---|
| 196 | }; |
|---|
| 197 | |
|---|
| 198 | struct primitives |
|---|
| 199 | { |
|---|
| 200 | indices m_Indices; |
|---|
| 201 | primitive_type m_Type; |
|---|
| 202 | }; |
|---|
| 203 | |
|---|
| 204 | typedef std::vector<primitives> primitives_vector; |
|---|
| 205 | |
|---|
| 206 | |
|---|
| [1670] | 207 | inline tri_stripper(const indices & TriIndices); |
|---|
| [1474] | 208 | |
|---|
| 209 | |
|---|
| [1670] | 210 | inline void SetCacheSize(const size_t CacheSize = 16); |
|---|
| 211 | inline void SetMinStripSize(const size_t MinStripSize = 2); |
|---|
| [1474] | 212 | |
|---|
| 213 | |
|---|
| [10755] | 214 | bool Strip(primitives_vector * out_pPrimitivesVector); |
|---|
| [1474] | 215 | |
|---|
| 216 | private: |
|---|
| 217 | |
|---|
| 218 | friend struct _cmp_tri_interface_lt; |
|---|
| 219 | |
|---|
| [9459] | 220 | tri_stripper& operator = (const tri_stripper&) { return *this; } |
|---|
| [1474] | 221 | |
|---|
| 222 | typedef common_structures::graph_array<triangle, char> triangles_graph; |
|---|
| 223 | typedef common_structures::heap_array<triangle_degree, _cmp_tri_degree_gt> triangles_heap; |
|---|
| 224 | typedef std::vector<triangle_edge> triangle_edges; |
|---|
| 225 | typedef std::vector<size_t> triangle_indices; |
|---|
| 226 | typedef std::deque<indice> indices_cache; |
|---|
| 227 | |
|---|
| 228 | |
|---|
| 229 | void InitCache(); |
|---|
| 230 | void InitTriGraph(); |
|---|
| 231 | void InitTriHeap(); |
|---|
| [10755] | 232 | bool Stripify(); |
|---|
| [1474] | 233 | void AddLeftTriangles(); |
|---|
| 234 | |
|---|
| 235 | void LinkNeighboursTri(const triangle_edges & TriInterface, const triangle_edge Edge); |
|---|
| 236 | void MarkTriAsTaken(const size_t i); |
|---|
| 237 | |
|---|
| 238 | triangle_edge GetLatestEdge(const triangle & Triangle, const triangle_strip::start_order Order) const; |
|---|
| 239 | |
|---|
| 240 | triangle_strip FindBestStrip(); |
|---|
| 241 | triangle_strip ExtendTriToStrip(const size_t StartTriPos, const triangle_strip::start_order StartOrder); |
|---|
| [10755] | 242 | bool BuildStrip(const triangle_strip TriStrip); |
|---|
| [1474] | 243 | void AddIndice(const indice i); |
|---|
| 244 | void AddIndiceToCache(const indice i, bool CacheHitCount = false); |
|---|
| 245 | void AddTriToCache(const triangle & Tri, const triangle_strip::start_order Order); |
|---|
| 246 | void AddTriToIndices(const triangle & Tri, const triangle_strip::start_order Order); |
|---|
| 247 | |
|---|
| 248 | const indices & m_TriIndices; |
|---|
| 249 | |
|---|
| 250 | size_t m_MinStripSize; |
|---|
| 251 | size_t m_CacheSize; |
|---|
| 252 | |
|---|
| 253 | primitives_vector m_PrimitivesVector; |
|---|
| 254 | triangles_graph m_Triangles; |
|---|
| 255 | triangles_heap m_TriHeap; |
|---|
| 256 | triangle_indices m_NextCandidates; |
|---|
| 257 | indices_cache m_IndicesCache; |
|---|
| 258 | size_t m_StripID; |
|---|
| 259 | size_t m_CacheHits; |
|---|
| 260 | }; |
|---|
| 261 | |
|---|
| 262 | |
|---|
| 263 | |
|---|
| 264 | |
|---|
| 265 | |
|---|
| 266 | |
|---|
| 267 | |
|---|
| 268 | |
|---|
| 269 | inline tri_stripper::tri_stripper(const indices & TriIndices) : m_TriIndices(TriIndices) { |
|---|
| 270 | SetCacheSize(); |
|---|
| 271 | SetMinStripSize(); |
|---|
| 272 | } |
|---|
| 273 | |
|---|
| 274 | |
|---|
| 275 | inline void tri_stripper::SetCacheSize(const size_t CacheSize) { |
|---|
| 276 | m_CacheSize = CacheSize; |
|---|
| 277 | } |
|---|
| 278 | |
|---|
| 279 | |
|---|
| 280 | inline void tri_stripper::SetMinStripSize(const size_t MinStripSize) { |
|---|
| 281 | m_MinStripSize = MinStripSize; |
|---|
| 282 | } |
|---|
| 283 | |
|---|
| 284 | |
|---|
| [1562] | 285 | inline triangle::triangle() { } |
|---|
| [1474] | 286 | |
|---|
| 287 | |
|---|
| [1562] | 288 | inline triangle::triangle(const indice A, const indice B, const indice C) : m_A(A), m_B(B), m_C(C), m_StripID(0) { } |
|---|
| [1474] | 289 | |
|---|
| 290 | |
|---|
| [1562] | 291 | inline void triangle::SetStripID(const size_t StripID) { |
|---|
| [1474] | 292 | m_StripID = StripID; |
|---|
| 293 | } |
|---|
| 294 | |
|---|
| 295 | |
|---|
| [1562] | 296 | inline indice triangle::A() const { |
|---|
| [1474] | 297 | return m_A; |
|---|
| 298 | } |
|---|
| 299 | |
|---|
| 300 | |
|---|
| [1562] | 301 | inline indice triangle::B() const { |
|---|
| [1474] | 302 | return m_B; |
|---|
| 303 | } |
|---|
| 304 | |
|---|
| 305 | |
|---|
| [1562] | 306 | inline indice triangle::C() const { |
|---|
| [1474] | 307 | return m_C; |
|---|
| 308 | } |
|---|
| 309 | |
|---|
| 310 | |
|---|
| [1562] | 311 | inline size_t triangle::StripID() const { |
|---|
| [1474] | 312 | return m_StripID; |
|---|
| 313 | } |
|---|
| 314 | |
|---|
| 315 | |
|---|
| [1562] | 316 | inline triangle_edge::triangle_edge(const indice A, const indice B, const size_t TriPos) : m_A(A), m_B(B), m_TriPos(TriPos) { } |
|---|
| [1474] | 317 | |
|---|
| 318 | |
|---|
| [1562] | 319 | inline indice triangle_edge::A() const { |
|---|
| [1474] | 320 | return m_A; |
|---|
| 321 | } |
|---|
| 322 | |
|---|
| 323 | |
|---|
| [1562] | 324 | inline indice triangle_edge::B() const { |
|---|
| [1474] | 325 | return m_B; |
|---|
| 326 | } |
|---|
| 327 | |
|---|
| 328 | |
|---|
| [1562] | 329 | inline size_t triangle_edge::TriPos() const { |
|---|
| [1474] | 330 | return m_TriPos; |
|---|
| 331 | } |
|---|
| 332 | |
|---|
| 333 | |
|---|
| [1562] | 334 | inline triangle_degree::triangle_degree() { } |
|---|
| [1474] | 335 | |
|---|
| 336 | |
|---|
| [1562] | 337 | inline triangle_degree::triangle_degree(const size_t TriPos, const size_t Degree) : m_TriPos(TriPos), m_Degree(Degree) { } |
|---|
| [1474] | 338 | |
|---|
| 339 | |
|---|
| [1562] | 340 | inline size_t triangle_degree::Degree() const { |
|---|
| [1474] | 341 | return m_Degree; |
|---|
| 342 | } |
|---|
| 343 | |
|---|
| 344 | |
|---|
| [1562] | 345 | inline size_t triangle_degree::TriPos() const { |
|---|
| [1474] | 346 | return m_TriPos; |
|---|
| 347 | } |
|---|
| 348 | |
|---|
| 349 | |
|---|
| [1562] | 350 | inline void triangle_degree::SetDegree(const size_t Degree) { |
|---|
| [1474] | 351 | m_Degree = Degree; |
|---|
| 352 | } |
|---|
| 353 | |
|---|
| 354 | |
|---|
| [1562] | 355 | inline triangle_strip::triangle_strip() : m_StartTriPos(0), m_StartOrder(ABC), m_Size(0) { } |
|---|
| [1474] | 356 | |
|---|
| 357 | |
|---|
| [1562] | 358 | inline triangle_strip::triangle_strip(const size_t StartTriPos, const start_order StartOrder, const size_t Size) |
|---|
| [1474] | 359 | : m_StartTriPos(StartTriPos), m_StartOrder(StartOrder), m_Size(Size) { } |
|---|
| 360 | |
|---|
| 361 | |
|---|
| [1562] | 362 | inline size_t triangle_strip::StartTriPos() const { |
|---|
| [1474] | 363 | return m_StartTriPos; |
|---|
| 364 | } |
|---|
| 365 | |
|---|
| 366 | |
|---|
| [1562] | 367 | inline triangle_strip::start_order triangle_strip::StartOrder() const { |
|---|
| [1474] | 368 | return m_StartOrder; |
|---|
| 369 | } |
|---|
| 370 | |
|---|
| 371 | |
|---|
| [1562] | 372 | inline size_t triangle_strip::Size() const { |
|---|
| [1474] | 373 | return m_Size; |
|---|
| 374 | } |
|---|
| 375 | |
|---|
| 376 | |
|---|
| [1562] | 377 | inline bool _cmp_tri_interface_lt::operator() (const triangle_edge & a, const triangle_edge & b) const { |
|---|
| 378 | const indice A1 = a.A(); |
|---|
| 379 | const indice B1 = a.B(); |
|---|
| 380 | const indice A2 = b.A(); |
|---|
| 381 | const indice B2 = b.B(); |
|---|
| [1474] | 382 | |
|---|
| 383 | if ((A1 < A2) || ((A1 == A2) && (B1 < B2))) |
|---|
| 384 | return true; |
|---|
| 385 | else |
|---|
| 386 | return false; |
|---|
| 387 | } |
|---|
| 388 | |
|---|
| 389 | |
|---|
| [1562] | 390 | inline bool _cmp_tri_degree_gt::operator () (const triangle_degree & a, const triangle_degree & b) const { |
|---|
| [1474] | 391 | |
|---|
| 392 | return a.Degree() > b.Degree(); |
|---|
| 393 | } |
|---|
| 394 | |
|---|
| 395 | |
|---|
| 396 | |
|---|
| 397 | |
|---|
| [6461] | 398 | } |
|---|
| [1474] | 399 | |
|---|
| 400 | #endif |
|---|