Visualization Library 2.1.0

A lightweight C++ OpenGL middleware for 2D/3D graphics

VL     Star     Watch     Fork     Issue

[Download] [Tutorials] [All Classes] [Grouped Classes]
DistanceLODEvaluator.hpp
Go to the documentation of this file.
1 /**************************************************************************************/
2 /* */
3 /* Visualization Library */
4 /* http://visualizationlibrary.org */
5 /* */
6 /* Copyright (c) 2005-2020, Michele Bosi */
7 /* All rights reserved. */
8 /* */
9 /* Redistribution and use in source and binary forms, with or without modification, */
10 /* are permitted provided that the following conditions are met: */
11 /* */
12 /* - Redistributions of source code must retain the above copyright notice, this */
13 /* list of conditions and the following disclaimer. */
14 /* */
15 /* - Redistributions in binary form must reproduce the above copyright notice, this */
16 /* list of conditions and the following disclaimer in the documentation and/or */
17 /* other materials provided with the distribution. */
18 /* */
19 /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND */
20 /* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED */
21 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE */
22 /* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR */
23 /* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES */
24 /* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; */
25 /* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON */
26 /* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
27 /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS */
28 /* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
29 /* */
30 /**************************************************************************************/
31 
32 #ifndef DistanceLODEvaluator_INCLUDE_ONCE
33 #define DistanceLODEvaluator_INCLUDE_ONCE
34 
35 #include <vlGraphics/Actor.hpp>
36 
37 namespace vl
38 {
39  //-----------------------------------------------------------------------------
40  // DistanceLODEvaluator
41  //-----------------------------------------------------------------------------
51  {
53 
54  public:
56  {
57  VL_DEBUG_SET_OBJECT_NAME()
58  }
59  virtual int evaluate(Actor* actor, Camera* camera)
60  {
61  if (mDistanceRangeSet.empty())
62  return 0;
63 
64  vec3 center = actor->transform() ? actor->transform()->worldMatrix() * actor->lod(0)->boundingBox().center() : actor->lod(0)->boundingBox().center();
65  double dist = (camera->modelingMatrix().getT() - center).length();
66 
67  // we assume the distances are sorted in increasing order
68  int i=0;
69  for(; i<(int)mDistanceRangeSet.size(); ++i)
70  {
71  if (dist<mDistanceRangeSet[i])
72  return i;
73  }
74 
75  return i; // == mDistanceRangeSet.size()
76  }
77 
78  const std::vector<double>& distanceRangeSet() const { return mDistanceRangeSet; }
79 
80  std::vector<double>& distanceRangeSet() { return mDistanceRangeSet; }
81 
82  protected:
83  std::vector<double> mDistanceRangeSet;
84  };
85 }
86 
87 #endif
Associates a Renderable object to an Effect and Transform.
Definition: Actor.hpp:130
const Renderable * lod(int lod_index) const
Returns the Renderable object representing the LOD level specifed by lod_index.
Definition: Actor.hpp:173
Transform * transform()
Returns the Transform bound tho an Actor.
Definition: Actor.hpp:190
std::vector< double > & distanceRangeSet()
vec3 center() const
Returns the center of the AABB.
Definition: AABB.cpp:184
#define VL_INSTRUMENT_CLASS(ClassName, BaseClass)
Definition: TypeInfo.hpp:122
Visualization Library main namespace.
std::vector< double > mDistanceRangeSet
const mat4 & modelingMatrix() const
Returns the Camera&#39;s modelingMatrix() (inverse of the view matrix).
Definition: Camera.hpp:168
const std::vector< double > & distanceRangeSet() const
const mat4 & worldMatrix() const
Returns the world matrix used for rendering.
Definition: Transform.hpp:168
virtual int evaluate(Actor *actor, Camera *camera)
Abstract class to compute the appropriate LOD of an Actor or Effect.
A LODEvaluator that computes the appropriate LOD based on the distance of an Actor from the Camera...
Vector3< T_Scalar > getT() const
Definition: Matrix4.hpp:136
T length(T v)
Definition: glsl_math.hpp:1084
Represents a virtual camera defining, among other things, the point of view from which scenes can be ...
Definition: Camera.hpp:49
const AABB & boundingBox() const
Returns the bounding box of a Renderable without recomputing the bounds if dirty. ...
Definition: Renderable.hpp:155