/Startbestanden/GPEngine2010/ObjReader/VertexList.h

http://monsterrun.googlecode.com/ · C Header · 344 lines · 62 code · 9 blank · 273 comment · 0 complexity · 1bae6cdc81eb21733fae9fb0cd8e7f05 MD5 · raw file

  1. #pragma once
  2. #include "Semantic.h"
  3. #include "VertexBuffer.h"
  4. #include <vector>
  5. #include "DAEFloat4.h"
  6. #include "DAEFloat3.h"
  7. #include "DAEFloat2.h"
  8. #include "DAEMatrix.h"
  9. using namespace std;
  10. /**
  11. * This class contains a list of vertices. The list can be configured
  12. * to contain several different formats, such as VertexVNT, VertexVNTT
  13. * and so on.
  14. *
  15. * The vertex list can grow to provide room for more vertices.
  16. *
  17. * The vertex list contains a mapping to insure that the data is copied
  18. * to the correct location in the list.
  19. *
  20. * The vertex list also provides support for serialization , to speed
  21. * up the loading process.
  22. *
  23. * The vertex list can also be used to create a dynamic buffer for the
  24. * small objects in a scene.
  25. *
  26. * @author Koen Samyn
  27. */
  28. class VertexList
  29. {
  30. public:
  31. /**
  32. * Creates a new VertexList object with the provided
  33. * initialsize.
  34. * @param initialSize the initial number of vertices.
  35. */
  36. VertexList(int initialSize);
  37. /**
  38. * Creates a new VertexList object
  39. * @param initialSize the initial number of vertices.
  40. * @param semanticList the list of semantics as a vector.
  41. * @param sizeList the size for each semantic (for example a texcoord semantic could
  42. * contain 2 floats or 3)
  43. * @param adjustCurrentSize if this parameter is false, the provided initialSize provides
  44. * room for growth, setting this parameter to true indicates that the current size
  45. * will be adjusted.
  46. */
  47. VertexList(int initialSize, vector<SEMANTIC> semanticList, vector<int> sizeList,bool adjustCurrentSize=false);
  48. /**
  49. * Adds a semantic to the vertex list. This will clear and resize the current vertex data.
  50. * It is best to use this method only when the vertex list size is still zero.
  51. * @param semantic the semantic to add.
  52. * @param size the size (number of floats) for the semantic.
  53. */
  54. void AddSemantic(SEMANTIC semantic, int size);
  55. /**
  56. * Destroys the vertex list.
  57. */
  58. virtual ~VertexList(void);
  59. /**
  60. * Returns the size of the VertexList
  61. * @return the current size.
  62. */
  63. int GetSize();
  64. /**
  65. * Specialized function to add a DAEFloat3 to the vertexlist.
  66. * @param vertexIndex the index of the vertex.
  67. * @param semantic the semantic to set.
  68. * @param pVector a pointer to the vector.
  69. */
  70. void AddVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat4 * pVector);
  71. /**
  72. * Specialized function to add a DAEFloat3 to the vertexlist with the provided
  73. * semantic offset. The semantic offset is not checked.
  74. * @param vertexIndex the index of the vertex.
  75. * @param semanticOffset the position of the semantic in one record.
  76. * @param pVector a pointer to the vector.
  77. */
  78. void AddVertexData(int vertexIndex, int semanticOffset, DAEFloat4 * pVector);
  79. /**
  80. * Specialized function to get a DAEFloat4 from the vertexlist.
  81. * @param vertexindex the index of the vertex.
  82. * @param semantic the semantic to get.
  83. * @param pVector a pointer to the vector.
  84. */
  85. void GetVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat4 *pVector);
  86. /**
  87. * Specialized function to get a DAEFloat4 from the vertexlist.
  88. * @param vertexindex the index of the vertex.
  89. * @param semanticOffset the offset for the semantic in one record.
  90. * @param pVector a pointer to the vector.
  91. */
  92. void GetVertexData(int vertexIndex, int semanticOffset, DAEFloat4 *pVector);
  93. /**
  94. * Specialized function to add a DAEFloat3 to the vertexlist.
  95. * @param vertexIndex the index of the vertex.
  96. * @param semantic the semantic to set.
  97. * @param pVector a pointer to the vector.
  98. */
  99. void AddVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat3 * pVector);
  100. /**
  101. * Specialized function to add a DAEFloat3 to the vertexlist with the provided
  102. * semantic offset. The semantic offset is not checked.
  103. * @param vertexIndex the index of the vertex.
  104. * @param semanticOffset the position of the semantic in one record.
  105. * @param pVector a pointer to the vector.
  106. */
  107. void AddVertexData(int vertexIndex, int semanticOffset, DAEFloat3 * pVector);
  108. /**
  109. * Specialized function to get a DAEFloat3 from the vertexlist.
  110. * @param vertexindex the index of the vertex.
  111. * @param semantic the semantic to get.
  112. * @param pVector a pointer to the vector.
  113. */
  114. void GetVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat3 *pVector);
  115. /**
  116. * Specialized function to get a DAEFloat3 from the vertexlist.
  117. * @param vertexindex the index of the vertex.
  118. * @param semanticOffset the offset for the semantic in one record.
  119. * @param pVector a pointer to the vector.
  120. */
  121. void GetVertexData(int vertexIndex, int semanticOffset, DAEFloat3 *pVector);
  122. /**
  123. * Specialized function to add a DAEFloat2 to the vertexlist.
  124. * @param vertexIndex the index of the vertex.
  125. * @param semantic the semantic to set.
  126. * @param pVector a pointer to the vector.
  127. */
  128. void AddVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat2 * pVector);
  129. /**
  130. * Specialized function to add a DAEFloat2 to the vertexlist.
  131. * @param vertexIndex the index of the vertex.
  132. * @param semanticOffset the offset for the semantic in one record.
  133. * @param pVector a pointer to the vector.
  134. */
  135. void AddVertexData(int vertexIndex, int semanticOffset, DAEFloat2 * pVector);
  136. /**
  137. * Specialized function to get a DAEFloat2 from the vertexlist.
  138. * @param vertexindex the index of the vertex.
  139. * @param semantic the semantic to get.
  140. * @param pVector a pointer to the vector.
  141. */
  142. void GetVertexData(int vertexIndex, SEMANTIC semantic, DAEFloat2 *pVector);
  143. /**
  144. * Specialized function to get a DAEFloat2 from the vertexlist.
  145. * @param vertexindex the index of the vertex.
  146. * @param semanticOffset the ofset for the semantic in one record.
  147. * @param pVector a pointer to the vector.
  148. */
  149. void GetVertexData(int vertexIndex, int semanticOffset, DAEFloat2 *pVector);
  150. /**
  151. * Specialized function to add a single float to the vertexlist.
  152. * @param vertexIndex the index of the vertex.
  153. * @param semantic the semantic to set.
  154. * @param value the value to add to the buffer.
  155. */
  156. void AddVertexData(int vertexIndex, SEMANTIC semantic, float value);
  157. /**
  158. * Specialized function to add a single float to the vertexlist.
  159. * @param vertexIndex the index of the vertex.
  160. * @param semantic the semantic to set.
  161. * @param value the value to add to the buffer.
  162. */
  163. void AddVertexData(int vertexIndex, int semanticOffset, float value);
  164. /**
  165. * Specialized function to get a single float from the vertexlist.
  166. * @param vertexindex the index of the vertex.
  167. * @param semantic the semantic to get.
  168. * @return the float value.
  169. */
  170. float GetVertexData(int vertexIndex, SEMANTIC semantic);
  171. /**
  172. * Specialized function to get a single float from the vertexlist.
  173. * @param vertexindex the index of the vertex.
  174. * @param semanticOffset the ofset for the semantic in one record.
  175. * @return the float value.
  176. */
  177. float GetVertexData(int vertexIndex, int semanticOffset);
  178. /**
  179. * Adds a part of a vertex to the vertexlist.
  180. * @param vertexIndex the index of the vertex.
  181. * @param semantic the semantic to set.
  182. * @param dataPtr a ptr to the data that needs to be copied
  183. * @param size the size of the data to copy.
  184. */
  185. void AddVertexData(int vertexIndex, SEMANTIC s,float * dataPtr, int size);
  186. /**
  187. * Gets a part of the vertex from the vertexlist.
  188. * @param vertexIndex the index of the vertex.
  189. * @param semantic the semantic to get.
  190. * @param dataPtr a ptr to the data to set.
  191. */
  192. void GetVertexData(int vertexIndex, SEMANTIC s, float * dataPtr, int size);
  193. /**
  194. * Fills a semantic with the provided template.
  195. * @param semantic the semantic to fill.
  196. * @param fillValue the value to use for filling the semantic.
  197. */
  198. void FillSemantic(SEMANTIC s, DAEFloat3* fillValue);
  199. /**
  200. * Normalizes all elements for a given semantic.
  201. * @param semantic the semantic to normalize.
  202. */
  203. void NormalizeDataBySemantic(SEMANTIC s);
  204. /**
  205. * Transform the vector found at a given semantic with the
  206. * provided matrix. The matrix transformation includes the translation
  207. * part of the matrix
  208. * @param matrix the matrix to use.
  209. */
  210. void TransformVertexSemantic(DAEMatrix& matrix,SEMANTIC s);
  211. /**
  212. * Transforms the normal found at a give semantic with
  213. * provided matrix. The matrix transformation excludes the translation
  214. * part of the matrix.
  215. * @param matrix the matrix to use.
  216. */
  217. void TransformNormalSemantic(DAEMatrix& matrix,SEMANTIC s);
  218. /**
  219. * Finds the offset for a given semantic.
  220. * @param semantic the semantic to find the offset for.
  221. */
  222. int GetOffset(SEMANTIC s);
  223. /**
  224. * Calculates the normal for a give triangle and adds it to
  225. * the normal semantic of each vertex.
  226. * @param v1 the first vertex of the triangle.
  227. * @param v2 the second vertex for the triangle.
  228. * @param v3 the third vertex for the triangle.
  229. */
  230. void AddNormalForTri(int v1, int v2, int v3);
  231. /**
  232. * Calculates the normal for a give triangle and adds it to
  233. * the normal semantic of each vertex.
  234. * @param int posOffset the offset of the position semantic.
  235. * @param int normalOffset the offset of the normal semantic.
  236. * @param v1 the first vertex of the triangle.
  237. * @param v2 the second vertex for the triangle.
  238. * @param v3 the third vertex for the triangle.
  239. */
  240. void AddNormalForTri(int posOffset, int normalOffset,int v1, int v2, int v3);
  241. /**
  242. * Returns the size per vertex.
  243. * @return the size per vertex.
  244. */
  245. inline int GetSizePerVertexInBytes(){return m_SizePerVertex*sizeof(float);}
  246. /**
  247. * Returns the number of semantics.
  248. * @return the number of semantics.
  249. */
  250. int GetNumberOfSemantics(){return m_SemanticList.size();}
  251. /**
  252. * Returns the semantic
  253. * @param index the index of the semantic.
  254. * @return the SEMANTIC value.
  255. */
  256. SEMANTIC GetSemantic(unsigned int index);
  257. /**
  258. * Returns the size of the semantic.
  259. * @param index the index of the semantic.
  260. * @return the size of the semantic (not in bytes)
  261. */
  262. int GetSemanticSize(unsigned int index);
  263. /**
  264. * Returns a pointer to the float data.
  265. * @return the raw pointer to the underlying data.
  266. */
  267. inline float* GetData(){return m_Data;}
  268. /**
  269. * Write this VertexList object to a binary stream.
  270. * This function will write:
  271. *
  272. * 1) A constant that indicates that this is a vertexlist. (4 bytes)
  273. * 2) The total size in bytes (4 bytes)
  274. * 3) The number of vertices in this vertexlist. (4 bytes)
  275. * 4) The number of supported semantics (4 bytes)
  276. * 5) For each semantic , the type of semantic (as defined in the enum) (4 bytes)
  277. * followed by the size for the semantic.
  278. * 6) the blob with all the vertex data.
  279. */
  280. void Write(fstream stream);
  281. private:
  282. /**
  283. * the number of floats per vertex.
  284. */
  285. int m_SizePerVertex;
  286. /**
  287. * the data.
  288. */
  289. float * m_Data;
  290. /**
  291. * the initial size for the vertex list (in number of vertices)
  292. */
  293. int m_InitialSize;
  294. /**
  295. * the current capacity for the vertexlist.
  296. */
  297. int m_CurrentCapacity;
  298. /**
  299. * the current size minus 1.
  300. */
  301. int m_CurrentSize;
  302. /**
  303. * the stored semantics.
  304. */
  305. vector<SEMANTIC> m_SemanticList;
  306. /**
  307. * the size per semantic.
  308. */
  309. vector<int> m_SizeList;
  310. /**
  311. * The pointer to the vertex buffer
  312. */
  313. VertexBuffer * m_VertexBuffer;
  314. /**
  315. * Grows the vertex list to the provided capacity (in number of vertices.
  316. * @param numberOfVertices the new number of vertices.
  317. */
  318. void Grow(int numberOfVertices);
  319. /**
  320. * Finds the offset for a given semantic and vertexindex
  321. * @param vertexIndex the index for the vertex.
  322. * @param semantic the semantic to find the offset for.
  323. */
  324. int GetOffset(int vertexIndex,SEMANTIC s);
  325. /**
  326. * Gets the size of a give semantic.
  327. * @param s the semantic to get the size for.
  328. */
  329. int GetSemanticSize(SEMANTIC s);
  330. /**
  331. * Update the current maximal index.
  332. * @param latestIndex the latest index that was added.
  333. */
  334. void UpdateCurrentSize(int index);
  335. };