blob: 8a4a1bc59b31da394bd927c28c05b13dd4807457 (
plain) (
blame)
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
|
#ifndef EXTRASMELTUTILS_H
#define EXTRASMELTUTILS_H
#include <vector>
#include <smelt.hpp>
#include <smmath.hpp>
class smEntity3D
{
friend class smEntity3DBuffer;
private:
std::vector<smVertex> vertices;
std::vector<WORD> indices;
public:
smEntity3D(){vertices.clear();indices.clear();}
~smEntity3D(){vertices.clear();indices.clear();}
void addVerices(int n,...);
void addIndices(int n,...);
static smEntity3D cube(smvec3d tl,smvec3d br,DWORD color);
};
class smEntity3DBuffer
{
private:
std::vector<smVertex> vertices;
std::vector<WORD> indices;
static SMELT* sm;
public:
smEntity3DBuffer();
~smEntity3DBuffer(){sm->smRelease();}
void addTransformedEntity(smEntity3D *entity,smMatrix t,smvec3d p);
void drawBatch();
};
extern smVertex makeVertex(float x,float y,float z,DWORD color,float tx,float ty);
#endif // EXTRASMELTUTILS_H
|