123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169 |
- /*!
- * \file include/Mesh.h
- * \brief OpenGL Mesh
- *
- * \author Mongoose
- *
- * \todo Unify the parallel systems here, arrays and the allocate/set
- */
-
- #ifndef _MESH_H_
- #define _MESH_H_
-
- #include "math/math.h"
-
- /*!
- * \brief OpenGL Mesh
- */
- class Mesh {
- public:
-
- typedef enum {
- MeshModeSolid,
- MeshModeWireframe,
- MeshModeTexture,
- MeshModeMultiTexture
- } MeshMode;
-
- typedef enum {
- fMesh_UseVertexArray = (1 << 0)
- } MeshFlags;
-
- typedef struct {
- int texture;
- #ifdef MULTITEXTURE
- int bumpmap;
- #endif
-
- unsigned int cnum_triangles;
- unsigned int cnum_alpha_triangles;
-
- unsigned int num_texcoors;
- vec2_t *texcoors;
-
- unsigned int num_texcoors2;
- vec2_t *texcoors2;
-
- //! Arrays of triangle indices sorted by texture
- unsigned int num_triangles;
- unsigned int *triangles; //!< ABCABCABC...
-
- //! Arrays of alpha triangle indices sorted by texture
- unsigned int num_alpha_triangles;
- unsigned int *alpha_triangles; //!< ABCABCABC...
- } tris_t;
-
- typedef struct {
-
- int texture;
- #ifdef MULTITEXTURE
- int bumpmap;
- #endif
-
- unsigned int cnum_quads;
- unsigned int cnum_alpha_quads;
-
- unsigned int num_texcoors;
- vec2_t *texcoors;
-
- unsigned int num_texcoors2;
- vec2_t *texcoors2;
-
- //! Arrays of rectangle indices sorted by texture
- unsigned int num_quads;
- unsigned int *quads; //!< ABCDABCDABCD...
-
- //! Arrays of alpha rectangle indices sorted by texture
- unsigned int num_alpha_quads;
- unsigned int *alpha_quads; //!< ABCDABCDABCD...
-
- } rect_t;
-
- /*!
- * \brief Constructs an object of Mesh
- */
- Mesh();
-
- /*!
- * \brief Deconstructs an object of Mesh
- */
- ~Mesh();
-
- void drawAlpha();
-
- void drawSolid();
-
- void allocateColors(unsigned int n);
-
- void allocateNormals(unsigned int n);
-
- void allocateRectangles(unsigned int n);
-
- void allocateTriangles(unsigned int n);
-
- void allocateVertices(unsigned int n);
-
- void bufferColorArray(unsigned int colorCount, vec_t *colors);
-
- void bufferNormalArray(unsigned int normalCount, vec_t *normals);
-
- void bufferTriangles(unsigned int count,
- unsigned int *indices, vec_t *texCoords,
- int *textures, unsigned int *flags);
-
- void bufferVertexArray(unsigned int vertexCount, vec_t *vertices);
-
- void setColor(unsigned int index, float r, float g, float b, float a);
-
- void setColor(unsigned int index, float rgba[4]);
-
- void setNormal(unsigned int index, float i, float j, float k);
-
- void setVertex(unsigned int index, float x, float y, float z);
-
- #ifdef NOT_IMPLEMENTED
- void sortFacesByTexture();
-
- void addFace(int textureIndex, int textureIndexB, unsigned int flags,
- unsigned int vertexIndexCount, vec_t *vertexIndices);
-
- void addTexTiledFace(int textureIndex, int textureIndexB,
- unsigned int flags, unsigned int indexCount,
- vec_t *vertexIndices, vec_t *texcoords);
-
- void bufferTexcoords(unsigned int texcoordCount, vec_t *texcoords);
-
- void duplicateArraysForTexTiledTexcoords();
- #endif
-
- unsigned int mFlags;
-
- MeshMode mMode;
-
- unsigned int mNumVertices;
- vec3_t *mVertices; //!< XYZ
-
- unsigned int mNumNormals;
- vec3_t *mNormals; //!< IJK
-
- unsigned int mNumColors;
- vec4_t *mColors; //!< RGBA
-
- unsigned int mNumTris;
- tris_t *mTris;
-
- unsigned int mNumQuads;
- rect_t *mQuads;
-
- unsigned int mTriangleCount;
- int *mTriangleTextures;
- unsigned int *mTriangleIndices;
- unsigned int *mTriangleFlags;
- vec_t *mTriangleTexCoordArray;
-
- vec_t *mVertexArray;
- vec_t *mNormalArray;
- vec_t *mColorArray;
- };
-
- #endif
|