All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
ColorGradient.h
Go to the documentation of this file.
1 /*
2 --------------------------------------------------------------------------------
3 This source file is part of SkyX.
4 Visit http://www.paradise-studios.net/products/skyx/
5 
6 Copyright (C) 2009-2012 Xavier Verguín González <xavyiy@gmail.com>
7 
8 This program is free software; you can redistribute it and/or modify it under
9 the terms of the GNU Lesser General Public License as published by the Free Software
10 Foundation; either version 2 of the License, or (at your option) any later
11 version.
12 
13 This program is distributed in the hope that it will be useful, but WITHOUT
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
16 
17 You should have received a copy of the GNU Lesser General Public License along with
18 this program; if not, write to the Free Software Foundation, Inc., 59 Temple
19 Place - Suite 330, Boston, MA 02111-1307, USA, or go to
20 http://www.gnu.org/copyleft/lesser.txt.
21 --------------------------------------------------------------------------------
22 */
23 
24 #ifndef _SkyX_ColorGradient_H_
25 #define _SkyX_ColorGradient_H_
26 
27 #include <vector>
28 #include <utility>
29 
30 #include "Prerequisites.h"
31 
32 namespace SkyX
33 {
34  class DllExport ColorGradient
35  {
36  public:
41  typedef std::pair<Ogre::Vector3, Ogre::Real> ColorFrame;
42 
45  ColorGradient();
46 
49  ~ColorGradient();
50 
54  inline void addCFrame(const ColorFrame& CFrame)
55  {
56  CFrameVector.push_back(CFrame);
57 
58  mMalFormed = !_checkBounds();
59  }
60 
63  inline void clear()
64  {
65  CFrameVector.clear();
66  }
67 
72  const Ogre::Vector3 getColor(const Ogre::Real& p) const;
73 
74  private:
78  bool _checkBounds() const;
79 
81  bool mMalFormed;
82 
84  std::vector<ColorFrame> CFrameVector;
85  };
86 }
87 
88 #endif
SkyX(Ogre::SceneManager *sm, Controller *c)
Contructor.
#define DllExport
Include external headers.
Definition: Prerequisites.h:45