CTextureVideo.h
Go to the documentation of this file.
1 //==============================================================================
2 /*
3  Software License Agreement (BSD License)
4  Copyright (c) 2003-2016, CHAI3D.
5  (www.chai3d.org)
6 
7  All rights reserved.
8 
9  Redistribution and use in source and binary forms, with or without
10  modification, are permitted provided that the following conditions
11  are met:
12 
13  * Redistributions of source code must retain the above copyright
14  notice, this list of conditions and the following disclaimer.
15 
16  * Redistributions in binary form must reproduce the above
17  copyright notice, this list of conditions and the following
18  disclaimer in the documentation and/or other materials provided
19  with the distribution.
20 
21  * Neither the name of CHAI3D nor the names of its contributors may
22  be used to endorse or promote products derived from this software
23  without specific prior written permission.
24 
25  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
28  FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
29  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
30  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
31  BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
33  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
35  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  POSSIBILITY OF SUCH DAMAGE.
37 
38  \author <http://www.chai3d.org>
39  \author Sebastien Grange
40  \version 3.2.0 $Rev: 1869 $
41 */
42 //==============================================================================
43 
44 //------------------------------------------------------------------------------
45 #ifndef CTextureVideoH
46 #define CTextureVideoH
47 //------------------------------------------------------------------------------
48 #include "materials/CTexture2d.h"
49 #include "graphics/CVideo.h"
50 //------------------------------------------------------------------------------
51 
52 //------------------------------------------------------------------------------
53 namespace chai3d {
54 //------------------------------------------------------------------------------
55 
56 //==============================================================================
63 //==============================================================================
64 
65 //------------------------------------------------------------------------------
67 typedef std::shared_ptr<cTextureVideo> cTextureVideoPtr;
68 //------------------------------------------------------------------------------
69 
70 //==============================================================================
82 //==============================================================================
83 class cTextureVideo : public cTexture2d
84 {
85  //--------------------------------------------------------------------------
86  // CONSTRUCTOR & DESTRUCTOR:
87  //--------------------------------------------------------------------------
88 
89 public:
90 
92  cTextureVideo();
93 
95  virtual ~cTextureVideo();
96 
98  static cTextureVideoPtr create() { return (std::make_shared<cTextureVideo>()); }
99 
100 
101  //--------------------------------------------------------------------------
102  // PUBLIC METHODS:
103  //--------------------------------------------------------------------------
104 
105 public:
106 
108  virtual bool loadFromFile(const std::string& a_fileName);
109 
111  virtual void renderInitialize(cRenderOptions& a_options);
112 
113 
114  //--------------------------------------------------------------------------
115  // PUBLIC MEMBERS:
116  //--------------------------------------------------------------------------
117 
118 public:
119 
122 };
123 
124 
125 //------------------------------------------------------------------------------
126 } // namespace chai3d
127 //------------------------------------------------------------------------------
128 
129 //------------------------------------------------------------------------------
130 #endif
131 //------------------------------------------------------------------------------
This structures provide a containers for storing rendering options that are passed through the sceneg...
Definition: CRenderOptions.h:82
virtual void renderInitialize(cRenderOptions &a_options)
This method enables texturing and set this texture as the current texture.
Definition: CTextureVideo.cpp:85
static cTextureVideoPtr create()
Shared cTextureVideo allocator.
Definition: CTextureVideo.h:98
std::shared_ptr< cTextureVideo > cTextureVideoPtr
Definition: CTextureVideo.h:66
virtual bool loadFromFile(const std::string &a_fileName)
This method loads a texture video file.
Definition: CTextureVideo.cpp:105
std::shared_ptr< cVideo > cVideoPtr
Definition: CVideo.h:67
cVideoPtr m_video
Video object (Use this to get data about the texture itself).
Definition: CTextureVideo.h:121
virtual ~cTextureVideo()
Destructor of cTextureVideo.
Definition: CTextureVideo.cpp:71
Implements support for video files.
Definition: CAudioBuffer.cpp:56
This class implements a video texture map.
Definition: CTextureVideo.h:83
Implements 2D textures.
This class implements a 2D texture map.
Definition: CTexture2d.h:84
cTextureVideo()
Constructor of cTextureVideo.
Definition: CTextureVideo.cpp:59