Pyrogenesis  trunk
InstancingModelRenderer.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  * Special ModelVertexRender that only works for non-animated models,
20  * but is very fast for instanced models.
21  */
22 
23 #ifndef INCLUDED_INSTANCINGMODELRENDERER
24 #define INCLUDED_INSTANCINGMODELRENDERER
25 
27 
29 
30 /**
31  * Render non-animated (but potentially moving) models using a ShaderRenderModifier.
32  * This computes and binds per-vertex data; the modifier is responsible
33  * for setting any shader uniforms etc (including the instancing transform).
34  */
36 {
37 public:
38  InstancingModelRenderer(bool gpuSkinning, bool calculateTangents);
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 #endif // INCLUDED_INSTANCINGMODELRENDERER
void UpdateModelData(CModel *model, CModelRData *data, int updateflags)
UpdateModelData: Calculate per-model data for each frame.
Definition: InstancingModelRenderer.cpp:300
CModelRData * CreateModelData(const void *key, CModel *model)
CreateModelData: Create internal data for one model.
Definition: InstancingModelRenderer.cpp:280
InstancingModelRenderer(bool gpuSkinning, bool calculateTangents)
Definition: InstancingModelRenderer.cpp:265
Definition: ModelDef.h:136
Render non-animated (but potentially moving) models using a ShaderRenderModifier. ...
Definition: InstancingModelRenderer.h:35
void BeginPass(int streamflags)
BeginPass: Setup global OpenGL state for this ModelVertexRenderer.
Definition: InstancingModelRenderer.cpp:307
InstancingModelRendererInternals * m
Definition: InstancingModelRenderer.h:51
void RenderModel(const CShaderProgramPtr &shader, int streamflags, CModel *model, CModelRData *data)
RenderModel: Invoke the rendering commands for the given model.
Definition: InstancingModelRenderer.cpp:358
~InstancingModelRenderer()
Definition: InstancingModelRenderer.cpp:273
pthread_key_t key
Definition: wpthread.cpp:140
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: InstancingModelRenderer.cpp:320
static size_t model
Definition: x86_x64.cpp:221
Class CModelRData: Render data that is maintained per CModel.
Definition: ModelRenderer.h:61
Class ModelVertexRenderer: Normal ModelRenderer implementations delegate vertex array management and ...
Definition: ModelVertexRenderer.h:41
Definition: Model.h:48
Definition: InstancingModelRenderer.cpp:250
std::shared_ptr< CShaderProgram > CShaderProgramPtr
Definition: ShaderProgramPtr.h:25
void EndPass(int streamflags)
EndPass: Cleanup OpenGL state set up by BeginPass.
Definition: InstancingModelRenderer.cpp:313