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
|
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 or later of the License. #
//# #
//# This program 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 General Public License for more details. #
//# #
//# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#include "ccGenericGLDisplay.h"
//CCLib
#include <CCConst.h>
ccViewportParameters::ccViewportParameters()
: pixelSize(1.0f)
, zoom(1.0f)
, defaultPointSize(1)
, defaultLineWidth(1)
, perspectiveView(false)
, objectCenteredView(true)
, zNearCoef(0.005)
, zNear(0)
, zFar(0)
, pivotPoint(0, 0, 0)
, cameraCenter(0, 0, 0)
, fov(30.0f)
, perspectiveAspectRatio(1.0f)
, orthoAspectRatio(1.0f)
{
viewMat.toIdentity();
}
ccViewportParameters::ccViewportParameters(const ccViewportParameters& params)
: pixelSize(params.pixelSize)
, zoom(params.zoom)
, viewMat(params.viewMat)
, defaultPointSize(params.defaultPointSize)
, defaultLineWidth(params.defaultLineWidth)
, perspectiveView(params.perspectiveView)
, objectCenteredView(params.objectCenteredView)
, zNearCoef(params.zNearCoef)
, zNear(params.zNear)
, zFar(params.zFar)
, pivotPoint(params.pivotPoint)
, cameraCenter(params.cameraCenter)
, fov(params.fov)
, perspectiveAspectRatio(params.perspectiveAspectRatio)
, orthoAspectRatio(params.orthoAspectRatio)
{
}
bool ccViewportParameters::toFile(QFile& out) const
{
//base modelview matrix (dataVersion>=20)
if (!viewMat.toFile(out))
return false;
//other parameters (dataVersion>=20)
QDataStream outStream(&out);
outStream << pixelSize;
outStream << zoom;
outStream << defaultPointSize;
outStream << defaultLineWidth;
outStream << perspectiveView;
outStream << objectCenteredView;
outStream << pivotPoint.x;
outStream << pivotPoint.y;
outStream << pivotPoint.z;
outStream << cameraCenter.x;
outStream << cameraCenter.y;
outStream << cameraCenter.z;
outStream << fov;
outStream << perspectiveAspectRatio;
//ortho mode aspect ratio (dataVersion>=30)
outStream << orthoAspectRatio;
return true;
}
bool ccViewportParameters::fromFile(QFile& in, short dataVersion, int flags)
{
//base modelview matrix (dataVersion>=20)
if (dataVersion >= 36) //we now save the camera matrix in double precision
{
if (!viewMat.fromFile(in, dataVersion, flags))
return false;
}
else
{
//camera matrix was saved in standard (float) precision
ccGLMatrix _viewMat;
if (!_viewMat.fromFile(in, dataVersion, flags))
return false;
viewMat = ccGLMatrixd(_viewMat.data());
}
//other parameters (dataVersion>=20)
QDataStream inStream(&in);
inStream >> pixelSize;
//before version 25, we were saving the inverse of 'pixelSize' ('globalZoom')
if (dataVersion < 25)
pixelSize = (pixelSize> ZERO_TOLERANCE ? 1.0f/pixelSize : 1.0f);
inStream >> zoom;
inStream >> defaultPointSize;
inStream >> defaultLineWidth;
inStream >> perspectiveView;
inStream >> objectCenteredView;
if (dataVersion >= 36) //we now save the camera center and pivot point in double precision
{
inStream >> pivotPoint.x;
inStream >> pivotPoint.y;
inStream >> pivotPoint.z;
inStream >> cameraCenter.x;
inStream >> cameraCenter.y;
inStream >> cameraCenter.z;
}
else
{
CCVector3 _pivotPoint;
ccSerializationHelper::CoordsFromDataStream(inStream,flags,_pivotPoint.u,3);
pivotPoint = CCVector3d::fromArray(_pivotPoint.u);
if (dataVersion >= 25) //after version 25 the camera center is saved as a separate point!
{
CCVector3 _cameraCenter;
ccSerializationHelper::CoordsFromDataStream(inStream,flags,_cameraCenter.u,3);
cameraCenter = CCVector3d::fromArray(_cameraCenter.u);
}
else
{
//FIXME: doesn't work in object-centered perspective!
cameraCenter = pivotPoint;
}
}
inStream >> fov;
inStream >> perspectiveAspectRatio;
if (dataVersion < 25) //screenPan has been replaced by cameraCenter(x,y) in object centered mode!
{
float screenPan[2];
inStream >> screenPan[0];
inStream >> screenPan[1];
if (objectCenteredView)
{
cameraCenter.x += static_cast<double>(screenPan[0]);
cameraCenter.y += static_cast<double>(screenPan[1]);
}
}
//ortho mode aspect ratio (dataVersion>=30)
if (dataVersion >= 30)
{
inStream >> orthoAspectRatio;
}
else
{
orthoAspectRatio = 1.0f;
}
return true;
}
|