-
Notifications
You must be signed in to change notification settings - Fork 0
/
model.h
80 lines (65 loc) · 1.18 KB
/
model.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
*
* Name: model.h
* Author: Niall Moran
* License: GPL
* Desc: Header file for model class. The class contains functionality to
* parse and display wavefront .obj model files.
*
*/
#ifndef _MODEL_H_
#define _MODEL_H_
#include <string>
#include "util.h"
using namespace std;
class CModel {
private:
float *vertices;
int *faces;
int *face_normals;
int *face_textures;
float *normals;
float *texture_coords;
string name;
int vertex_count;
int face_count;
int normal_count;
int text_count;
bool compiled;
GLuint display_list;
public:
/*
* Constructor that takes name of model as argument.
*
* @parm a_name Name of model to read. Model file will be name wiht .obj appended.
*/
CModel( string a_name ) {
name = a_name;
vertex_count = 0;
face_count = 0;
normal_count = 0;
text_count = 0;
compiled = false;
}
/*
* Null Constructor simply sets name to ""
*/
CModel( ) {
CModel("");
}
/*
* This method opens the model file and parses it.
*/
void read();
/*
* This method renders the model.
*/
void display ();
/*
* this method compiles a display list for the model
*/
void compile ();
void get_geom(float *geoms );
~CModel();
};
#endif