40 lines
569 B
C++
40 lines
569 B
C++
#include <vector>
|
|
#include <string>
|
|
using namespace std;
|
|
struct Vertex {
|
|
float pos[3];
|
|
};
|
|
|
|
struct Normal {
|
|
float dir[3];
|
|
};
|
|
|
|
struct Material {
|
|
int idx;
|
|
string name;
|
|
float ambient[4];
|
|
float specular[4];
|
|
float diffuse[4];
|
|
};
|
|
|
|
struct Face {
|
|
vector<Vertex*> vertices;
|
|
vector<Normal*> normals;
|
|
Material* mtl;
|
|
};
|
|
|
|
class ObjectLoader
|
|
{
|
|
public:
|
|
void load_obj(string filename);
|
|
void load_mtl(string filename);
|
|
|
|
vector<Face> faces;
|
|
|
|
protected:
|
|
Material* get_mtl_ptr(string mtl_name);
|
|
|
|
vector<Vertex> vertices;
|
|
vector<Normal> normals;
|
|
vector<Material> mtls;
|
|
};
|