1 | /* -*-c++-*- osgVisual - Copyright (C) 2009-2012 Torben Dannhauer |
---|
2 | * |
---|
3 | * This library is based on OpenSceneGraph, open source and may be redistributed and/or modified under |
---|
4 | * the terms of the OpenSceneGraph Public License (OSGPL) version 0.0 or |
---|
5 | * (at your option) any later version. The full license is in LICENSE file |
---|
6 | * included with this distribution, and on the openscenegraph.org website. |
---|
7 | * |
---|
8 | * osgVisual requires for some proprietary modules a license from the correspondig manufacturer. |
---|
9 | * You have to aquire licenses for all used proprietary modules. |
---|
10 | * |
---|
11 | * This library is distributed in the hope that it will be useful, |
---|
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | * OpenSceneGraph Public License for more details. |
---|
15 | */ |
---|
16 | |
---|
17 | #include "DistortionSet.h" |
---|
18 | #include <osgDB/ObjectWrapper> |
---|
19 | #include <osgDB/InputStream> |
---|
20 | #include <osgDB/OutputStream> |
---|
21 | |
---|
22 | using namespace osgViewer; |
---|
23 | |
---|
24 | DistortionSet::DistortionSet() |
---|
25 | { |
---|
26 | _distortionMeshRows = 1; |
---|
27 | _distortionMeshColumns = 1; |
---|
28 | //GLenum _meshType; |
---|
29 | |
---|
30 | _intensityMap = NULL; |
---|
31 | _texUnitScene = 0; |
---|
32 | _texUnitIntensityMap = 1; |
---|
33 | |
---|
34 | _viewOffset = osg::Matrixd::identity(); |
---|
35 | _projectionOffset = osg::Matrixd::identity(); |
---|
36 | |
---|
37 | _showIntesityMapMapOnly = false; |
---|
38 | } |
---|
39 | |
---|
40 | DistortionSet::~DistortionSet() |
---|
41 | { |
---|
42 | } |
---|
43 | |
---|
44 | |
---|
45 | REGISTER_OBJECT_WRAPPER( osgViewer_DistortionSet, // The unique wrapper name |
---|
46 | new osgViewer::DistortionSet, // The proto |
---|
47 | osgViewer::DistortionSet, // The class typename |
---|
48 | "osg::Object osgViewer::DistortionSet" ) // The inheritance relations |
---|
49 | { |
---|
50 | // Serializers for different members |
---|
51 | ADD_INT_SERIALIZER( DistortionMeshRows, 1 ); //int _distortionMeshRows; |
---|
52 | ADD_INT_SERIALIZER( DistortionMeshColumns, 1 ); //int _distortionMeshColumns; |
---|
53 | |
---|
54 | ADD_GLENUM_SERIALIZER( MeshType, GLenum, GL_QUAD_STRIP ); //osg::PrimitiveSet::Mode _MeshType |
---|
55 | |
---|
56 | ADD_IMAGE_SERIALIZER( IntensityMap, osg::Image, NULL ); //osg::ref_ptr<osg::Image> _intensityMap; |
---|
57 | |
---|
58 | ADD_UINT_SERIALIZER( TexUnitScene, 0 ); //unsigned int _texUnitScene; |
---|
59 | ADD_UINT_SERIALIZER( TexUnitIntensityMap, 1 ); //unsigned int _texUnitIntensityMap; |
---|
60 | |
---|
61 | ADD_MATRIX_SERIALIZER( ViewOffset, osg::Matrix() ); //osg::Matrix _viewOffset; |
---|
62 | ADD_MATRIX_SERIALIZER( ProjectionOffset, osg::Matrix() ); //osg::Matrix _projectionOffset; |
---|
63 | |
---|
64 | ADD_BOOL_SERIALIZER( ShowIntensityMapOnly, false ); //bool _showIntesityMapMapOnly |
---|
65 | } |
---|