X-Git-Url: https://git.jsancho.org/?a=blobdiff_plain;f=Source%2FModels.h;h=a82f85d04287ec55a750fddebfb80ed5364da274;hb=26debbd380c6922e5a0b60d99567c6374a4fef9a;hp=caad18ed653699c7b1c6436153dafe2ae99a6401;hpb=af283344ca70f7fbe9abd0d269511bc4ec3ff4bf;p=lugaru.git diff --git a/Source/Models.h b/Source/Models.h index caad18e..a82f85d 100644 --- a/Source/Models.h +++ b/Source/Models.h @@ -35,6 +35,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #include "Terrain.h" #include "binio.h" #include "Quaternions.h" +#include "Texture.h" // // Textures List @@ -85,8 +86,8 @@ public: TexturedTriangle Triangles[max_textured_triangle]; GLfloat vArray[max_textured_triangle*24];*/ - GLuint textureptr; - ModelTexture Texture; + Texture textureptr; + ModelTexture modelTexture; int numpossible; bool color; @@ -116,7 +117,7 @@ public: void DeleteDecal(int which); void MakeDecal(int atype, XYZ *where, float *size, float *opacity, float *rotation); void MakeDecal(int atype, XYZ where, float size, float opacity, float rotation); - void drawdecals(GLuint shadowtexture,GLuint bloodtexture,GLuint bloodtexture2,GLuint breaktexture); + void drawdecals(Texture shadowtexture,Texture bloodtexture,Texture bloodtexture2,Texture breaktexture); int SphereCheck(XYZ *p1,float radius, XYZ *p, XYZ *move, float *rotate); int SphereCheckPossible(XYZ *p1,float radius, XYZ *move, float *rotate); int LineCheck(XYZ *p1,XYZ *p2, XYZ *p, XYZ *move, float *rotate); @@ -139,6 +140,7 @@ public: void CalculateNormals(bool facenormalise); void draw(); void drawdifftex(GLuint texture); + void drawdifftex(Texture texture); void drawimmediate(); void drawdiffteximmediate(GLuint texture); void Rotate(float xang,float yang,float zang);