SBSPSS/Utils/MapEdit/utils.h

56 lines
1.6 KiB
C
Raw Normal View History

2000-09-25 17:43:52 +02:00
/*************/
/*** Utils ***/
/*************/
#ifndef __UTILS_HEADER__
#define __UTILS_HEADER__
2000-10-27 02:06:19 +02:00
#include "maths.h"
2000-11-24 23:34:20 +01:00
#include <gl\gl.h>
#include <gl\glu.h>
#include <gl\glut.h>
#include <gl\glaux.h> // Header File For The Glaux Library
2000-10-27 02:06:19 +02:00
2000-11-24 23:34:20 +01:00
/**************************************************************************************/
typedef signed char s8;
typedef signed short s16;
typedef signed long s32;
//typedef long long s64;
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned long u32;
//typedef unsigned long long u64;
typedef s8 S8;
typedef s16 S16;
typedef s32 S32;
//typedef s64 S64;
typedef u8 U8;
typedef u16 U16;
typedef u32 U32;
//typedef u64 U64;
2000-09-25 17:43:52 +02:00
/**************************************************************************************/
void DbgMsg(const char * pszFmt,...);
2000-10-27 20:18:30 +02:00
2000-09-25 17:43:52 +02:00
void BuildGLBox(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMax);
void BuildGLBoxNoNormals(float XMin,float XMax,float YMin,float YMax,float ZMin,float ZMax);
2000-10-25 23:00:54 +02:00
void BuildGLQuad(float XMin,float XMax,float YMin,float YMax,float Z);
2000-11-22 23:08:47 +01:00
int LoadGLTexture(char *FileName, GLuint &Text,int &Width,int &Height);
2000-09-25 17:43:52 +02:00
2000-10-27 02:06:19 +02:00
void TNormalise(TVECTOR &V);
TVECTOR TCrossProduct(TVECTOR const &V0,TVECTOR const &V1,const TVECTOR &V2 );
2000-11-17 22:36:13 +01:00
CPoint IDToPoint(int ID,int Width);
int PointToID(CPoint &Pnt,int Width);
2000-11-24 23:34:20 +01:00
void SaveTGA(char *Filename,int W,int H,u8 *Data);
void SaveBmp(char *Filename,int Width,int Height,RGBQUAD *Pal,u8 *Image);
void BGR2RGB(int W,int H,u8 *Data);
2000-11-28 00:07:07 +01:00
void SetFileExt(char *InName,char *OutName,char *Ext);
2000-11-22 23:08:47 +01:00
2000-09-25 17:43:52 +02:00
#endif