Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/mount_points/src/lib/graphics/importer/model.h @ 10182

Last change on this file since 10182 was 10182, checked in by patrick, 17 years ago

extended model to contain the mounting point informations

File size: 4.1 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Patrick Boenzli
13   co-programmer:
14*/
15
16/*!
17 * @file model.h
18 *  Definition of an abstract model.
19 *  containing all needed for other models
20 */
21
22#ifndef _MODEL_H
23#define _MODEL_H
24
25#include "base_object.h"
26#include "vector.h"
27
28
29//! holds the information about a triangle
30typedef struct
31{
32  unsigned int   indexToVertices[3];   //!< index to the vertices of the triangle
33  unsigned int   indexToNormals[3];    //!< index to the normals of the triangle
34  unsigned int   indexToTexCoor[3];    //!< index to the texture coordinates
35} sTriangleExt;
36
37
38//! Model Information definitions
39typedef struct
40{
41  unsigned int     numVertices;          //!< number of Vertices in the Model
42  unsigned int     numTriangles;         //!< number of triangles in the Model
43  unsigned int     numNormals;           //!< how many Normals in the Model
44  unsigned int     numTexCoor;           //!< how many Texture Coordinates in the Model
45
46  const float*     pVertices;            //!< array of the Vertices
47  sTriangleExt*    pTriangles;           //!< array of all triangles
48  const float*     pNormals;             //!< array of the Normals
49  const float*     pTexCoor;             //!< array of the Texture Coordinates
50
51} modelInfo;
52
53
54//! skeleton informations for all mount points
55typedef struct
56{
57  Vector           up;                   //!< the up vector
58  Vector           forward;              //!< the forward vector
59  Vector           center;               //!< the center vector
60} mountPointSkeleton;
61
62
63
64//! This class defines the basic components of a model
65class Model : virtual public BaseObject {
66  ObjectListDeclaration(Model);
67
68  typedef std::list<mountPointSkeleton>   mpList;
69
70  public:
71    virtual ~Model();
72
73    virtual void draw() const;
74
75    inline const modelInfo* getModelInfo() const { return &this->pModelInfo; }
76
77    /** @returns a Pointer to the Vertex-Array, if it was deleted it returns NULL */
78    inline const float* getVertexArray() const { return this->pModelInfo.pVertices; };
79    /** @returns the VertexCount of this Model */
80    inline unsigned int getVertexCount() const { return this->pModelInfo.numVertices; };
81
82    /** @returns a Pointer to the Normals-Array, if it was deleted it returns NULL */
83    inline const float* getNormalsArray() const { return this->pModelInfo.pNormals; };
84    /** @returns the NormalsCount of this Model */
85    inline unsigned int getNormalsCount() const { return this->pModelInfo.numNormals; };
86
87    /** @returns a Pointer to the TexCoord-Array, if it was deleted it returns NULL */
88    inline const float* getTexCoordArray() const { return this->pModelInfo.pTexCoor; };
89    /** @returns the TexCoord-Count of this Model */
90    inline unsigned int getTexCoordCount() const { return this->pModelInfo.numTexCoor; };
91
92    /** @returns the Array of triangles */
93    inline sTriangleExt* getTriangles() const { return this->pModelInfo.pTriangles; };
94    /** @returns the Count of Faces of this Model */
95    inline unsigned int getTriangleCount() const { return this->pModelInfo.numTriangles; };
96
97    /** function to extract the mount points from the model data */
98    virtual void extractMountPoints() {}
99    /** @returns a list of mounting points */
100    inline const mpList& getMountPoints() const { return this->mountPoints; }
101    /** adds a mounting point to the model @param up up vector @param forward forward vector @param center center vector */
102    inline void addMountPoint(Vector up, Vector forward, Vector center)
103    { mountPointSkeleton mps; mps.up = up; mps.forward = forward; mps.center = center; }
104
105
106  protected:
107    Model();
108
109
110  protected:
111    modelInfo                        pModelInfo;      //!< Reference to the modelInfo
112    mpList                           mountPoints;     //!< a list of all mounting point skeletons
113};
114
115#endif /* _MODEL_H */
Note: See TracBrowser for help on using the repository browser.