mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
51 lines
805 B
C++
51 lines
805 B
C++
#ifndef MODEL_H
|
|
#define MODEL_H
|
|
|
|
#include "vec3d.h"
|
|
#include "mpq.h"
|
|
#include "modelheaders.h"
|
|
#include <vector>
|
|
|
|
class Model;
|
|
class WMOInstance;
|
|
|
|
Vec3D fixCoordSystem(Vec3D v);
|
|
|
|
class Model
|
|
{
|
|
public:
|
|
ModelHeader header;
|
|
uint32 offsBB_vertices, offsBB_indices;
|
|
Vec3D *BB_vertices, *vertices;
|
|
uint16 *BB_indices, *indices;
|
|
size_t nIndices;
|
|
|
|
bool open();
|
|
bool ConvertToVMAPModel(char * outfilename);
|
|
|
|
bool ok;
|
|
|
|
Model(std::string &filename);
|
|
~Model();
|
|
|
|
private:
|
|
std::string filename;
|
|
char outfilename;
|
|
};
|
|
|
|
class ModelInstance
|
|
{
|
|
public:
|
|
Model *model;
|
|
|
|
int id;
|
|
Vec3D pos, rot;
|
|
unsigned int d1, scale;
|
|
float w,sc;
|
|
|
|
ModelInstance() {}
|
|
ModelInstance(MPQFile &f,const char* ModelInstName,const char*MapName, FILE *pDirfile);
|
|
|
|
};
|
|
|
|
#endif
|