101 lines
3.2 KiB
C
101 lines
3.2 KiB
C
/************************/
|
||
/* sprdisp.h */
|
||
/************************/
|
||
#ifndef _SPRDISP_H_
|
||
#define _SPRDISP_H_
|
||
|
||
#include "version.h"
|
||
#define DISP_BUFFER_SIZE 4096 // <20><>???????
|
||
enum{
|
||
DISP_PRIO_BG = 0, //背景
|
||
DISP_PRIO_TILE = 1, //地表// ????????䴘????????
|
||
DISP_PRIO_CHAR = 10, //人物// ???
|
||
DISP_PRIO_PARTS = 10, //建物// ?????<3F>??
|
||
DISP_PRIO_RESERVE = 20, //预留
|
||
DISP_PRIO_JIKI = 30, /* <20>? */
|
||
DISP_PRIO_GRID = 100, // ????????
|
||
DISP_PRIO_BOX, /* ???? */
|
||
DISP_PRIO_IME1, /* ???????????? ?<3F>? */
|
||
DISP_PRIO_IME2, /* ???????????? <20><>? */
|
||
/* ??????? */
|
||
DISP_PRIO_MENU, //选单/* ???? */
|
||
DISP_PRIO_IME3, /* ????????????? ?<3F>? */
|
||
DISP_PRIO_IME4, /* ????????????? <20><>? */
|
||
DISP_PRIO_BOX2, /* ????? */
|
||
DISP_PRIO_ITEM, /* ???? */
|
||
/* ???????? */
|
||
DISP_PRIO_YES_NO_WND, /* ?<3F>????? */
|
||
DISP_PRIO_YES_NO_BTN, /* ?<3F>??? */
|
||
DISP_PRIO_BOX3, /* ????? */
|
||
DISP_PRIO_DRAG, /* ????? */
|
||
DISP_PRIO_MOUSE, /* ??????? */
|
||
DISP_PRIO_TOP = 255 /* ??<3F> */
|
||
};
|
||
|
||
typedef struct {
|
||
int x, y; //秀图时的座标// <20><>?<3F>
|
||
int bmpNo; //图编号
|
||
ACTION *pAct; // 动作
|
||
BOOL hitFlag; // 十位数为 1:要显示alpha 2:饱和处理 3:石化 4:中毒
|
||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||
#ifdef _READ16BITBMP
|
||
char DrawEffect; // 0:无特别处理 1:alpha 2:饱和处理 3:石化 4:中毒
|
||
#endif
|
||
#ifdef _SFUMATO
|
||
int sfumato; // 二次渲染图层色彩
|
||
#endif
|
||
}DISP_INFO;
|
||
|
||
typedef struct {
|
||
short no; //这张图在DISP_INFO的位置// ?????<3F>??<3F>?
|
||
UCHAR dispPrio; //显示时的优先顺序// <20><>??<3F>??
|
||
}DISP_SORT;
|
||
|
||
typedef struct{
|
||
DISP_INFO DispInfo[ DISP_BUFFER_SIZE ];
|
||
DISP_SORT DispSort[ DISP_BUFFER_SIZE ];
|
||
short DispCnt; //目前储存数量//
|
||
}DISP_BUFFER;
|
||
extern DISP_BUFFER DispBuffer;
|
||
|
||
extern char *pRealBinBits;
|
||
extern int RealBinWidth, RealBinHeight;
|
||
#ifdef _READ16BITBMP
|
||
extern BYTE *pRealBinAlpha;
|
||
#endif
|
||
|
||
void DrawAlpha32(
|
||
unsigned long* lpDst, // 目标缓冲
|
||
unsigned long iDstX, // 目标位置
|
||
unsigned long iDstY, // 目标位置
|
||
unsigned long iDstPitch, // 目标缓冲的pitch
|
||
unsigned long* lpSrc, // 原色彩缓冲
|
||
unsigned long iSrcX, // 原色彩位置
|
||
unsigned long iSrcY, // 原色彩位置
|
||
unsigned long iSrcW, // 原缓冲的尺寸
|
||
unsigned long iSrcH, // 原缓冲的尺寸
|
||
unsigned long iSrcPitch // 原色彩pitch
|
||
);
|
||
|
||
void ablend_565(unsigned char *lpAlpha, unsigned int iAlpPitch,
|
||
unsigned char *lpSrc, unsigned int iSrcX, unsigned int iSrcY,
|
||
unsigned int iSrcPitch, unsigned char *lpDst,
|
||
unsigned int iDstX, unsigned int iDstY,
|
||
unsigned int iDstW, unsigned int iDstH,
|
||
unsigned int iDstPitch);
|
||
extern int SurfaceBusyFlag;
|
||
void SortDispBuffer( void );
|
||
BOOL 获取动画尺寸(ACTION* a0,short* wx,short* wy);
|
||
void PutBmp( void );
|
||
int StockDispBuffer( int x, int y, UCHAR prio, int bmpNo, BOOL hitFlag );
|
||
#ifdef _SFUMATO
|
||
int StockDispBuffer2( int x, int y, UCHAR dispPrio, int bmpNo, BOOL hitFlag, int sfumato/* = 0*/);
|
||
#else
|
||
int StockDispBuffer2( int x, int y, UCHAR dispPrio, int bmpNo, BOOL hitFlag );
|
||
#endif
|
||
void StockTaskDispBuffer( void );
|
||
void StockTaskDispBuffer2( int prio1, int prio2 );
|
||
void StockBoxDispBuffer( int x1, int y1, int x2, int y2, UCHAR dispPrio, int color, BOOL fill );
|
||
|
||
#endif
|