/usr/include/camitk-3.2/libraries/pml/RenderingMode.h is in libcamitk3-dev 3.2.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 | /*****************************************************************************
* $CAMITK_LICENCE_BEGIN$
*
* CamiTK - Computer Assisted Medical Intervention ToolKit
* (c) 2001-2013 UJF-Grenoble 1, CNRS, TIMC-IMAG UMR 5525 (GMCAO)
*
* Visit http://camitk.imag.fr for more information
*
* This file is part of CamiTK.
*
* CamiTK is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License version 3
* only, as published by the Free Software Foundation.
*
* CamiTK 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 version 3 for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* version 3 along with CamiTK. If not, see <http://www.gnu.org/licenses/>.
*
* $CAMITK_LICENCE_END$
****************************************************************************/
#ifndef RENDERING_MODE_H
#define RENDERING_MODE_H
//#include "PhysicalModelIO.h"
#include <string>
/**
* Handle rendering options (surface and wireframe) of an Object3D.
*/
class RenderingMode {
public:
/** This is a duplicate of RenderingMode Mode.... BEURK!!! */
enum Mode {
NONE,
POINTS,
POINTS_AND_SURFACE,
SURFACE,
WIREFRAME_AND_SURFACE,
WIREFRAME_AND_POINTS,
WIREFRAME,
WIREFRAME_AND_SURFACE_AND_POINTS
};
/// default constructor with initialisation
RenderingMode(const Mode mode = SURFACE) {
// set the visibility flags
setMode(mode);
}
/** another constructor provided for conveniance
* @param surface tells if by default the surface is visible
* @param wireframe tells if by default the surface is visible
* @param points tells if by default the surface is visible
*/
RenderingMode(const bool surface, const bool wireframe, const bool points) {
setVisible(SURFACE, surface);
setVisible(WIREFRAME, wireframe);
setVisible(POINTS,points);
}
/** Set a rendering mode visible or not.*/
void setVisible(const Mode mode, const bool value) {
switch (mode) {
case SURFACE:
surfaceVisibility = value;
break;
case WIREFRAME:
wireframeVisibility = value;
break;
case POINTS:
pointsVisibility = value;
break;
case POINTS_AND_SURFACE:
wireframeVisibility = !value;
surfaceVisibility = pointsVisibility = value;
break;
case WIREFRAME_AND_SURFACE_AND_POINTS:
surfaceVisibility = wireframeVisibility = pointsVisibility = value;
break;
case WIREFRAME_AND_SURFACE:
surfaceVisibility = wireframeVisibility = value;
pointsVisibility = !value;
break;
case WIREFRAME_AND_POINTS:
pointsVisibility = wireframeVisibility = value;
surfaceVisibility = !value;
break;
default:
break;
}
}
/** Return if a rendering mode is currently visible or not.*/
bool isVisible(const Mode mode) const {
switch (mode) {
case SURFACE:
return surfaceVisibility;
break;
case WIREFRAME:
return wireframeVisibility;
break;
case POINTS:
return pointsVisibility;
break;
case POINTS_AND_SURFACE:
return (surfaceVisibility && pointsVisibility);
break;
case WIREFRAME_AND_SURFACE:
return (wireframeVisibility && surfaceVisibility);
break;
case WIREFRAME_AND_POINTS:
return (wireframeVisibility && pointsVisibility);
break;
case WIREFRAME_AND_SURFACE_AND_POINTS:
return (wireframeVisibility && surfaceVisibility && pointsVisibility);
break;
default:
return false;
break;
}
}
/** Return true if at least a mode is currently visible, false otherwise.*/
bool isVisible() const {
// true if at least a mode is visible
return (surfaceVisibility || wireframeVisibility || pointsVisibility);
}
/** set a vizualisation mode */
void setMode(const Mode mode) {
switch (mode) {
case NONE:
surfaceVisibility = wireframeVisibility = pointsVisibility = false;
break;
case POINTS:
surfaceVisibility = wireframeVisibility = false;
pointsVisibility = true;
break;
case POINTS_AND_SURFACE:
wireframeVisibility = false;
surfaceVisibility = pointsVisibility = true;
break;
case SURFACE:
surfaceVisibility = true;
wireframeVisibility = pointsVisibility = false;
break;
case WIREFRAME_AND_SURFACE_AND_POINTS:
surfaceVisibility = wireframeVisibility = pointsVisibility = true;
break;
case WIREFRAME_AND_SURFACE:
surfaceVisibility = wireframeVisibility = true;
pointsVisibility = false;
break;
case WIREFRAME_AND_POINTS:
pointsVisibility = wireframeVisibility = true;
surfaceVisibility = false;
break;
case WIREFRAME:
surfaceVisibility = pointsVisibility = false;
wireframeVisibility = true;
break;
}
}
/** get current mode */
RenderingMode::Mode getMode() const {
if (pointsVisibility) {
if (surfaceVisibility) {
if (wireframeVisibility) {
return WIREFRAME_AND_SURFACE_AND_POINTS;
} else {
return POINTS_AND_SURFACE;
}
} else {
if (wireframeVisibility) {
return WIREFRAME_AND_POINTS;
} else {
return POINTS;
}
}
} else {
if (surfaceVisibility) {
if (wireframeVisibility) {
return WIREFRAME_AND_SURFACE;
} else {
return SURFACE;
}
} else {
if (wireframeVisibility) {
return WIREFRAME;
} else {
return NONE;
}
}
}
}
/// get the string equivalent to the enum rendering mode
std::string getModeString() const {
std::string n;
if (pointsVisibility) {
if (surfaceVisibility) {
if (wireframeVisibility) {
n = "WIREFRAME_AND_SURFACE_AND_POINTS";
} else {
n="POINTS_AND_SURFACE";
}
} else {
if (wireframeVisibility) {
n="WIREFRAME_AND_POINTS";
} else {
n="POINTS";
}
}
} else {
if (surfaceVisibility) {
if (wireframeVisibility) {
n="WIREFRAME_AND_SURFACE";
} else {
n="SURFACE";
}
} else {
if (wireframeVisibility) {
n="WIREFRAME";
} else {
n="NONE";
}
}
}
return n;
}
private:
// Visibility flags
/** Flag indicating weither the surface mode is currenly visible or not. */
bool surfaceVisibility;
/** Flag indicating weither the wireframe mode is currenly visible or not. */
bool wireframeVisibility;
/** Flag indicating weither the points mode is currenly visible or not. */
bool pointsVisibility;
};
#endif
|