| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337 |
- /*
- Copyright (C) 2011 by Ivan Safrin
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
-
- #pragma once
- #include "PolyGlobals.h"
- #include "PolyVertex.h"
- class OSFILE;
- namespace Polycode {
-
- class Polygon;
- class String;
- class _PolyExport VertexSorter {
- public:
- Vertex *target;
- bool operator() (Vertex *v1,Vertex *v2) { return (v1->distance(*target)<v2->distance(*target));}
- };
-
- class _PolyExport VertexBuffer {
- public:
- VertexBuffer(){}
- virtual ~VertexBuffer(){}
-
- int getVertexCount() const { return vertexCount;}
-
- int verticesPerFace;
- int meshType;
- protected:
- int vertexCount;
-
- };
-
- /**
- * Render data array.
- */
- class _PolyExport RenderDataArray {
- public:
- int arrayType;
- int stride;
- int size;
- void *arrayPtr;
- void *rendererData;
- int count;
-
- /**
- * Vertex position array.
- */
- static const int VERTEX_DATA_ARRAY = 0;
-
- /**
- * Vertex color array.
- */
- static const int COLOR_DATA_ARRAY = 1;
-
- /**
- * Vertex normal array.
- */
- static const int NORMAL_DATA_ARRAY = 2;
-
- /**
- * Vertex texture coordinate array.
- */
- static const int TEXCOORD_DATA_ARRAY = 3;
- };
-
- typedef struct {
- float x;
- float y;
- float z;
- float w;
- } Vector4_struct;
-
- typedef struct {
- float x;
- float y;
- float z;
- } Vector3_struct;
- typedef struct {
- float x;
- float y;
- } Vector2_struct;
-
- /**
- * A polygonal mesh. The mesh is assembled from Polygon instances, which in turn contain Vertex instances. This structure is provided for convenience and when the mesh is rendered, it is cached into vertex arrays with no notions of separate polygons. When data in the mesh changes, arrayDirtyMap must be set to true for the appropriate array types (color, position, normal, etc). Available types are defined in RenderDataArray.
- */
- class _PolyExport Mesh {
- public:
-
-
- /**
- * Construct with an empty mesh of specified type.
- * @param meshType Type of mesh. Possible values are: Mesh::QUAD_MESH, Mesh::TRI_MESH, Mesh::TRIFAN_MESH, Mesh::TRISTRIP_MESH, Mesh::LINE_MESH, Mesh::POINT_MESH.
- */
- Mesh(int meshType);
-
- /**
- * Construct from a mesh loaded from a file.
- * @param fileName Path to mesh file.
- */
- Mesh(const String& fileName);
- ~Mesh();
-
- /**
- * Adds a polygon to the mesh.
- * @param newPolygon Polygon to add.
- */
- void addPolygon(Polygon *newPolygon);
- /**
- * Loads a mesh from a file.
- * @param fileName Path to mesh file.
- */
- void loadMesh(const String& fileName);
- /**
- * Saves mesh to a file.
- * @param fileName Path to file to save to.
- */
- void saveToFile(const String& fileName);
- void loadFromFile(OSFILE *inFile);
- void saveToFile(OSFILE *outFile);
-
- /**
- * Returns the number of polygons in the mesh.
- * @return Number of polygons in the mesh.
- */
- unsigned int getPolygonCount();
-
- /**
- * Returns the total vertex count in the mesh.
- * @return Number of vertices in the mesh.
- */
- unsigned int getVertexCount();
-
- /**
- * Returns a polygon at specified index.
- * @param index Index of polygon.
- * @return Polygon at index.
- */
- Polygon *getPolygon(unsigned int index);
-
- /**
- * Creates a plane mesh of specified size.
- * @param w Width of plane.
- * @param h Depth of plane.
- */
- void createPlane(Number w, Number h);
-
- /**
- * Creates a vertical plane mesh of specified size.
- * @param w Width of plane.
- * @param h Depth of plane.
- */
- void createVPlane(Number w, Number h);
- /**
- * Creates a torus.
- * @param radius Radius of the torus.
- * @param tubeRadius Radious of the tube.
- * @param rSegments Number of radial segments.
- * @param tSegments Number of tube segments.
- */
- void createTorus(Number radius, Number tubeRadius, int rSegments, int tSegments);
-
- /**
- * Creates a cube mesh of specified size.
- * @param w Width of cube.
- * @param d Depth of cube.
- * @param h Height of cube.
- */
- void createBox(Number w, Number d, Number h);
-
- /**
- * Creates a sphere mesh of specified size.
- * @param radius Radius of sphere.
- * @param numRings Number of rings.
- * @param numSegments Number of segments.
- */
- void createSphere(Number radius, int numRings, int numSegments);
- /**
- * Creates a cylinder mesh.
- * @param height Height of the cylinder.
- * @param radius Radius of the cylinder.
- * @param numSegments Number of segments.
- */
- void createCylinder(Number height, Number radius, int numSegments);
- /**
- * Creates a cone mesh.
- * @param height Height of the cone.
- * @param radius Radius of the cone.
- * @param numSegments Number of segments.
- */
- void createCone(Number height, Number radius, int numSegments);
-
- /**
- * Recenters the mesh with all vertices being as equidistant from origin as possible.
- */
- Vector3 recenterMesh();
-
- /**
- * Toggles the mesh between using vertex or polygon normals.
- * @param val If true, the mesh will use vertex normals, otherwise it will use the polygon normals.
- */
- void useVertexNormals(bool val);
-
- /**
- * Sets the vertex buffer for the mesh.
- * @param buffer New vertex buffer for mesh.
- */
- void setVertexBuffer(VertexBuffer *buffer);
-
- /**
- * Returns the vertex buffer for the mesh.
- * @return The vertex buffer for this mesh.
- */
- VertexBuffer *getVertexBuffer();
-
- /**
- * Returns the radius of the mesh (furthest vertex away from origin).
- * @return Mesh radius.
- */
- Number getRadius();
-
- /**
- * Recalculates the mesh normals (flat normals only).
- * @param smooth If true, will use smooth normals.
- * @param smoothAngle If smooth, this parameter sets the angle tolerance for the approximation function.
- */
- void calculateNormals(bool smooth=true, Number smoothAngle=90.0);
-
- std::vector<Polygon*> getConnectedFaces(Vertex *v);
-
- /**
- * Returns the mesh type.
- */
- int getMeshType();
-
- /**
- * Sets a new mesh type.
- * @param newType New mesh type. Possible values are: Mesh::QUAD_MESH, Mesh::TRI_MESH, Mesh::TRIFAN_MESH, Mesh::TRISTRIP_MESH, Mesh::LINE_MESH, Mesh::POINT_MESH.
- */
- void setMeshType(int newType);
- /**
- * Calculates the mesh bounding box.
- */
- Vector3 calculateBBox();
- /**
- * Checks if the mesh has a vertex buffer.
- * @param True if the mesh has a vertex buffer, false if not.
- */
- bool hasVertexBuffer() { return meshHasVertexBuffer; }
-
- /**
- * Quad based mesh.
- */
- static const int QUAD_MESH = 0;
-
- /**
- * Triangle based mesh.
- */
- static const int TRI_MESH = 1;
-
- /**
- * Triangle fan based mesh.
- */
- static const int TRIFAN_MESH = 2;
- /**
- * Triangle strip based mesh.
- */
- static const int TRISTRIP_MESH = 3;
-
- /**
- * Line based mesh.
- */
- static const int LINE_MESH = 4;
-
- /**
- * Point based mesh.
- */
- static const int POINT_MESH = 5;
-
- /**
- * Render array dirty map. If any of these are flagged as dirty, the renderer will rebuild them from the mesh data. See RenderDataArray for types of render arrays.
- * @see RenderDataArray
- */
- bool arrayDirtyMap[16];
-
- /**
- * Render arrays. See RenderDataArray for types of render arrays.
- * @see RenderDataArray
- */
- RenderDataArray *renderDataArrays[16];
-
- /**
- * If set to true, the renderer will use the vertex colors instead of entity color transform to render this mesh.
- */
- bool useVertexColors;
-
- protected:
-
- VertexBuffer *vertexBuffer;
- bool meshHasVertexBuffer;
- int meshType;
- std::vector <Polygon*> polygons;
- };
- }
|