dxx-rebirth/2d/ibitblt.c
2006-03-20 16:43:15 +00:00

217 lines
5.7 KiB
C
Executable file

/*
THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
SOFTWARE CORPORATION ("PARALLAX"). PARALLAX, IN DISTRIBUTING THE CODE TO
END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
IN USING, DISPLAYING, AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
FREE PURPOSES. IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES. THE END-USER UNDERSTANDS
AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
COPYRIGHT 1993-1998 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
* $Source: /cvsroot/dxx-rebirth/d1x-rebirth/2d/ibitblt.c,v $
* $Revision: 1.1.1.1 $
* $Author: zicodxx $
* $Date: 2006/03/17 19:38:56 $
*
* Routines to to inverse bitblitting -- well not really.
* We don't inverse bitblt like in the PC, but this code
* does set up a structure that blits around the cockpit
*
* $Log: ibitblt.c,v $
* Revision 1.1.1.1 2006/03/17 19:38:56 zicodxx
* initial import
*
* Revision 1.2 1999/08/05 22:53:40 sekmu
*
* D3D patch(es) from ADB
*
* Revision 1.1.1.1 1999/06/14 21:57:24 donut
* Import of d1x 1.37 source.
*
* Revision 1.3 1995/09/13 11:43:22 allender
* start on optimizing cockpit copy code
*
* Revision 1.2 1995/09/07 10:16:57 allender
* fixed up cockpit and rearview hole blitting
*
* Revision 1.1 1995/08/18 15:50:48 allender
* Initial revision
*
*/
#include <stdlib.h>
#include <string.h>
#include "types.h"
#include "gr.h"
#include "grdef.h"
#include "ibitblt.h"
#include "error.h"
//added 05/17/99 Matt Mueller
#include "u_mem.h"
//end addition -MM
#define FIND_START 1
#define FIND_STOP 2
#define MAX_WIDTH 640
#define MAX_SCANLINES 480
#define MAX_HOLES 5
static short start_points[MAX_SCANLINES][MAX_HOLES];
static short hole_length[MAX_SCANLINES][MAX_HOLES];
static double *scanline = NULL;
// adb: gr_linear_movsd assumes c >= 4
#define gr_linear_movsd(s,d,c) memcpy(d,s,c)
void gr_ibitblt(grs_bitmap *src_bmp, grs_bitmap *dest_bmp, ubyte pixel_double)
{
int x, y, sw, sh, srowsize, drowsize, dstart, sy, dy;
ubyte *src, *dest;
short *current_hole, *current_hole_length;
// variable setup
sw = src_bmp->bm_w;
sh = src_bmp->bm_h;
srowsize = src_bmp->bm_rowsize;
drowsize = dest_bmp->bm_rowsize;
src = src_bmp->bm_data;
dest = dest_bmp->bm_data;
sy = 0;
while (start_points[sy][0] == -1) {
sy++;
dest += drowsize;
}
if (pixel_double) {
ubyte *scan = (ubyte *)scanline; // set up for byte processing of scanline
dy = sy;
for (y = sy; y < sy + sh; y++) {
gr_linear_rep_movsd_2x(src, scan, sw);
current_hole = start_points[dy];
current_hole_length = hole_length[dy];
for (x = 0; x < MAX_HOLES; x++) {
if (*current_hole == -1)
break;
dstart = *current_hole;
gr_linear_movsd(&(scan[dstart]), &(dest[dstart]), *current_hole_length);
current_hole++;
current_hole_length++;
}
dy++;
dest += drowsize;
current_hole = start_points[dy];
current_hole_length = hole_length[dy];
for (x = 0;x < MAX_HOLES; x++) {
if (*current_hole == -1)
break;
dstart = *current_hole;
gr_linear_movsd(&(scan[dstart]), &(dest[dstart]), *current_hole_length);
current_hole++;
current_hole_length++;
}
dy++;
dest += drowsize;
src += srowsize;
}
} else {
Assert(sw <= MAX_WIDTH);
Assert(sh <= MAX_SCANLINES);
for (y = sy; y < sy + sh; y++) {
for (x = 0; x < MAX_HOLES; x++) {
if (start_points[y][x] == -1)
break;
dstart = start_points[y][x];
gr_linear_movsd(&(src[dstart]), &(dest[dstart]), hole_length[y][x]);
}
dest += drowsize;
src += srowsize;
}
}
}
void gr_ibitblt_create_mask(grs_bitmap *mask_bmp, int sx, int sy, int sw, int sh, int srowsize)
{
int x, y;
ubyte mode;
int count = 0;
Assert( (!(mask_bmp->bm_flags&BM_FLAG_RLE)) );
for (y = 0; y < MAX_SCANLINES; y++) {
for (x = 0; x < MAX_HOLES; x++) {
start_points[y][x] = -1;
hole_length[y][x] = -1;
}
}
for (y = sy; y < sy+sh; y++) {
count = 0;
mode = FIND_START;
for (x = sx; x < sx + sw; x++) {
if ((mode == FIND_START) && (mask_bmp->bm_data[mask_bmp->bm_rowsize*y+x] == TRANSPARENCY_COLOR)) {
start_points[y][count] = x;
mode = FIND_STOP;
} else if ((mode == FIND_STOP) && (mask_bmp->bm_data[mask_bmp->bm_rowsize*y+x] != TRANSPARENCY_COLOR)) {
hole_length[y][count] = x - start_points[y][count];
count++;
mode = FIND_START;
}
}
if (mode == FIND_STOP) {
hole_length[y][count] = x - start_points[y][count];
count++;
}
Assert(count <= MAX_HOLES);
}
}
//added 7/11/99 by adb to prevent memleaks
static void free_scanline(void)
{
if (scanline) free(scanline);
}
//end additions - adb
void gr_ibitblt_find_hole_size(grs_bitmap *mask_bmp, int *minx, int *miny, int *maxx, int *maxy)
{
ubyte c;
int x, y, count = 0;
Assert( (!(mask_bmp->bm_flags&BM_FLAG_RLE)) );
Assert( mask_bmp->bm_flags&BM_FLAG_TRANSPARENT );
*minx = mask_bmp->bm_w - 1;
*maxx = 0;
*miny = mask_bmp->bm_h - 1;
*maxy = 0;
//changed 7/11/99 by adb to prevent memleaks
if (scanline == NULL) {
scanline = (double *)malloc(sizeof(double) * (MAX_WIDTH / sizeof(double)));
atexit(free_scanline);
}
//end changes - adb
for (y = 0; y < mask_bmp->bm_h; y++) {
for (x = 0; x < mask_bmp->bm_w; x++) {
c = mask_bmp->bm_data[mask_bmp->bm_rowsize*y+x];
if (c == TRANSPARENCY_COLOR) { // don't look for transparancy color here.
count++;
if (x < *minx) *minx = x;
if (y < *miny) *miny = y;
if (x > *maxx) *maxx = x;
if (y > *maxy) *maxy = y;
}
}
}
Assert (count);
}