Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debug_hooks.hpp « carve « include « carve « extern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53de8634e0ddb84d7608908ec53651d15325f456 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Begin License:
// Copyright (C) 2006-2014 Tobias Sargeant (tobias.sargeant@gmail.com).
// All rights reserved.
//
// This file is part of the Carve CSG Library (http://carve-csg.com/)
//
// This file may be used under the terms of either the GNU General
// Public License version 2 or 3 (at your option) as published by the
// Free Software Foundation and appearing in the files LICENSE.GPL2
// and LICENSE.GPL3 included in the packaging of this file.
//
// This file is provided "AS IS" with NO WARRANTY OF ANY KIND,
// INCLUDING THE WARRANTIES OF DESIGN, MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE.
// End:


#pragma once

#include <carve/carve.hpp>

#include <carve/vector.hpp>
#include <carve/geom3d.hpp>
#include <carve/csg.hpp>

#include <iomanip>

template<typename MAP>
void map_histogram(std::ostream &out, const MAP &map) {
  std::vector<int> hist;
  for (typename MAP::const_iterator i = map.begin(); i != map.end(); ++i) {
    size_t n = (*i).second.size();
    if (hist.size() <= n) {
      hist.resize(n + 1);
    }
    hist[n]++;
  }
  int total = (int)map.size();
  std::string bar(50, '*');
  for (size_t i = 0; i < hist.size(); i++) {
    if (hist[i] > 0) {
      out << std::setw(5) << i << " : " << std::setw(5) << hist[i] << " " << bar.substr((size_t)(50 - hist[i] * 50 / total)) << std::endl;
    }
  }
}

namespace carve {
  namespace csg {
    class IntersectDebugHooks {
    public:
      virtual void drawIntersections(const VertexIntersections & /* vint */) {
      }

      virtual void drawPoint(const carve::mesh::MeshSet<3>::vertex_t * /* v */,
                             float /* r */,
                             float /* g */,
                             float /* b */,
                             float /* a */,
                             float /* rad */) {
      }
      virtual void drawEdge(const carve::mesh::MeshSet<3>::vertex_t * /* v1 */,
                            const carve::mesh::MeshSet<3>::vertex_t * /* v2 */,
                            float /* rA */, float /* gA */, float /* bA */, float /* aA */,
                            float /* rB */, float /* gB */, float /* bB */, float /* aB */,
                            float /* thickness */ = 1.0) {
      }

      virtual void drawFaceLoopWireframe(const std::vector<carve::mesh::MeshSet<3>::vertex_t *> & /* face_loop */,
                                         const carve::mesh::MeshSet<3>::vertex_t & /* normal */,
                                         float /* r */, float /* g */, float /* b */, float /* a */,
                                         bool /* inset */ = true) {
      }

      virtual void drawFaceLoop(const std::vector<carve::mesh::MeshSet<3>::vertex_t *> & /* face_loop */,
                                const carve::mesh::MeshSet<3>::vertex_t & /* normal */,
                                float /* r */, float /* g */, float /* b */, float /* a */,
                                bool /* offset */ = true,
                                bool /* lit */ = true) {
      }

      virtual void drawFaceLoop2(const std::vector<carve::mesh::MeshSet<3>::vertex_t *> & /* face_loop */,
                                 const carve::mesh::MeshSet<3>::vertex_t & /* normal */,
                                 float /* rF */, float /* gF */, float /* bF */, float /* aF */,
                                 float /* rB */, float /* gB */, float /* bB */, float /* aB */,
                                 bool /* offset */ = true,
                                 bool /* lit */ = true) {
      }

      virtual ~IntersectDebugHooks() {
      }
    };

    IntersectDebugHooks *intersect_installDebugHooks(IntersectDebugHooks *hooks);
    bool intersect_debugEnabled();

  }
}