scummvm/engines/nancy/graphics.cpp
Kaloyan Chehlarski 3749b21f18 NANCY: Formatting fixes
Changed spaces to tabs, fixed some double spaces and cleaned up
trailing whitespaces.
2023-03-07 21:19:24 +02:00

310 lines
8.8 KiB
C++

/* 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 3 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, see <http://www.gnu.org/licenses/>.
*
*/
#include "image/bmp.h"
#include "engines/util.h"
#include "engines/nancy/nancy.h"
#include "engines/nancy/graphics.h"
#include "engines/nancy/renderobject.h"
#include "engines/nancy/resource.h"
#include "engines/nancy/state/scene.h"
namespace Nancy {
GraphicsManager::GraphicsManager() :
_objects(objectComparator),
_inputPixelFormat(2, 5, 5, 5, 0, 10, 5, 0, 0),
_screenPixelFormat(2, 5, 6, 5, 0, 11, 5, 0, 0),
_clut8Format(Graphics::PixelFormat::createFormatCLUT8()) {}
void GraphicsManager::init() {
initGraphics(640, 480, &_screenPixelFormat);
_screen.create(640, 480, _screenPixelFormat);
_screen.setTransparentColor(getTransColor());
_screen.clear();
Common::SeekableReadStream *ob = g_nancy->getBootChunkStream("OB0");
ob->seek(0);
g_nancy->_resource->loadImage(ob->readString(), _object0);
loadFonts();
}
void GraphicsManager::draw() {
Common::List<Common::Rect> dirtyRects;
// Update graphics for all RenderObjects and determine
// the areas of the screen that need to be redrawn
for (auto it : _objects) {
RenderObject &current = *it;
current.updateGraphics();
if (current._needsRedraw) {
if (current._isVisible) {
if (current.hasMoved() && !current.getPreviousScreenPosition().isEmpty()) {
// Object moved to a new location on screen, update the previous one
dirtyRects.push_back(current.getPreviousScreenPosition());
}
// Redraw the current location
dirtyRects.push_back(current.getScreenPosition());
} else if (!current.getPreviousScreenPosition().isEmpty()) {
// Object just turned invisible, redraw the last location
dirtyRects.push_back(current.getPreviousScreenPosition());
}
}
current._needsRedraw = false;
current._previousScreenPosition = current._screenPosition;
}
// Filter out dirty rects that are completely inside others to reduce overdraw
for (auto outer = dirtyRects.begin(); outer != dirtyRects.end(); ++outer) {
for (auto inner = dirtyRects.begin(); inner != dirtyRects.end(); ++inner) {
if (inner != outer && (*outer).contains(*inner)) {
dirtyRects.erase(inner);
break;
}
}
}
// Redraw all dirty rects
for (auto it : _objects) {
RenderObject &current = *it;
if (!current._isVisible || current.getScreenPosition().isEmpty()) {
continue;
}
for (Common::Rect rect : dirtyRects) {
if (rect.intersects(current.getScreenPosition())) {
blitToScreen(current, rect.findIntersectingRect(current.getScreenPosition()));
}
}
}
// Draw the screen
_screen.update();
}
void GraphicsManager::addObject(RenderObject *object) {
for (const auto &r : _objects) {
if (r == object) {
return;
}
if (r->getZOrder() > object->getZOrder()) {
break;
}
}
_objects.insert(object);
}
void GraphicsManager::removeObject(RenderObject *object) {
for (auto &r : _objects) {
if (r == object) {
_objects.erase(&r);
break;
}
}
}
void GraphicsManager::clearObjects() {
_objects.clear();
}
void GraphicsManager::redrawAll() {
for (auto &obj : _objects) {
obj->_needsRedraw = true;
}
}
void GraphicsManager::loadSurfacePalette(Graphics::ManagedSurface &inSurf, const Common::String paletteFilename, uint paletteStart, uint paletteSize) {
Common::File f;
if (f.open(paletteFilename + ".bmp")) {
Image::BitmapDecoder dec;
if (dec.loadStream(f)) {
inSurf.setPalette(dec.getPalette(), paletteStart, paletteSize);
}
}
}
void GraphicsManager::copyToManaged(const Graphics::Surface &src, Graphics::ManagedSurface &dst, bool verticalFlip, bool doubleSize) {
if (dst.w != (doubleSize ? src.w * 2 : src.w) || dst.h != (doubleSize ? src.h * 2 : src.h)) {
uint8 palette[256 * 3];
bool hasPalette = dst.hasPalette();
bool hasTransColor = dst.hasTransparentColor();
if (hasPalette && g_nancy->getGameType() == kGameTypeVampire) {
dst.grabPalette(palette, 0, 256);
}
dst.create(doubleSize ? src.w * 2 : src.w, doubleSize ? src.h * 2 : src.h, src.format);
if (hasPalette && g_nancy->getGameType() == kGameTypeVampire) {
dst.setPalette(palette, 0, 256);
}
if (hasTransColor) {
// Do the same trick with the transparent color
dst.setTransparentColor(dst.getTransparentColor());
}
}
if (!verticalFlip && !doubleSize) {
dst.copyRectToSurface(src, 0, 0, Common::Rect(0, 0, src.w, src.h));
return;
}
for (int y = 0; y < src.h; ++y) {
if (!doubleSize) {
// Copy single line bottom to top
memcpy(dst.getBasePtr(0, y), src.getBasePtr(0, src.h - y - 1), src.w * src.format.bytesPerPixel);
} else {
// Make four copies of each source pixel
for (int x = 0; x < src.w; ++x) {
switch (src.format.bytesPerPixel) {
case 1: {
const byte *srcP = (const byte *)src.getBasePtr(x, y);
uint dstX = x * 2;
uint dstY = verticalFlip ? (src.h - y - 1) * 2 : src.h - y - 1;
byte *dstP = ((byte *)dst.getBasePtr(dstX, dstY));
*dstP = *srcP;
*(dstP + 1) = *srcP;
dstP += dst.w;
*dstP = *srcP;
*(dstP + 1) = *srcP;
break;
}
case 2: {
const uint16 *srcP = (const uint16 *)src.getBasePtr(x, y);
uint dstX = x * 2;
uint dstY = verticalFlip ? (src.h - y - 1) * 2 : src.h - y - 1;
uint16 *dstP = ((uint16 *)dst.getBasePtr(dstX, dstY));
*dstP = *srcP;
*(dstP + 1) = *srcP;
dstP += dst.w;
*dstP = *srcP;
*(dstP + 1) = *srcP;
break;
}
case 4: {
const uint32 *srcP = (const uint32 *)src.getBasePtr(x, y);
uint dstX = x * 2;
uint dstY = verticalFlip ? (src.h - y - 1) * 2 : src.h - y - 1;
uint32 *dstP = ((uint32 *)dst.getBasePtr(dstX, dstY));
*dstP = *srcP;
*(dstP + 1) = *srcP;
dstP += dst.w;
*dstP = *srcP;
*(dstP + 1) = *srcP;
break;
}
default:
return;
}
}
}
}
}
void GraphicsManager::copyToManaged(void *src, Graphics::ManagedSurface &dst, uint srcW, uint srcH, const Graphics::PixelFormat &format, bool verticalFlip, bool doubleSize) {
// Do things the lazy way and simply create a Surface and pass it to the other overload
// We do NOT free the surface since it's a temporary object and does not own the pixels
Graphics::Surface surf;
surf.w = srcW;
surf.h = srcH;
surf.format = format;
surf.pitch = srcW * format.bytesPerPixel;
surf.setPixels(src);
copyToManaged(surf, dst, verticalFlip, doubleSize);
}
void GraphicsManager::debugDrawToScreen(const Graphics::ManagedSurface &surf) {
_screen.blitFrom(surf, Common::Point());
_screen.update();
}
const Graphics::PixelFormat &GraphicsManager::getInputPixelFormat() {
if (g_nancy->getGameType() == kGameTypeVampire) {
return _clut8Format;
} else {
return _inputPixelFormat;
}
}
const Graphics::PixelFormat &GraphicsManager::getScreenPixelFormat() {
return _screenPixelFormat;
}
uint GraphicsManager::getTransColor() {
if (g_nancy->getGameType() == kGameTypeVampire) {
return 1; // If this isn't correct, try picking the pixel at [0, 0] inside the palette bitmap
} else {
return _inputPixelFormat.ARGBToColor(0, 0, 255, 0);
}
}
void GraphicsManager::grabViewportObjects(Common::Array<RenderObject *> &inArray) {
// Add the viewport
inArray.push_back(&(RenderObject &)NancySceneState.getViewport());
// Add all viewport-relative (non-UI) objects
for (RenderObject *obj : _objects) {
if (obj->isViewportRelative()) {
inArray.push_back(obj);
}
}
}
void GraphicsManager::loadFonts() {
Common::SeekableReadStream *chunk = g_nancy->getBootChunkStream("FONT");
chunk->seek(0);
while (chunk->pos() < chunk->size() - 1) {
_fonts.push_back(Font());
_fonts.back().read(*chunk);
}
}
// Draw a given screen-space rectangle to the screen
void GraphicsManager::blitToScreen(const RenderObject &src, Common::Rect screenRect) {
_screen.blitFrom(src._drawSurface, src._drawSurface.getBounds().findIntersectingRect(src.convertToLocal(screenRect)), screenRect);
}
int GraphicsManager::objectComparator(const void *a, const void *b) {
if (((const RenderObject*)a)->getZOrder() < ((const RenderObject*)b)->getZOrder()) {
return -1;
} else if (((const RenderObject*)a)->getZOrder() > ((const RenderObject*)b)->getZOrder()) {
return 1;
} else {
return 0;
}
}
} // End of namespace Nancy