Pyrogenesis  trunk
HWLightingModelRenderer.h
Go to the documentation of this file.
1 /* Copyright (C) 2012 Wildfire Games.
2  * This file is part of 0 A.D.
3  *
4  * 0 A.D. is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * 0 A.D. is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with 0 A.D. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 /*
19  * ModelVertexRenderer that transforms models on the CPU but performs
20  * lighting in a vertex shader.
21  */
22 
23 #ifndef INCLUDED_HWLIGHTINGMODELRENDERER
24 #define INCLUDED_HWLIGHTINGMODELRENDERER
25 
27 
29 
30 /**
31  * Render animated models using a ShaderRenderModifier.
32  * This computes and binds per-vertex data; the modifier is responsible
33  * for setting any shader uniforms etc.
34  */
36 {
37 public:
38  ShaderModelVertexRenderer(bool cpuLighting);
40 
41  // Implementations
42  CModelRData* CreateModelData(const void* key, CModel* model);
43  void UpdateModelData(CModel* model, CModelRData* data, int updateflags);
44 
45  void BeginPass(int streamflags);
46  void EndPass(int streamflags);
47  void PrepareModelDef(const CShaderProgramPtr& shader, int streamflags, const CModelDef& def);
48  void RenderModel(const CShaderProgramPtr& shader, int streamflags, CModel* model, CModelRData* data);
49 
50 protected:
52 };
53 
54 
55 #endif // INCLUDED_HWLIGHTINGMODELRENDERER
Render animated models using a ShaderRenderModifier.
Definition: HWLightingModelRenderer.h:35
void EndPass(int streamflags)
EndPass: Cleanup OpenGL state set up by BeginPass.
Definition: HWLightingModelRenderer.cpp:244
ShaderModelRendererInternals * m
Definition: HWLightingModelRenderer.h:51
void RenderModel(const CShaderProgramPtr &shader, int streamflags, CModel *model, CModelRData *data)
RenderModel: Invoke the rendering commands for the given model.
Definition: HWLightingModelRenderer.cpp:268
Internal data of the ShaderModelRenderer.
Definition: HWLightingModelRenderer.cpp:93
Definition: ModelDef.h:136
void UpdateModelData(CModel *model, CModelRData *data, int updateflags)
UpdateModelData: Calculate per-model data for each frame.
Definition: HWLightingModelRenderer.cpp:186
~ShaderModelVertexRenderer()
Definition: HWLightingModelRenderer.cpp:121
void PrepareModelDef(const CShaderProgramPtr &shader, int streamflags, const CModelDef &def)
PrepareModelDef: Setup OpenGL state for rendering of models that use the given CModelDef object as ba...
Definition: HWLightingModelRenderer.cpp:251
pthread_key_t key
Definition: wpthread.cpp:140
ShaderModelVertexRenderer(bool cpuLighting)
Definition: HWLightingModelRenderer.cpp:112
void BeginPass(int streamflags)
BeginPass: Setup global OpenGL state for this ModelVertexRenderer.
Definition: HWLightingModelRenderer.cpp:235
static size_t model
Definition: x86_x64.cpp:221
Class CModelRData: Render data that is maintained per CModel.
Definition: ModelRenderer.h:61
CModelRData * CreateModelData(const void *key, CModel *model)
CreateModelData: Create internal data for one model.
Definition: HWLightingModelRenderer.cpp:130
Class ModelVertexRenderer: Normal ModelRenderer implementations delegate vertex array management and ...
Definition: ModelVertexRenderer.h:41
Definition: Model.h:48
std::shared_ptr< CShaderProgram > CShaderProgramPtr
Definition: ShaderProgramPtr.h:25