mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-20 09:38:21 +00:00
svn -> git Migration
This commit is contained in:
@@ -0,0 +1,107 @@
|
||||
#ifndef __OPENEQ_THREED_BASE__
|
||||
#define __OPENEQ_THREED_BASE__
|
||||
|
||||
|
||||
#pragma pack(1)
|
||||
|
||||
|
||||
#include "archive.hpp"
|
||||
|
||||
#ifdef GLMODELVIEWER
|
||||
#include <gl\gl.h> // Header File For The OpenGL32 Library
|
||||
#endif
|
||||
|
||||
struct Light {
|
||||
float x, y, z;
|
||||
float r, g, b;
|
||||
float rad;
|
||||
} typedef Light;
|
||||
|
||||
struct Vertex {
|
||||
float x, y, z;
|
||||
float i, j, k;
|
||||
float u, v;
|
||||
|
||||
// int bone;
|
||||
|
||||
Vertex()
|
||||
{
|
||||
x = y = z = i = j = k = u = v = 0.0f;
|
||||
};
|
||||
|
||||
Vertex(float ix, float iy, float iz)
|
||||
{
|
||||
x = ix;
|
||||
y = iy;
|
||||
z = iz;
|
||||
}
|
||||
} typedef Vertex;
|
||||
|
||||
|
||||
struct Polygon {
|
||||
int flags;
|
||||
|
||||
int v1, v2, v3;
|
||||
|
||||
int tex;
|
||||
} typedef Polygon;
|
||||
|
||||
|
||||
struct Texture {
|
||||
Archive *archive;
|
||||
char frame_count;
|
||||
char current_frame;
|
||||
#ifdef GLMODELVIEWER
|
||||
GLuint *tex;
|
||||
#else
|
||||
int32 *tex;
|
||||
#endif
|
||||
char **filenames;
|
||||
|
||||
char flags;
|
||||
} typedef Texture;
|
||||
|
||||
class Model {
|
||||
public:
|
||||
Model() { IncludeInMap = false; verts = NULL; vert_count = 0; polys = NULL; poly_count = 0; tex = NULL; tex_count = 0; name = NULL; }
|
||||
~Model() {}
|
||||
|
||||
Vertex **verts;
|
||||
Polygon **polys;
|
||||
Texture **tex;
|
||||
|
||||
int vert_count, poly_count, tex_count;
|
||||
|
||||
char *name;
|
||||
bool IncludeInMap; // Include in EQEmu .map file
|
||||
};
|
||||
|
||||
|
||||
class Placeable {
|
||||
public:
|
||||
Placeable() {}
|
||||
|
||||
Placeable(int iModel, float ix, float iy, float iz, float irx, float iry, float irz, float iScale0, float iScale1, float iScale2)
|
||||
{
|
||||
model = iModel;
|
||||
x = ix;
|
||||
y = iy;
|
||||
z = iz;
|
||||
rx = irx;
|
||||
ry = iry;
|
||||
rz = irz;
|
||||
scale[0] = iScale0;
|
||||
scale[1] = iScale1;
|
||||
scale[2] = iScale2;
|
||||
}
|
||||
|
||||
float x, y, z;
|
||||
float rx, ry, rz;
|
||||
float scale[3];
|
||||
|
||||
int model;
|
||||
};
|
||||
|
||||
#pragma pack()
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user