File: export_gfx_obj.cc

package info (click to toggle)
openstructure 2.11.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 206,240 kB
  • sloc: cpp: 188,571; python: 36,686; ansic: 34,298; fortran: 3,275; sh: 312; xml: 146; makefile: 29
file content (189 lines) | stat: -rw-r--r-- 7,433 bytes parent folder | download | duplicates (4)
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
//------------------------------------------------------------------------------
// This file is part of the OpenStructure project <www.openstructure.org>
//
// Copyright (C) 2008-2020 by the OpenStructure authors
//
// This library is free software; you can redistribute it and/or modify it under
// the terms of the GNU Lesser General Public License as published by the Free
// Software Foundation; either version 3.0 of the License, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
// details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this library; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
//------------------------------------------------------------------------------
#include <boost/python.hpp>
using namespace boost::python;

#include <ost/gfx/gfx_object.hh>
using namespace ost;
using namespace ost::gfx;

#include "color_by_def.hh"

  // convenience for python
  void set_mat_amb2(GfxObjBase* b, float c) {b->SetMatAmb(Color(c,c,c,1.0));}
  void set_mat_diff2(GfxObjBase* b, float c) {b->SetMatDiff(Color(c,c,c,1.0));}
  void set_mat_spec2(GfxObjBase* b, float c) {b->SetMatSpec(Color(c,c,c,1.0));}
  void set_mat_emm2(GfxObjBase* b, float c) {b->SetMatEmm(Color(c,c,c,1.0));}
  void set_mat1(GfxObjBase* b, float a, float d, float s, float p)
  {
    set_mat_amb2(b,a);
    set_mat_diff2(b,d);
    set_mat_spec2(b,s);
    b->SetMatShin(p);
    set_mat_emm2(b,0.0);
  }
  void set_mat2(GfxObjBase* b, Color a, Color d, Color s, float p)
  {
    b->SetMatAmb(a);
    b->SetMatDiff(d);
    b->SetMatSpec(s);
    b->SetMatShin(p);
    set_mat_emm2(b,0.0);
  }

  void set_outline(GfxObjBase* b, bool f)
  {
    LOG_INFO("Outline(bool) is deprecated, use SetOutline(bool) instead");
    b->SetOutline(f);
  }
  void set_aalines(GfxObjBase* b, bool f)
  {
    LOG_INFO("AALines(bool) is deprecated, use SetAALines(bool) instead");
    b->SetAALines(f);
  }

  class GfxObjWrap: public GfxObj, public wrapper<GfxObj>
  {
  public:
    GfxObjWrap(const std::string& name):
      GfxObj(name)
    {}

    virtual geom::AlignedCuboid GetBoundingBox(bool return_global=true) const
    {
      if(override f = this->get_override("GetBoundingBox")) {
        return f(return_global);
      } else {
        return GfxObj::GetBoundingBox(return_global);
      }
    }

    geom::AlignedCuboid default_GetBoundingBox(bool return_global) const {
      return GfxObj::GetBoundingBox(return_global);
    }

    virtual void CustomRenderGL(RenderPass pass) {
      if(override f = this->get_override("_CustomRenderGL")) {
        f(pass);
      } else {
        GfxObj::CustomRenderGL(pass);
      }
    }

    void default_CustomRenderGL(RenderPass pass) {
        GfxObj::CustomRenderGL(pass);
    }

    virtual void CustomPreRenderGL(bool rebuild) {
      if(override f = this->get_override("_CustomPreRenderGL")) {
        f(rebuild);
      } else {
        GfxObj::CustomPreRenderGL(rebuild);
      }
    }

    void default_CustomPreRenderGL(bool rebuild) {
        GfxObj::CustomPreRenderGL(rebuild);
    }

    virtual void InitGL() {
      if(override f = this->get_override("_InitGL")) {
        f();
      } else {
        GfxObj::InitGL();
      }
    }

    void default_InitGL() {
        GfxObj::InitGL();
    }
  };

void export_GfxObj()
{
  class_<GfxObjBase, boost::shared_ptr<GfxObjBase>, bases<GfxNode>, boost::noncopyable>("GfxObjBase",no_init)
    .def("SetMatAmb",&GfxObjBase::SetMatAmb)
    .def("SetMatAmb",set_mat_amb2)
    .def("SetMatDiff",&GfxObjBase::SetMatDiff)
    .def("SetMatDiff",set_mat_diff2)
    .def("SetMatSpec",&GfxObjBase::SetMatSpec)
    .def("SetMatSpec",set_mat_spec2)
    .def("SetMatEmm",&GfxObjBase::SetMatEmm)
    .def("SetMatEmm",set_mat_emm2)
    .def("SetMatShin",&GfxObjBase::SetMatShin)
    .def("SetMat",set_mat1)
    .def("SetMat",set_mat2)
    .def("ContextSwitch", &GfxObjBase::ContextSwitch)
    .def("SetRenderMode", &GfxObjBase::SetRenderMode)
    .def("GetRenderMode", &GfxObjBase::GetRenderMode)
    .def("GetCenter",&GfxObjBase::GetCenter) 
    .add_property("center", &GfxObjBase::GetCenter)
    .def("SetLineWidth", &GfxObjBase::SetLineWidth)
    .def("SetPolyMode",&GfxObjBase::SetPolyMode)
    .def("AALines",set_aalines) /* deprecated */
    .def("SetAALines",&GfxObjBase::SetAALines)
    .def("SetLineHalo",&GfxObjBase::SetLineHalo)
    .def("Outline",set_outline) /* deprecated */
    .def("SetOutline",&GfxObjBase::SetOutline)
    .def("GetOutline",&GfxObjBase::GetOutline)
    .add_property("outline",&GfxObjBase::GetOutline,&GfxObjBase::SetOutline)
    .def("SetOutlineMode",&GfxObjBase::SetOutlineMode)
    .add_property("outline_mode",&GfxObjBase::GetOutlineMode,&GfxObjBase::SetOutlineMode)
    .def("SetOutlineWidth",&GfxObjBase::SetOutlineWidth)
    .add_property("outline_width",&GfxObjBase::GetOutlineWidth,&GfxObjBase::SetOutlineWidth)
    .def("SetOutlineExpandFactor",&GfxObjBase::SetOutlineExpandFactor)
    .add_property("outline_expand_factor",&GfxObjBase::GetOutlineExpandFactor,&GfxObjBase::SetOutlineExpandFactor)
    .def("SetOutlineExpandColor",&GfxObjBase::SetOutlineExpandColor)
    .add_property("outline_expand_color",&GfxObjBase::GetOutlineExpandColor,&GfxObjBase::SetOutlineExpandColor)
    .add_property("outline_color",&GfxObjBase::GetOutlineExpandColor,&GfxObjBase::SetOutlineExpandColor)
    .def("SetOpacity",&GfxObjBase::SetOpacity)
    .def("GetOpacity",&GfxObjBase::GetOpacity)
    .add_property("opacity",&GfxObjBase::GetOpacity,&GfxObjBase::SetOpacity)
    .add_property("solid",&GfxObjBase::GetSolid,&GfxObjBase::SetSolid)
    .add_property("solid_color",&GfxObjBase::GetSolidColor,&GfxObjBase::SetSolidColor)
    .add_property("clip",&GfxObjBase::GetClip,&GfxObjBase::SetClip)
    .add_property("clip_plane",&GfxObjBase::GetClipPlane,&GfxObjBase::SetClipPlane)
    .add_property("clip_offset",&GfxObjBase::GetClipOffset,&GfxObjBase::SetClipOffset)
    COLOR_BY_DEF()
   ;

  enum_<RenderPass>("RenderPass")
    .value("STANDARD_RENDER_PASS",STANDARD_RENDER_PASS)
    .value("TRANSPARENT_RENDER_PASS",TRANSPARENT_RENDER_PASS)
    ;        

  class_<GfxObjWrap, boost::shared_ptr<GfxObj>, bases<GfxObjBase>, boost::noncopyable>("GfxObj",init<const std::string&>())
    .def("GetTF", &GfxObj::GetTF, return_value_policy<copy_const_reference>())
    .def("SetTF", &GfxObj::SetTF)
    .def("FlagRebuild",&GfxObj::FlagRebuild)
    .def("FlagRefresh",&GfxObj::FlagRefresh)
    .def("SetNormalSmoothFactor",&GfxObj::SetNormalSmoothFactor)
    .def("GetNormalSmoothFactor",&GfxObj::GetNormalSmoothFactor)
    .def("SmoothVertices",&GfxObj::SmoothVertices)
    .def("Debug",&GfxObj::Debug)
    .def("GetAALines",&GfxObj::GetAALines)
    .def("GetLineWidth",&GfxObj::GetLineWidth)
    .def("GetLineHalo",&GfxObj::GetLineHalo)
    .def("GetBoundingBox",&GfxObj::GetBoundingBox,&GfxObjWrap::default_GetBoundingBox)
    .def("_CustomRenderGL",&GfxObj::CustomRenderGL, &GfxObjWrap::default_CustomRenderGL)
    .def("_CustomPreRenderGL",&GfxObj::CustomPreRenderGL, &GfxObjWrap::default_CustomPreRenderGL)
    .def("_InitGL",&GfxObj::InitGL, &GfxObjWrap::default_InitGL)
    ;    

}