2007-01-15 12:09:25 -08:00
|
|
|
/*
|
|
|
|
This file is part of Warzone 2100.
|
|
|
|
Copyright (C) 1999-2004 Eidos Interactive
|
|
|
|
Copyright (C) 2005-2007 Warzone Resurrection Project
|
|
|
|
|
|
|
|
Warzone 2100 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.
|
|
|
|
|
|
|
|
Warzone 2100 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 Warzone 2100; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
2007-06-28 10:47:08 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
/*
|
|
|
|
* pieBlitFunc.h
|
|
|
|
*
|
|
|
|
* patch for exisitng ivis rectangle draw functions.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _pieBlitFunc_h
|
|
|
|
#define _pieBlitFunc_h
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
|
2006-05-27 09:37:17 -07:00
|
|
|
#include "lib/framework/frame.h"
|
2007-06-28 10:47:08 -07:00
|
|
|
#include "piedef.h"
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
/*
|
|
|
|
* Global Definitions
|
|
|
|
*/
|
|
|
|
/***************************************************************************/
|
|
|
|
#define BACKDROP_WIDTH 640
|
|
|
|
#define BACKDROP_HEIGHT 480
|
|
|
|
|
2007-02-25 04:57:04 -08:00
|
|
|
/* These are Qamly's hacks used for map previews. They need to be power of
|
|
|
|
* two sized until we clean up this mess properly. */
|
|
|
|
#define BACKDROP_HACK_WIDTH 512
|
|
|
|
#define BACKDROP_HACK_HEIGHT 512
|
|
|
|
|
2007-06-28 10:47:08 -07:00
|
|
|
/***************************************************************************/
|
|
|
|
/*
|
|
|
|
* Global Variables
|
|
|
|
*/
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
/*
|
|
|
|
* Global ProtoTypes
|
|
|
|
*/
|
|
|
|
/***************************************************************************/
|
2007-12-09 08:09:23 -08:00
|
|
|
extern void pie_Line(int x0, int y0, int x1, int y1, PIELIGHT colour);
|
|
|
|
extern void pie_Box(int x0,int y0, int x1, int y1, PIELIGHT colour);
|
2007-11-26 13:48:36 -08:00
|
|
|
extern void pie_BoxFill(int x0,int y0, int x1, int y1, PIELIGHT colour);
|
2007-06-18 07:25:06 -07:00
|
|
|
extern void pie_ImageFileID(IMAGEFILE *ImageFile, UWORD ID, int x, int y);
|
|
|
|
extern void pie_ImageFileIDTile(IMAGEFILE *ImageFile, UWORD ID, int x, int y, int Width, int Height);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
extern void pie_TransBoxFill(SDWORD x0, SDWORD y0, SDWORD x1, SDWORD y1);
|
2007-11-25 13:15:08 -08:00
|
|
|
extern void pie_UniTransBoxFill(SDWORD x0,SDWORD y0, SDWORD x1, SDWORD y1, PIELIGHT colour);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
extern BOOL pie_InitRadar(void);
|
|
|
|
extern BOOL pie_ShutdownRadar(void);
|
2008-02-04 10:03:02 -08:00
|
|
|
extern void pie_DownLoadRadar(UDWORD *buffer, int width, int height);
|
|
|
|
extern void pie_RenderRadar(int x, int y, int width, int height);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2007-06-27 05:30:29 -07:00
|
|
|
extern void pie_UploadDisplayBuffer(void);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
|
|
|
typedef enum _screenType
|
|
|
|
{
|
|
|
|
SCREEN_RANDOMBDROP,
|
|
|
|
SCREEN_CREDITS,
|
|
|
|
SCREEN_MISSIONEND,
|
|
|
|
} SCREENTYPE;
|
|
|
|
|
2006-12-31 10:19:19 -08:00
|
|
|
extern void pie_LoadBackDrop(SCREENTYPE screenType);
|
2007-06-28 10:47:08 -07:00
|
|
|
|
2006-05-27 09:37:17 -07:00
|
|
|
#endif //
|