scummvm/engines/lab/image.cpp

167 lines
4.7 KiB
C++
Raw Normal View History

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program 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.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
/*
* This code is based on Labyrinth of Time code with assistance of
*
* Copyright (c) 1993 Terra Nova Development
* Copyright (c) 2004 The Wyrmkeep Entertainment Co.
*
*/
#include "lab/lab.h"
#include "lab/image.h"
namespace Lab {
/*****************************************************************************/
/* Reads in an image from disk. */
/*****************************************************************************/
2015-12-03 15:06:45 +02:00
Image::Image(Common::File *s) {
_width = s->readUint16LE();
_height = s->readUint16LE();
s->skip(4);
2015-12-03 15:06:45 +02:00
uint32 size = _width * _height;
if (size & 1)
size++;
2015-12-03 15:06:45 +02:00
_imageData = new byte[size]; // FIXME: Memory leak!
s->read(_imageData, size);
}
/*****************************************************************************/
/* Draws an image to the screen. */
/*****************************************************************************/
void Image::drawImage(uint16 x, uint16 y) {
2015-12-02 11:49:01 +01:00
int w = _width;
int h = _height;
if (x + w > g_lab->_screenWidth)
w = g_lab->_screenWidth - x;
if (y + h > g_lab->_screenHeight)
h = g_lab->_screenHeight - y;
if ((w > 0) && (h > 0)) {
byte *s = _imageData;
byte *d = g_lab->getCurrentDrawingBuffer() + y * g_lab->_screenWidth + x;
while (h-- > 0) {
memcpy(d, s, w);
2015-12-02 11:49:01 +01:00
s += _width;
d += g_lab->_screenWidth;
}
}
}
/*****************************************************************************/
/* Draws an image to the screen. */
/*****************************************************************************/
void Image::drawMaskImage(uint16 x, uint16 y) {
2015-12-02 11:49:01 +01:00
int w = _width;
int h = _height;
if (x + w > g_lab->_screenWidth)
w = g_lab->_screenWidth - x;
if (y + h > g_lab->_screenHeight)
h = g_lab->_screenHeight - y;
if ((w > 0) && (h > 0)) {
byte *s = _imageData;
byte *d = g_lab->getCurrentDrawingBuffer() + y * g_lab->_screenWidth + x;
while (h-- > 0) {
byte *ss = s;
byte *dd = d;
int ww = w;
while (ww-- > 0) {
byte c = *ss++;
if (c) *dd++ = c - 1;
else dd++;
}
2015-12-02 11:49:01 +01:00
s += _width;
d += g_lab->_screenWidth;
}
}
}
/*****************************************************************************/
/* Reads an image from the screen. */
/*****************************************************************************/
void Image::readScreenImage(uint16 x, uint16 y) {
2015-12-02 11:49:01 +01:00
int w = _width;
int h = _height;
if (x + w > g_lab->_screenWidth)
w = g_lab->_screenWidth - x;
if (y + h > g_lab->_screenHeight)
h = g_lab->_screenHeight - y;
if ((w > 0) && (h > 0)) {
byte *s = _imageData;
byte *d = g_lab->getCurrentDrawingBuffer() + y * g_lab->_screenWidth + x;
while (h-- > 0) {
memcpy(s, d, w);
2015-12-02 11:49:01 +01:00
s += _width;
d += g_lab->_screenWidth;
}
}
}
2015-12-02 11:54:42 +01:00
/*****************************************************************************/
/* Blits a piece of one image to another. */
/* NOTE: for our purposes, assumes that ImDest is to be in VGA memory. */
/*****************************************************************************/
void Image::bltBitMap(uint16 xs, uint16 ys, Image *imDest,
uint16 xd, uint16 yd, uint16 width, uint16 height) {
// I think the old code assumed that the source image data was valid for the given box.
// I will proceed on that assumption.
int w = width;
int h = height;
if (xd + w > imDest->_width)
w = imDest->_width - xd;
2015-12-02 11:54:42 +01:00
if (yd + h > imDest->_height)
h = imDest->_height - yd;
2015-12-02 11:54:42 +01:00
if (w > 0 && h > 0) {
byte *s = _imageData + ys * _width + xs;
byte *d = imDest->_imageData + yd * imDest->_width + xd;
2015-12-02 11:54:42 +01:00
while (h-- > 0) {
memcpy(d, s, w);
s += _width;
d += imDest->_width;
}
}
}
} // End of namespace Lab