ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
VertexBufferOGL.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 /*
23  * Copyright (C) 2006-2010 - Frictional Games
24  *
25  * This file is part of HPL1 Engine.
26  */
27 
28 #ifndef HPL_VERTEXBUFFER_OGL_H
29 #define HPL_VERTEXBUFFER_OGL_H
30 
31 #include "common/scummsys.h"
32 #include "hpl1/engine/graphics/VertexBuffer.h"
33 
34 #ifdef USE_OPENGL
35 
36 namespace hpl {
37 
38 class cVertexBufferOGL : public iVertexBuffer {
39 public:
40  cVertexBufferOGL(iLowLevelGraphics *apLowLevelGraphics, tVertexFlag aFlags,
41  eVertexBufferDrawType aDrawType, eVertexBufferUsageType aUsageType,
42  int alReserveVtxSize, int alReserveIdxSize);
43  ~cVertexBufferOGL();
44 
45  void AddVertex(tVertexFlag aType, const cVector3f &avVtx);
46  void AddColor(tVertexFlag aType, const cColor &aColor);
47  void AddIndex(unsigned int alIndex);
48 
49  bool Compile(tVertexCompileFlag aFlags);
50  void UpdateData(tVertexFlag aTypes, bool abIndices);
51 
52  void CreateShadowDouble(bool abUpdateData);
53 
54  void Transform(const cMatrixf &mtxTransform);
55 
56  void Draw(eVertexBufferDrawType aDrawType);
57  void DrawIndices(unsigned int *apIndices, int alCount,
58  eVertexBufferDrawType aDrawType = eVertexBufferDrawType_LastEnum);
59 
60  void Bind();
61  void UnBind();
62 
63  iVertexBuffer *CreateCopy(eVertexBufferUsageType aUsageType);
64 
65  cBoundingVolume CreateBoundingVolume();
66 
67  float *GetArray(tVertexFlag aType);
68  unsigned int *GetIndices();
69 
70  void ResizeArray(tVertexFlag aType, int alSize);
71  void ResizeIndices(int alSize);
72 
73  // For debugging purposes
74  int GetVertexNum();
75  int GetIndexNum();
76 
77  cVector3f GetVector3(tVertexFlag aType, unsigned alIdx);
78  cVector3f GetVector4(tVertexFlag aType, unsigned alIdx);
79  cColor GetColor(tVertexFlag aType, unsigned alIdx);
80  unsigned int GetIndex(tVertexFlag aType, unsigned alIdx);
81 
82 private:
83  void SetVertexStates(tVertexFlag aFlags);
84 
85  tFloatVec mvVertexArray[klNumOfVertexFlags];
86  tUIntVec mvIndexArray;
87 
88  bool mbTangents;
89 
90  bool mbHasShadowDouble;
91 };
92 
93 } // namespace hpl
94 
95 #endif // USE_OPENGL
96 #endif // HPL_RENDERER3D_OGL_H
Definition: AI.h:36