45 #ifndef OPENMESH_IO_OPTIONS_HH
46 #define OPENMESH_IO_OPTIONS_HH
53 #include <OpenMesh/Core/System/config.h>
93 typedef int enum_type;
94 typedef enum_type value_type;
136 Options(
const value_type _flgs) : flags_( _flgs)
161 { flags_ = _rhs.flags_;
return *
this; }
164 { flags_ = _rhs;
return *
this; }
173 { flags_ &= ~_rhs;
return *
this; }
175 Options& unset(
const value_type _rhs)
176 {
return (*
this -= _rhs); }
186 { flags_ |= _rhs;
return *
this; }
188 Options& set(
const value_type _rhs)
189 {
return (*
this += _rhs); }
197 bool check(
const value_type _rhs)
const
199 return (flags_ & _rhs)==_rhs;
202 bool is_binary()
const {
return check(
Binary); }
203 bool vertex_has_normal()
const {
return check(
VertexNormal); }
204 bool vertex_has_color()
const {
return check(
VertexColor); }
205 bool vertex_has_texcoord()
const {
return check(
VertexTexCoord); }
206 bool vertex_has_status()
const {
return check(
Status); }
207 bool edge_has_color()
const {
return check(
EdgeColor); }
208 bool edge_has_status()
const {
return check(
Status); }
209 bool halfedge_has_status()
const {
return check(
Status); }
210 bool face_has_normal()
const {
return check(
FaceNormal); }
211 bool face_has_color()
const {
return check(
FaceColor); }
212 bool face_has_texcoord()
const {
return check(
FaceTexCoord); }
213 bool face_has_status()
const {
return check(
Status); }
214 bool color_has_alpha()
const {
return check(
ColorAlpha); }
215 bool color_is_float()
const {
return check(
ColorFloat); }
216 bool use_st_coordinates()
const {
return check(
TexCoordST); }
221 {
return flags_ == _rhs; }
226 {
return flags_ != _rhs; }
230 operator value_type ()
const {
return flags_; }
234 bool operator && (
const value_type _rhs)
const;
Contains all the mesh ingredients like the polygonal mesh, the triangle mesh, different mesh kernels ...
Definition: MeshItems.hh:59
Set options for reader/writer modules.
Definition: Options.hh:91
Options(const value_type _flgs)
Initializing constructor setting multiple options.
Definition: Options.hh:136
bool operator!=(const value_type _rhs) const
Returns true if _rhs does not have the same options enabled.
Definition: Options.hh:225
void cleanup(void)
Restore state after default constructor.
Definition: Options.hh:144
bool is_empty(void) const
Returns true if all bits are zero.
Definition: Options.hh:152
bool operator==(const value_type _rhs) const
Returns true if _rhs has the same options enabled.
Definition: Options.hh:220
void clear(void)
Clear all bits.
Definition: Options.hh:148
Options()
Default constructor.
Definition: Options.hh:121
Flag
Definitions of Options for reading and writing.
Definition: Options.hh:98
@ ColorFloat
Has (r) / store (w) float values for colors (currently only implemented for PLY and OFF files)
Definition: Options.hh:112
@ FaceNormal
Has (r) / store (w) face normals.
Definition: Options.hh:108
@ TexCoordST
Write texture coordinates as ST instead of UV.
Definition: Options.hh:115
@ Swap
Swap byte order in binary mode.
Definition: Options.hh:103
@ FaceColor
Has (r) / store (w) face colors.
Definition: Options.hh:109
@ FaceTexCoord
Has (r) / store (w) face texture coordinates.
Definition: Options.hh:110
@ MSB
Assume big endian byte ordering.
Definition: Options.hh:101
@ Binary
Set binary mode for r/w.
Definition: Options.hh:100
@ Default
No options.
Definition: Options.hh:99
@ Status
Has (r) / store (w) status properties.
Definition: Options.hh:114
@ ColorAlpha
Has (r) / store (w) alpha values for colors.
Definition: Options.hh:111
@ LSB
Assume little endian byte ordering.
Definition: Options.hh:102
@ VertexNormal
Has (r) / store (w) vertex normals.
Definition: Options.hh:104
@ VertexTexCoord
Has (r) / store (w) texture coordinates.
Definition: Options.hh:106
@ EdgeColor
Has (r) / store (w) edge colors.
Definition: Options.hh:107
@ VertexColor
Has (r) / store (w) vertex colors.
Definition: Options.hh:105
@ Custom
Has (r) custom properties (currently only implemented in PLY Reader ASCII version)
Definition: Options.hh:113
Options & operator+=(const value_type _rhs)
Set options defined in _rhs.
Definition: Options.hh:185
Options(Flag _flg)
Initializing constructor setting a single option.
Definition: Options.hh:131
Options & operator-=(const value_type _rhs)
Unset options defined in _rhs.
Definition: Options.hh:172
Options(const Options &_opt)
Copy constructor.
Definition: Options.hh:126
Options & operator=(const Options &_rhs)
Copy options defined in _rhs.
Definition: Options.hh:160