/* * cg.h load and display cg * * Copyright (C) 1997-1998 Masaki Chikama (Wren) * 1998- * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * */ /* $Id: cg.h,v 1.14 2001/09/16 15:59:11 chikama Exp $ */ #ifndef __CG__ #define __CG__ #include "portab.h" #include "graphics.h" /* * available cg format id */ typedef enum { ALCG_UNKNOWN = 1, ALCG_VSP = 2, ALCG_PMS8 = 3, ALCG_PMS16 = 4, ALCG_BMP8 = 5, ALCG_BMP24 = 6, ALCG_QNT = 7 } CG_TYPE; /* * information for display cg data */ typedef struct { CG_TYPE type; /* cg format type */ int x; /* default display location x */ int y; /* default display location y */ int width; /* image width */ int height; /* image height */ BYTE *pic; /* extracted pixel data */ BYTE *alpha; /* extracted alpha data if exists */ Pallet256 *pal; /* extracted pallet data if exists */ int vsp_bank; /* pallet bank for vsp */ int pms_bank; /* pallet bank for pms */ int spritecolor; /* sprite color for vsp and pms8 */ int alphalevel; /* alpha level of image */ int data_offset; /* pic offset for clipping */ } cgdata; /* * location for draw image policy */ typedef enum { OFFSET_NOMOVE, /* use location in data */ OFFSET_ABSOLUTE_GC, /* absolute location and use only once */ OFFSET_ABSOLUTE_JC, /* absolute location and use til J4 cmd */ OFFSET_RELATIVE_GC, /* relative location and use only once */ OFFSET_RELATIVE_JC /* relative location and use til J4 cmd */ } CG_WHERETODISP; extern void cg_init(); extern void cg_set_display_location(int x, int y, CG_WHERETODISP policy); extern void cg_load(int no, int flg); extern void cg_load_with_alpha(int cgno, int shadowno); extern int cg_load_with_filename(char *name, int x, int y); extern void cg_get_info(int no, MyRectangle *info); extern cgdata *cg_loadonly(int no); extern void cg_clear_display_loc(); extern int cg_vspPB; extern int cg_fflg; extern int *cg_loadCountVar; extern int cg_alphaLevel; #endif /* !__CG__ */