dxx-rebirth/common/2d/bitblt.cpp

596 lines
16 KiB
C++
Raw Normal View History

2006-03-20 17:12:09 +00:00
/*
2014-06-01 17:55:23 +00:00
* Portions of this file are copyright Rebirth contributors and licensed as
* described in COPYING.txt.
* Portions of this file are copyright Parallax Software and licensed
* according to the Parallax license below.
* See COPYING.txt for license details.
2006-03-20 17:12:09 +00:00
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-1999 PARALLAX SOFTWARE CORPORATION. ALL RIGHTS RESERVED.
*/
/*
*
* Routines for bitblt's.
*
*/
2006-03-20 17:12:09 +00:00
2014-08-08 02:44:27 +00:00
#include <algorithm>
2014-07-01 00:23:30 +00:00
#include <utility>
#include <string.h>
2006-03-20 17:12:09 +00:00
#include "u_mem.h"
#include "gr.h"
#include "grdef.h"
#include "rle.h"
#include "dxxerror.h"
#include "byteutil.h"
2006-03-20 17:12:09 +00:00
#ifdef OGL
#include "ogl_init.h"
#endif
2014-07-01 02:30:39 +00:00
#include "compiler-array.h"
2013-06-08 23:35:21 +00:00
static int gr_bitblt_dest_step_shift = 0;
static ubyte *gr_bitblt_fade_table=NULL;
2006-03-20 17:12:09 +00:00
2014-11-30 22:09:19 +00:00
static void gr_bm_ubitblt00_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest);
2014-11-30 22:09:22 +00:00
static void gr_bm_ubitblt00m_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest);
2014-11-30 22:09:22 +00:00
static void gr_bm_ubitblt0x_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest);
2006-03-20 17:12:09 +00:00
#define gr_linear_movsd(S,D,L) memcpy(D,S,L)
2006-03-20 17:12:09 +00:00
static void gr_linear_rep_movsdm(const ubyte *src, ubyte *dest, int num_pixels) {
register ubyte c;
while (num_pixels--)
if ((c=*src++)!=255)
*dest++=c;
else dest++;
2006-03-20 17:12:09 +00:00
}
static void gr_linear_rep_movsdm_faded(const ubyte * src, ubyte * dest, int num_pixels, ubyte fade_value ) {
2014-08-08 02:44:27 +00:00
auto predicate = [&](ubyte s, ubyte d) {
return s == 255 ? d : gr_fade_table[fade_value][s];
};
std::transform(src, src + num_pixels, dest, dest, predicate);
2006-03-20 17:12:09 +00:00
}
2014-11-30 22:09:19 +00:00
static void gr_ubitmap00(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
int dest_rowsize;
dest_rowsize=grd_curcanv->cv_bitmap.bm_rowsize << gr_bitblt_dest_step_shift;
2014-12-02 03:24:38 +00:00
auto dest = &(grd_curcanv->cv_bitmap.get_bitmap_data()[ dest_rowsize*y+x ]);
auto src = bm.get_bitmap_data();
2006-03-20 17:12:09 +00:00
2014-11-30 22:09:19 +00:00
for (int y1=0; y1 < bm.bm_h; y1++ ) {
gr_linear_movsd( src, dest, bm.bm_w );
src += bm.bm_rowsize;
2006-03-20 17:12:09 +00:00
dest+= (int)(dest_rowsize);
}
}
2014-11-30 22:09:22 +00:00
static void gr_ubitmap00m(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
int dest_rowsize;
dest_rowsize=grd_curcanv->cv_bitmap.bm_rowsize << gr_bitblt_dest_step_shift;
2014-12-02 03:24:38 +00:00
auto dest = &(grd_curcanv->cv_bitmap.get_bitmap_data()[ dest_rowsize*y+x ]);
auto src = bm.get_bitmap_data();
2006-03-20 17:12:09 +00:00
if (gr_bitblt_fade_table==NULL) {
2014-11-30 22:09:22 +00:00
for (int y1=0; y1 < bm.bm_h; y1++ ) {
gr_linear_rep_movsdm( src, dest, bm.bm_w );
src += bm.bm_rowsize;
2006-03-20 17:12:09 +00:00
dest+= (int)(dest_rowsize);
}
} else {
2014-11-30 22:09:22 +00:00
for (int y1=0; y1 < bm.bm_h; y1++ ) {
gr_linear_rep_movsdm_faded( src, dest, bm.bm_w, gr_bitblt_fade_table[y1+y] );
src += bm.bm_rowsize;
2006-03-20 17:12:09 +00:00
dest+= (int)(dest_rowsize);
}
}
}
2014-11-30 22:09:18 +00:00
static void gr_ubitmap012(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
2014-11-30 22:09:18 +00:00
auto src = bm.bm_data;
for (int y1=y; y1 < (y+bm.bm_h); y1++ ) {
for (int x1=x; x1 < (x+bm.bm_w); x1++ ) {
2006-03-20 17:12:09 +00:00
gr_setcolor( *src++ );
gr_upixel( x1, y1 );
}
}
}
2014-11-30 22:09:18 +00:00
static void gr_ubitmap012m(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
2014-11-30 22:09:18 +00:00
auto src = bm.bm_data;
for (int y1=y; y1 < (y+bm.bm_h); y1++ ) {
for (int x1=x; x1 < (x+bm.bm_w); x1++ ) {
if ( *src != 255 ) {
2006-03-20 17:12:09 +00:00
gr_setcolor( *src );
gr_upixel( x1, y1 );
}
src++;
}
}
}
2014-11-30 22:09:19 +00:00
static void gr_ubitmapGENERIC(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
2014-11-30 22:09:19 +00:00
for (int y1=0; y1 < bm.bm_h; y1++ ) {
for (int x1=0; x1 < bm.bm_w; x1++ ) {
gr_setcolor( gr_gpixel(bm,x1,y1) );
2006-03-20 17:12:09 +00:00
gr_upixel( x+x1, y+y1 );
}
}
}
2014-11-30 22:09:19 +00:00
static void gr_ubitmapGENERICm(unsigned x, unsigned y, const grs_bitmap &bm)
2006-03-20 17:12:09 +00:00
{
ubyte c;
2014-11-30 22:09:19 +00:00
for (int y1=0; y1 < bm.bm_h; y1++ ) {
for (int x1=0; x1 < bm.bm_w; x1++ ) {
c = gr_gpixel(bm,x1,y1);
if ( c != 255 ) {
2006-03-20 17:12:09 +00:00
gr_setcolor( c );
gr_upixel( x+x1, y+y1 );
}
}
}
}
2014-11-30 22:09:19 +00:00
void gr_ubitmap(grs_bitmap &bm)
{ int source, dest;
2014-11-30 22:09:19 +00:00
const unsigned x = 0;
const unsigned y = 0;
2014-11-30 22:09:19 +00:00
source = bm.bm_type;
dest = TYPE;
if (source==BM_LINEAR) {
switch( dest )
{
case BM_LINEAR:
2014-11-30 22:09:19 +00:00
if ( bm.bm_flags & BM_FLAG_RLE )
gr_bm_ubitblt00_rle(bm.bm_w, bm.bm_h, x, y, 0, 0, bm, grd_curcanv->cv_bitmap );
else
gr_ubitmap00( x, y, bm );
return;
#ifdef OGL
case BM_OGL:
2014-11-30 22:09:19 +00:00
ogl_ubitmapm_cs(x,y,-1,-1,bm,-1,F1_0);
return;
#endif
default:
2014-11-30 22:09:19 +00:00
gr_ubitmap012( x, y, bm );
return;
}
} else {
2014-11-30 22:09:19 +00:00
gr_ubitmapGENERIC(x, y, bm);
}
}
2014-12-02 03:35:01 +00:00
void gr_ubitmapm(unsigned x, unsigned y, grs_bitmap &bm)
{
auto source = bm.bm_type;
auto dest = TYPE;
if (source==BM_LINEAR) {
switch( dest )
{
case BM_LINEAR:
2014-12-02 03:35:01 +00:00
if ( bm.bm_flags & BM_FLAG_RLE )
gr_bm_ubitblt00m_rle(bm.bm_w, bm.bm_h, x, y, 0, 0, bm, grd_curcanv->cv_bitmap );
else
2014-12-02 03:35:01 +00:00
gr_ubitmap00m(x, y, bm);
return;
#ifdef OGL
case BM_OGL:
2014-12-02 03:35:01 +00:00
ogl_ubitmapm_cs(x,y,-1,-1,bm,-1,F1_0);
return;
#endif
default:
2014-12-02 03:35:01 +00:00
gr_ubitmap012m( x, y, bm );
return;
}
} else {
2014-12-02 03:35:01 +00:00
gr_ubitmapGENERICm(x, y, bm);
}
}
2006-03-20 17:12:09 +00:00
// From Linear to Linear
2014-12-02 03:35:01 +00:00
static void gr_bm_ubitblt00(unsigned w, unsigned h, unsigned dx, unsigned dy, unsigned sx, unsigned sy, const grs_bitmap &src, grs_bitmap &dest)
2006-03-20 17:12:09 +00:00
{
//int src_bm_rowsize_2, dest_bm_rowsize_2;
2014-12-02 03:35:01 +00:00
auto sbits = &src.get_bitmap_data()[(src.bm_rowsize * sy) + sx];
auto dbits = &dest.get_bitmap_data()[(dest.bm_rowsize * dy) + dx];
auto dstep = dest.bm_rowsize << gr_bitblt_dest_step_shift;
2006-03-20 17:12:09 +00:00
// No interlacing, copy the whole buffer.
2014-12-02 03:35:01 +00:00
for (unsigned i=0; i < h; i++ ) {
gr_linear_movsd( sbits, dbits, w );
//memcpy(dbits, sbits, w);
2014-12-02 03:35:01 +00:00
sbits += src.bm_rowsize;
dbits += dstep;
}
2006-03-20 17:12:09 +00:00
}
2006-03-20 17:12:09 +00:00
// From Linear to Linear Masked
2014-12-02 03:35:01 +00:00
static void gr_bm_ubitblt00m(unsigned w, unsigned h, unsigned dx, unsigned dy, unsigned sx, unsigned sy, const grs_bitmap &src, grs_bitmap &dest)
2006-03-20 17:12:09 +00:00
{
//int src_bm_rowsize_2, dest_bm_rowsize_2;
2014-12-02 03:35:01 +00:00
auto sbits = &src.get_bitmap_data()[(src.bm_rowsize * sy) + sx];
auto dbits = &dest.get_bitmap_data()[(dest.bm_rowsize * dy) + dx];
2006-03-20 17:12:09 +00:00
// No interlacing, copy the whole buffer.
if (gr_bitblt_fade_table==NULL) {
for (int i=0; i < h; i++ ) {
2006-03-20 17:12:09 +00:00
gr_linear_rep_movsdm( sbits, dbits, w );
2014-12-02 03:35:01 +00:00
sbits += src.bm_rowsize;
dbits += dest.bm_rowsize;
2006-03-20 17:12:09 +00:00
}
} else {
for (int i=0; i < h; i++ ) {
2006-03-20 17:12:09 +00:00
gr_linear_rep_movsdm_faded( sbits, dbits, w, gr_bitblt_fade_table[dy+i] );
2014-12-02 03:35:01 +00:00
sbits += src.bm_rowsize;
dbits += dest.bm_rowsize;
2006-03-20 17:12:09 +00:00
}
}
}
void gr_bm_bitblt(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest)
2006-03-20 17:12:09 +00:00
{
int dx1=dx, dx2=dx+dest->bm_w-1;
int dy1=dy, dy2=dy+dest->bm_h-1;
2006-03-20 17:12:09 +00:00
int sx1=sx, sx2=sx+src->bm_w-1;
int sy1=sy, sy2=sy+src->bm_h-1;
2006-03-20 17:12:09 +00:00
if ((dx1 >= dest->bm_w ) || (dx2 < 0)) return;
if ((dy1 >= dest->bm_h ) || (dy2 < 0)) return;
if ( dx1 < 0 ) { sx1 += -dx1; dx1 = 0; }
if ( dy1 < 0 ) { sy1 += -dy1; dy1 = 0; }
if ( dx2 >= dest->bm_w ) { dx2 = dest->bm_w-1; }
if ( dy2 >= dest->bm_h ) { dy2 = dest->bm_h-1; }
2006-03-20 17:12:09 +00:00
if ((sx1 >= src->bm_w ) || (sx2 < 0)) return;
if ((sy1 >= src->bm_h ) || (sy2 < 0)) return;
if ( sx1 < 0 ) { dx1 += -sx1; sx1 = 0; }
if ( sy1 < 0 ) { dy1 += -sy1; sy1 = 0; }
if ( sx2 >= src->bm_w ) { sx2 = src->bm_w-1; }
if ( sy2 >= src->bm_h ) { sy2 = src->bm_h-1; }
2006-03-20 17:12:09 +00:00
// Draw bitmap bm[x,y] into (dx1,dy1)-(dx2,dy2)
if ( dx2-dx1+1 < w )
w = dx2-dx1+1;
if ( dy2-dy1+1 < h )
h = dy2-dy1+1;
if ( sx2-sx1+1 < w )
w = sx2-sx1+1;
if ( sy2-sy1+1 < h )
h = sy2-sy1+1;
2006-03-20 17:12:09 +00:00
2014-12-02 03:35:01 +00:00
gr_bm_ubitblt(w,h, dx1, dy1, sx1, sy1, *src, *dest );
2006-03-20 17:12:09 +00:00
}
2014-12-02 03:35:01 +00:00
void gr_bm_ubitblt(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest)
2006-03-20 17:12:09 +00:00
{
2014-12-02 03:35:01 +00:00
if ( (src.bm_type == BM_LINEAR) && (dest.bm_type == BM_LINEAR ))
2006-03-20 17:12:09 +00:00
{
2014-12-02 03:35:01 +00:00
if ( src.bm_flags & BM_FLAG_RLE )
gr_bm_ubitblt00_rle( w, h, dx, dy, sx, sy, src, dest );
2006-03-20 17:12:09 +00:00
else
2014-12-02 03:35:01 +00:00
gr_bm_ubitblt00( w, h, dx, dy, sx, sy, src, dest );
2006-03-20 17:12:09 +00:00
return;
}
#ifdef OGL
2014-12-02 03:35:01 +00:00
if ( (src.bm_type == BM_LINEAR) && (dest.bm_type == BM_OGL ))
2006-03-20 17:12:09 +00:00
{
2014-12-02 03:35:01 +00:00
ogl_ubitblt(w, h, dx, dy, sx, sy, src, dest);
2006-03-20 17:12:09 +00:00
return;
}
2014-12-02 03:35:01 +00:00
if ( (src.bm_type == BM_OGL) && (dest.bm_type == BM_LINEAR ))
2006-03-20 17:12:09 +00:00
{
return;
}
2014-12-02 03:35:01 +00:00
if ( (src.bm_type == BM_OGL) && (dest.bm_type == BM_OGL ))
2006-03-20 17:12:09 +00:00
{
return;
}
#endif
2014-12-02 03:35:01 +00:00
if ( (src.bm_flags & BM_FLAG_RLE ) && (src.bm_type == BM_LINEAR) ) {
gr_bm_ubitblt0x_rle(w, h, dx, dy, sx, sy, src, dest);
return;
2006-03-20 17:12:09 +00:00
}
for (int y1=0; y1 < h; y1++ ) {
for (int x1=0; x1 < w; x1++ ) {
2014-12-02 03:35:01 +00:00
gr_bm_pixel(dest, dx+x1, dy+y1, gr_gpixel(src,sx+x1,sy+y1) );
2006-03-20 17:12:09 +00:00
}
}
}
// Clipped bitmap ...
void gr_bitmap( int x, int y, grs_bitmap *bm )
2006-03-20 17:12:09 +00:00
{
int dx1=x, dx2=x+bm->bm_w-1;
int dy1=y, dy2=y+bm->bm_h-1;
#ifndef OGL
int sx=0, sy=0;
#endif
2006-03-20 17:12:09 +00:00
if ((dx1 >= grd_curcanv->cv_bitmap.bm_w ) || (dx2 < 0)) return;
if ((dy1 >= grd_curcanv->cv_bitmap.bm_h) || (dy2 < 0)) return;
// Draw bitmap bm[x,y] into (dx1,dy1)-(dx2,dy2)
#ifdef OGL
2014-11-30 22:09:18 +00:00
ogl_ubitmapm_cs(x, y, 0, 0, *bm, -1, F1_0);
#else
if ( dx1 < 0 )
{
sx = -dx1;
dx1 = 0;
}
if ( dy1 < 0 )
{
sy = -dy1;
dy1 = 0;
}
if ( dx2 >= grd_curcanv->cv_bitmap.bm_w ) { dx2 = grd_curcanv->cv_bitmap.bm_w-1; }
if ( dy2 >= grd_curcanv->cv_bitmap.bm_h ) { dy2 = grd_curcanv->cv_bitmap.bm_h-1; }
2014-12-02 03:35:01 +00:00
gr_bm_ubitblt(dx2-dx1+1,dy2-dy1+1, dx1, dy1, sx, sy, *bm, grd_curcanv->cv_bitmap );
#endif
2006-03-20 17:12:09 +00:00
}
void gr_bitmapm( int x, int y, grs_bitmap *bm )
{
int dx1=x, dx2=x+bm->bm_w-1;
int dy1=y, dy2=y+bm->bm_h-1;
int sx=0, sy=0;
if ((dx1 >= grd_curcanv->cv_bitmap.bm_w ) || (dx2 < 0)) return;
if ((dy1 >= grd_curcanv->cv_bitmap.bm_h) || (dy2 < 0)) return;
if ( dx1 < 0 ) { sx = -dx1; dx1 = 0; }
if ( dy1 < 0 ) { sy = -dy1; dy1 = 0; }
if ( dx2 >= grd_curcanv->cv_bitmap.bm_w ) { dx2 = grd_curcanv->cv_bitmap.bm_w-1; }
if ( dy2 >= grd_curcanv->cv_bitmap.bm_h ) { dy2 = grd_curcanv->cv_bitmap.bm_h-1; }
2006-03-20 17:12:09 +00:00
// Draw bitmap bm[x,y] into (dx1,dy1)-(dx2,dy2)
if ( (bm->bm_type == BM_LINEAR) && (grd_curcanv->cv_bitmap.bm_type == BM_LINEAR ))
{
if ( bm->bm_flags & BM_FLAG_RLE )
2014-11-30 22:09:22 +00:00
gr_bm_ubitblt00m_rle(dx2-dx1+1,dy2-dy1+1, dx1, dy1, sx, sy, *bm, grd_curcanv->cv_bitmap );
2006-03-20 17:12:09 +00:00
else
2014-12-02 03:35:01 +00:00
gr_bm_ubitblt00m(dx2-dx1+1,dy2-dy1+1, dx1, dy1, sx, sy, *bm, grd_curcanv->cv_bitmap );
2006-03-20 17:12:09 +00:00
return;
}
gr_bm_ubitbltm(dx2-dx1+1,dy2-dy1+1, dx1, dy1, sx, sy, bm, &grd_curcanv->cv_bitmap );
}
void gr_bm_ubitbltm(int w, int h, int dx, int dy, int sx, int sy, grs_bitmap * src, grs_bitmap * dest)
{
ubyte c;
#ifdef OGL
if ( (src->bm_type == BM_LINEAR) && (dest->bm_type == BM_OGL ))
{
2014-12-02 03:35:01 +00:00
ogl_ubitblt(w, h, dx, dy, sx, sy, *src, *dest);
2006-03-20 17:12:09 +00:00
return;
}
if ( (src->bm_type == BM_OGL) && (dest->bm_type == BM_LINEAR ))
{
return;
}
if ( (src->bm_type == BM_OGL) && (dest->bm_type == BM_OGL ))
{
return;
}
#endif
for (int y1=0; y1 < h; y1++ ) {
for (int x1=0; x1 < w; x1++ ) {
2014-11-30 22:09:18 +00:00
if ((c=gr_gpixel(*src,sx+x1,sy+y1))!=255)
2014-11-30 22:09:22 +00:00
gr_bm_pixel(*dest, dx+x1, dy+y1,c );
2006-03-20 17:12:09 +00:00
}
}
}
2014-11-30 22:09:19 +00:00
static void gr_bm_ubitblt00_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest)
{
int data_offset;
data_offset = 1;
2014-11-30 22:09:19 +00:00
if (src.bm_flags & BM_FLAG_RLE_BIG)
data_offset = 2;
2014-12-02 03:24:38 +00:00
auto sbits = &src.get_bitmap_data()[4 + (src.bm_h*data_offset)];
for (int i=0; i<sy; i++ )
2014-11-30 22:09:19 +00:00
sbits += (int)(INTEL_SHORT(src.bm_data[4+(i*data_offset)]));
2014-12-02 03:24:38 +00:00
auto dbits = &dest.get_bitmap_data()[(dest.bm_rowsize * dy) + dx];
// No interlacing, copy the whole buffer.
for (int i=0; i < h; i++ ) {
gr_rle_expand_scanline( dbits, sbits, sx, sx+w-1 );
2014-11-30 22:09:19 +00:00
if ( src.bm_flags & BM_FLAG_RLE_BIG )
sbits += (int)INTEL_SHORT(*((short *)&(src.bm_data[4+((i+sy)*data_offset)])));
else
2014-11-30 22:09:19 +00:00
sbits += (int)(src.bm_data[4+i+sy]);
dbits += dest.bm_rowsize << gr_bitblt_dest_step_shift;
}
2006-03-20 17:12:09 +00:00
}
2014-11-30 22:09:22 +00:00
static void gr_bm_ubitblt00m_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest)
{
int data_offset;
data_offset = 1;
2014-11-30 22:09:22 +00:00
if (src.bm_flags & BM_FLAG_RLE_BIG)
data_offset = 2;
2014-12-02 03:24:38 +00:00
auto sbits = &src.get_bitmap_data()[4 + (src.bm_h*data_offset)];
for (int i=0; i<sy; i++ )
2014-11-30 22:09:22 +00:00
sbits += (int)(INTEL_SHORT(src.bm_data[4+(i*data_offset)]));
2014-12-02 03:24:38 +00:00
auto dbits = &dest.get_bitmap_data()[(dest.bm_rowsize * dy) + dx];
// No interlacing, copy the whole buffer.
for (int i=0; i < h; i++ ) {
gr_rle_expand_scanline_masked( dbits, sbits, sx, sx+w-1 );
2014-11-30 22:09:22 +00:00
if ( src.bm_flags & BM_FLAG_RLE_BIG )
sbits += (int)INTEL_SHORT(*((short *)&(src.bm_data[4+((i+sy)*data_offset)])));
else
2014-11-30 22:09:22 +00:00
sbits += (int)(src.bm_data[4+i+sy]);
dbits += dest.bm_rowsize << gr_bitblt_dest_step_shift;
}
}
// in rle.c
2014-11-30 22:09:22 +00:00
static void gr_bm_ubitblt0x_rle(unsigned w, unsigned h, int dx, int dy, int sx, int sy, const grs_bitmap &src, grs_bitmap &dest)
{
int data_offset;
data_offset = 1;
2014-11-30 22:09:22 +00:00
if (src.bm_flags & BM_FLAG_RLE_BIG)
data_offset = 2;
2014-12-02 03:24:38 +00:00
auto sbits = &src.bm_data[4 + (src.bm_h*data_offset)];
for (int i=0; i<sy; i++ )
2014-11-30 22:09:22 +00:00
sbits += (int)(INTEL_SHORT(src.bm_data[4+(i*data_offset)]));
for (int y1=0; y1 < h; y1++ ) {
2014-11-30 22:09:22 +00:00
gr_rle_expand_scanline_generic(dest, dx, dy+y1, sbits, sx, sx+w-1);
if ( src.bm_flags & BM_FLAG_RLE_BIG )
sbits += (int)INTEL_SHORT(*((short *)&(src.bm_data[4+((y1+sy)*data_offset)])));
else
2014-11-30 22:09:22 +00:00
sbits += (int)src.bm_data[4+y1+sy];
}
}
2006-03-20 17:12:09 +00:00
// rescalling bitmaps, 10/14/99 Jan Bobrowski jb@wizard.ae.krakow.pl
2012-05-14 15:13:27 +00:00
static inline void scale_line(unsigned char *in, unsigned char *out, int ilen, int olen)
2006-03-20 17:12:09 +00:00
{
int a = olen/ilen, b = olen%ilen;
int c = 0, i;
unsigned char *end = out + olen;
while(out<end) {
i = a;
c += b;
if(c >= ilen) {
c -= ilen;
goto inside;
}
while(--i>=0) {
inside:
2006-03-20 17:12:09 +00:00
*out++ = *in;
}
in++;
}
}
2013-08-05 22:16:42 +00:00
static void gr_bitmap_scale_to(grs_bitmap *src, grs_bitmap *dst)
2006-03-20 17:12:09 +00:00
{
2014-12-02 03:24:38 +00:00
auto s = src->get_bitmap_data();
auto d = dst->get_bitmap_data();
2006-03-20 17:12:09 +00:00
int h = src->bm_h;
int a = dst->bm_h/h, b = dst->bm_h%h;
int c = 0, i;
2006-03-20 17:12:09 +00:00
for(int y=0; y<h; y++) {
2006-03-20 17:12:09 +00:00
i = a;
c += b;
if(c >= h) {
c -= h;
goto inside;
}
while(--i>=0) {
inside:
2006-03-20 17:12:09 +00:00
scale_line(s, d, src->bm_w, dst->bm_w);
d += dst->bm_rowsize;
}
s += src->bm_rowsize;
}
}
void show_fullscr(grs_bitmap *bm)
{
grs_bitmap * const scr = &grd_curcanv->cv_bitmap;
#ifdef OGL
if(bm->bm_type == BM_LINEAR && scr->bm_type == BM_OGL &&
bm->bm_w <= grd_curscreen->sc_w && bm->bm_h <= grd_curscreen->sc_h) // only scale with OGL if bitmap is not bigger than screen size
{
2014-11-30 22:09:18 +00:00
ogl_ubitmapm_cs(0,0,-1,-1,*bm,-1,F1_0);//use opengl to scale, faster and saves ram. -MPM
2006-03-20 17:12:09 +00:00
return;
}
#endif
if(scr->bm_type != BM_LINEAR) {
2014-07-22 02:14:56 +00:00
grs_bitmap_ptr p = gr_create_bitmap(scr->bm_w, scr->bm_h);
grs_bitmap *tmp = p.get();
2006-03-20 17:12:09 +00:00
gr_bitmap_scale_to(bm, tmp);
gr_bitmap(0, 0, tmp);
return;
}
gr_bitmap_scale_to(bm, scr);
}
// Find transparent area in bitmap
2014-07-01 00:23:30 +00:00
void gr_bitblt_find_transparent_area(grs_bitmap *bm, unsigned &minx, unsigned &miny, unsigned &maxx, unsigned &maxy)
{
2014-07-01 02:30:39 +00:00
using std::advance;
2014-07-01 00:23:30 +00:00
using std::min;
using std::max;
if (!(bm->bm_flags&BM_FLAG_TRANSPARENT))
return;
2014-07-01 00:23:30 +00:00
minx = bm->bm_w - 1;
maxx = 0;
miny = bm->bm_h - 1;
maxy = 0;
2014-07-01 02:30:39 +00:00
unsigned i = 0, count = 0;
auto check = [&](unsigned x, unsigned y, ubyte c) {
if (c == TRANSPARENCY_COLOR) { // don't look for transparancy color here.
count++;
minx = min(x, minx);
miny = min(y, miny);
maxx = max(x, maxx);
maxy = max(y, maxy);
}
};
// decode the bitmap
if (bm->bm_flags & BM_FLAG_RLE){
2014-07-01 02:30:39 +00:00
unsigned data_offset;
data_offset = 1;
if (bm->bm_flags & BM_FLAG_RLE_BIG)
data_offset = 2;
2014-12-02 03:24:38 +00:00
auto sbits = &bm->bm_data[4 + (bm->bm_h * data_offset)];
2014-07-01 02:30:39 +00:00
for (unsigned y = 0; y < bm->bm_h; ++y)
{
array<ubyte, 4096> buf;
2014-11-13 03:41:38 +00:00
gr_rle_decode({sbits, begin(buf)}, rle_end(*bm, buf));
2014-07-01 02:30:39 +00:00
advance(sbits, bm->bm_data[4+i] | (data_offset == 2 ? static_cast<unsigned>(bm->bm_data[5+i]) << 8 : 0));
i += data_offset;
for (unsigned x = 0; x < bm->bm_w; ++x)
check(x, y, buf[x]);
}
}
else
{
2014-07-01 02:30:39 +00:00
for (unsigned y = 0; y < bm->bm_h; ++y)
for (unsigned x = 0; x < bm->bm_w; ++x)
check(x, y, bm->bm_data[i++]);
}
Assert (count);
}