]> icculus.org git repositories - btb/d2x.git/blob - include/grdef.h
okay, maybe it needs to be this way
[btb/d2x.git] / include / grdef.h
1 /* $Id: grdef.h,v 1.8 2002-09-05 01:30:00 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  *
17  * Internal definitions for graphics lib.
18  *
19  * Old Log:
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 void gr_init_bitmap_alloc( grs_bitmap *bm, int mode, int x, int y, int w, int h, int bytesperline);
64 void gr_init_sub_bitmap (grs_bitmap *bm, grs_bitmap *bmParent, int x, int y, int w, int h );
65 void gr_init_bitmap( grs_bitmap *bm, int mode, int x, int y, int w, int h, int bytesperline, unsigned char * data );
66
67 extern void gr_set_buffer(int w, int h, int r, int (*buffer_func)());
68
69 extern void gr_pal_setblock( int start, int n, unsigned char * palette );
70 extern void gr_pal_getblock( int start, int n, unsigned char * palette );
71 extern void gr_pal_setone( int index, unsigned char red, unsigned char green, unsigned char blue );
72
73 void gr_linear_movsb( ubyte * source, ubyte * dest, int nbytes);
74 void gr_linear_movsw( ubyte * source, ubyte * dest, int nbytes);
75 void gr_linear_stosd( ubyte * dest, unsigned char color, unsigned int nbytes);
76
77 extern unsigned int gr_var_color;
78 extern unsigned int gr_var_bwidth;
79 extern unsigned char * gr_var_bitmap;
80
81 void gr_linear_movsd( ubyte * source, ubyte * dest, unsigned int nbytes);
82
83 void gr_linear_line( int x0, int y0, int x1, int y1);
84
85 extern unsigned int Table8to32[256];
86
87 #ifdef __MSDOS__
88 extern unsigned char * gr_video_memory;
89 #endif
90
91
92 #define MINX    0
93 #define MINY    0
94 #define MAXX    (GWIDTH-1)
95 #define MAXY    (GHEIGHT-1)
96 #define TYPE    grd_curcanv->cv_bitmap.bm_type
97 #define DATA    grd_curcanv->cv_bitmap.bm_data
98 #define XOFFSET grd_curcanv->cv_bitmap.bm_x
99 #define YOFFSET grd_curcanv->cv_bitmap.bm_y
100 #define ROWSIZE grd_curcanv->cv_bitmap.bm_rowsize
101 #define COLOR   grd_curcanv->cv_color
102
103 void order( int *x1, int *x2 );