]> icculus.org git repositories - btb/d2x.git/blob - include/grdef.h
terrain and movie stuff always used now
[btb/d2x.git] / include / grdef.h
1 /* $Id: grdef.h,v 1.4 2002-07-30 11:05:53 btb Exp $ */
2 /*
3 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
4 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
5 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
6 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
7 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
8 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
9 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
10 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
11 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.  
12 COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
13 */
14 /*
15  *
16  * Internal definitions for graphics lib.
17  *
18  * Old Log:
19  *
20  * Revision 1.5  1995/09/14  15:36:33  allender
21  * added stuff for 68k version
22  *
23  * Revision 1.4  1995/07/05  16:10:57  allender
24  * gr_linear_movsd prototype changes
25  *
26  * Revision 1.3  1995/04/19  14:39:28  allender
27  * changed function prototype
28  *
29  * Revision 1.2  1995/04/18  09:49:53  allender
30  * *** empty log message ***
31  *
32  * Revision 1.1  1995/03/09  09:04:56  allender
33  * Initial revision
34  *
35  *
36  * --- PC RCS information ---
37  * Revision 1.8  1994/05/06  12:50:09  john
38  * Added supertransparency; neatend things up; took out warnings.
39  * 
40  * Revision 1.7  1994/01/25  11:40:29  john
41  * Added gr_check_mode function.
42  * 
43  * Revision 1.6  1993/10/15  16:22:53  john
44  * y
45  * 
46  * Revision 1.5  1993/09/29  17:31:00  john
47  * added gr_vesa_pixel
48  * 
49  * Revision 1.4  1993/09/29  16:14:43  john
50  * added global canvas descriptors.
51  * 
52  * Revision 1.3  1993/09/08  17:38:02  john
53  * Looking for errors
54  * 
55  * Revision 1.2  1993/09/08  15:54:29  john
56  * *** empty log message ***
57  * 
58  * Revision 1.1  1993/09/08  11:37:57  john
59  * Initial revision
60  * 
61  *
62  */
63 #define USE_2D_ASM 1
64  
65 void gr_init_bitmap_alloc( grs_bitmap *bm, int mode, int x, int y, int w, int h, int bytesperline);
66 void gr_init_sub_bitmap (grs_bitmap *bm, grs_bitmap *bmParent, int x, int y, int w, int h );
67 void gr_init_bitmap( grs_bitmap *bm, int mode, int x, int y, int w, int h, int bytesperline, unsigned char * data );
68
69 extern void gr_set_buffer(int w, int h, int r, int (*buffer_func)());
70
71 extern void gr_pal_setblock( int start, int n, unsigned char * palette );
72 extern void gr_pal_getblock( int start, int n, unsigned char * palette );
73 extern void gr_pal_setone( int index, unsigned char red, unsigned char green, unsigned char blue );
74
75 void gr_linear_movsb( ubyte * source, ubyte * dest, int nbytes);
76 void gr_linear_movsw( ubyte * source, ubyte * dest, int nbytes);
77 #if ( defined(__MWERKS__) && defined(__MC68K__) && defined(USE_2D_ASM) )
78 void gr_linear_movsd(ubyte * src:__A0, ubyte * dest:__A1, uint num_pixels:__D0 );
79 #else
80 void gr_linear_movsd( ubyte * source, ubyte * dest, unsigned int nbytes);
81 #endif
82 void gr_linear_rep_movsd_2x( ubyte * source, ubyte * dest, uint nbytes);
83 void gr_linear_stosd( ubyte * dest, unsigned char color, unsigned int nbytes);
84 extern unsigned int gr_var_color;
85 extern unsigned int gr_var_bwidth;
86 extern unsigned char * gr_var_bitmap;
87
88 void gr_linear_line( int x0, int y0, int x1, int y1);
89
90 extern unsigned int Table8to32[256];
91
92 #ifdef __DJGPP__
93 extern unsigned char * gr_video_memory;
94 #endif
95
96
97 #define MINX    0
98 #define MINY    0
99 #define MAXX    (GWIDTH-1)
100 #define MAXY    (GHEIGHT-1)
101 #define TYPE    grd_curcanv->cv_bitmap.bm_type
102 #define DATA    grd_curcanv->cv_bitmap.bm_data
103 #define XOFFSET grd_curcanv->cv_bitmap.bm_x
104 #define YOFFSET grd_curcanv->cv_bitmap.bm_y
105 #define ROWSIZE grd_curcanv->cv_bitmap.bm_rowsize
106 #define COLOR   grd_curcanv->cv_color
107
108 void order( int *x1, int *x2 );