Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/graphics/importer/model.h @ 6222

Last change on this file since 6222 was 6222, checked in by bensch, 18 years ago

orxonox/trunk: merged the christmas branche to the trunk
merged with command:
svn merge -r6165:HEAD christmas_branche/ ../trunk/
no conflicts

File size: 3.1 KB
RevLine 
[4794]1/*
[4245]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
[4794]13   co-programmer:
[4245]14*/
15
[4794]16/*!
[6021]17 * @file model.h
18 *  Definition of an abstract model.
19 *  containing all needed for other models
[5435]20 */
[4245]21
[6021]22#ifndef _MODEL_H
23#define _MODEL_H
[4245]24
25#include "base_object.h"
[5672]26#include "vector.h"
[4245]27
28using namespace std;
29
30
31//! holds the information about a triangle
32typedef struct
33{
[4794]34  unsigned int   indexToVertices[3];   //!< index to the verteces of the triangle
[4802]35  unsigned int   indexToNormals[3];    //!< index to the normals of the triangle
[4794]36  unsigned int   indexToTexCoor[3];    //!< index to the texture coordinates
37} sTriangleExt;
38
39
[5430]40//! Model Information definitions
[4804]41typedef struct
42{
[5430]43  unsigned int     numVertices;          //!< number of Vertices in the Model
44  unsigned int     numTriangles;         //!< number of triangles in the Model
45  unsigned int     numNormals;           //!< how many Normals in the Model
[6008]46  unsigned int     numTexCoor;           //!< how many Texture Coordinates in the Model
[4804]47
[5430]48  const float*     pVertices;            //!< array of the Vertives
49  sTriangleExt*    pTriangles;           //!< array of all triangles
50  const float*     pNormals;             //!< array of the Normals
51  const float*     pTexCoor;             //!< array of the Texture Coordinates
[4804]52
53} modelInfo;
54
55
[4245]56//! This class defines the basic components of a model
[6021]57class Model : public BaseObject {
[4245]58
[4806]59  public:
[6021]60    Model();
61    virtual ~Model();
[4806]62
[6033]63    virtual void draw() const;
[6021]64
[6008]65    inline const modelInfo* getModelInfo() const { return &this->pModelInfo; }
[4806]66
[6008]67    /** @returns a Pointer to the Vertex-Array, if it was deleted it returns NULL */
68    inline const float* getVertexArray() const { return this->pModelInfo.pVertices; };
69    /** @returns the VertexCount of this Model */
70    inline unsigned int getVertexCount() const { return this->pModelInfo.numVertices; };
[4806]71
[6008]72    /** @returns a Pointer to the Normals-Array, if it was deleted it returns NULL */
73    inline const float* getNormalsArray() const { return this->pModelInfo.pNormals; };
74    /** @returns the NormalsCount of this Model */
75    inline unsigned int getNormalsCount() const { return this->pModelInfo.numNormals; };
76
77    /** @returns a Pointer to the TexCoord-Array, if it was deleted it returns NULL */
78    inline const float* getTexCoordArray() const { return this->pModelInfo.pTexCoor; };
79    /** @returns the TexCoord-Count of this Model */
80    inline unsigned int getTexCoordCount() const { return this->pModelInfo.numTexCoor; };
81
82    /** @returns the Array of triangles */
83    inline sTriangleExt* getTriangles() const { return this->pModelInfo.pTriangles; };
84    /** @returns the Count of Faces of this Model */
85    inline unsigned int getFaceCount() const { return this->pModelInfo.numTriangles; };
86
[6009]87
[4806]88  protected:
[6008]89    modelInfo      pModelInfo;      //!< Reference to the modelInfo
[4245]90};
91
[6021]92#endif /* _MODEL_H */
Note: See TracBrowser for help on using the repository browser.