SBSPSS/source/gfx/tpage.h

51 lines
947 B
C
Raw Normal View History

2000-08-29 21:54:22 +02:00
/**********************/
/*** PSX Vram Stuff ***/
/**********************/
2000-08-29 22:16:17 +02:00
#ifndef __TPAGE_H__
#define __TPAGE_H__
2000-08-29 21:54:22 +02:00
2000-08-29 22:16:17 +02:00
#ifndef __FILE_EQUATES_H__
2000-08-29 21:54:22 +02:00
#include <BigLump.h>
2000-08-29 22:16:17 +02:00
#endif
2000-08-29 21:54:22 +02:00
/*************************************************************************************************/
#define TPAGE_MAX_ANIM_TEX 8
typedef struct
{
u16 NoOfFrames,NoOfTPages;
u16 TPageStart;
u16 TPageWidth,TPageHeightInPixels;
u16 NumOfSpareBoxes;
u16 Compress,Pad;
} sTPageHdr;
typedef struct
{
u16 TPage;
u16 Clut;
s8 XOfs,YOfs;
u8 W,H;
u8 U,V;
u8 Rotated;
u8 Cycle;
} sFrameHdr;
struct TPAGE_DESC
{
u8 Half;
u8 tpage;
u8 xoffset;
u8 yoffset;
};
/********************************************************************************************************/
void TPInit();
TPAGE_DESC TPLoadTex(FileEquate Filename);
TPAGE_DESC TPLoadTexWithHeaders( FileEquate Filename, sFrameHdr **hdrs );
void TPFree( const TPAGE_DESC & desc ,int blah=0);
#endif