2007-05-30 21:56:52 +00:00
|
|
|
/* 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.
|
2002-07-16 11:09:28 +00:00
|
|
|
*
|
|
|
|
* 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
|
2005-10-18 01:30:26 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2014-02-18 01:34:20 +00:00
|
|
|
*
|
2002-07-16 11:09:28 +00:00
|
|
|
*/
|
|
|
|
|
2006-04-15 21:29:41 +00:00
|
|
|
#ifndef GRAPHICS_SCALER_H
|
|
|
|
#define GRAPHICS_SCALER_H
|
2002-07-16 11:09:28 +00:00
|
|
|
|
2004-02-27 15:52:23 +00:00
|
|
|
#include "common/scummsys.h"
|
2005-05-08 22:54:16 +00:00
|
|
|
#include "graphics/surface.h"
|
2004-02-27 15:52:23 +00:00
|
|
|
|
2003-09-21 12:10:32 +00:00
|
|
|
extern void InitScalers(uint32 BitFormat);
|
2008-03-26 19:29:33 +00:00
|
|
|
extern void DestroyScalers();
|
2003-04-25 20:03:00 +00:00
|
|
|
|
2003-05-25 12:08:01 +00:00
|
|
|
typedef void ScalerProc(const uint8 *srcPtr, uint32 srcPitch,
|
|
|
|
uint8 *dstPtr, uint32 dstPitch, int width, int height);
|
|
|
|
|
2003-04-25 20:03:00 +00:00
|
|
|
#define DECLARE_SCALER(x) \
|
2003-05-25 12:08:01 +00:00
|
|
|
extern void x(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, \
|
2003-04-25 20:03:00 +00:00
|
|
|
uint32 dstPitch, int width, int height)
|
|
|
|
|
2010-03-08 10:31:42 +00:00
|
|
|
|
|
|
|
DECLARE_SCALER(Normal1x);
|
|
|
|
|
2010-05-09 11:00:17 +00:00
|
|
|
#ifdef USE_SCALERS
|
2010-05-10 17:25:12 +00:00
|
|
|
|
2010-03-08 10:31:42 +00:00
|
|
|
DECLARE_SCALER(Normal2x);
|
|
|
|
DECLARE_SCALER(Normal3x);
|
|
|
|
DECLARE_SCALER(Normal1o5x);
|
|
|
|
|
2003-04-25 20:03:00 +00:00
|
|
|
DECLARE_SCALER(_2xSaI);
|
|
|
|
DECLARE_SCALER(Super2xSaI);
|
|
|
|
DECLARE_SCALER(SuperEagle);
|
2010-03-08 10:31:42 +00:00
|
|
|
|
2003-04-25 20:03:00 +00:00
|
|
|
DECLARE_SCALER(AdvMame2x);
|
2003-05-09 22:44:16 +00:00
|
|
|
DECLARE_SCALER(AdvMame3x);
|
2010-03-08 10:31:42 +00:00
|
|
|
|
2003-04-25 20:03:00 +00:00
|
|
|
DECLARE_SCALER(TV2x);
|
|
|
|
DECLARE_SCALER(DotMatrix);
|
2005-05-14 22:56:41 +00:00
|
|
|
|
2010-05-09 11:00:17 +00:00
|
|
|
#ifdef USE_HQ_SCALERS
|
2003-09-27 21:19:17 +00:00
|
|
|
DECLARE_SCALER(HQ2x);
|
2003-09-21 12:10:32 +00:00
|
|
|
DECLARE_SCALER(HQ3x);
|
2005-05-14 22:56:41 +00:00
|
|
|
#endif
|
2002-07-16 11:09:28 +00:00
|
|
|
|
2010-05-10 17:25:12 +00:00
|
|
|
#endif // #ifdef USE_SCALERS
|
|
|
|
|
2005-05-08 22:54:16 +00:00
|
|
|
// creates a 160x100 thumbnail for 320x200 games
|
|
|
|
// and 160x120 thumbnail for 320x240 and 640x480 games
|
|
|
|
// only 565 mode
|
|
|
|
enum {
|
|
|
|
kThumbnailWidth = 160,
|
|
|
|
kThumbnailHeight1 = 100,
|
|
|
|
kThumbnailHeight2 = 120
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
2008-08-20 14:03:34 +00:00
|
|
|
* Creates a thumbnail from the current screen (without overlay).
|
|
|
|
*
|
2005-05-08 22:54:16 +00:00
|
|
|
* @param surf a surface (will always have 16 bpp after this for now)
|
2010-06-15 12:33:20 +00:00
|
|
|
* @return false if a error occurred
|
2005-05-08 22:54:16 +00:00
|
|
|
*/
|
2008-08-20 14:03:34 +00:00
|
|
|
extern bool createThumbnailFromScreen(Graphics::Surface *surf);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a thumbnail from a buffer.
|
|
|
|
*
|
|
|
|
* @param surf destination surface (will always have 16 bpp after this for now)
|
|
|
|
* @param pixels raw pixel data
|
|
|
|
* @param w width
|
|
|
|
* @param h height
|
|
|
|
* @param palette palette in RGB format
|
|
|
|
*/
|
|
|
|
extern bool createThumbnail(Graphics::Surface *surf, const uint8 *pixels, int w, int h, const uint8 *palette);
|
2003-03-25 00:26:53 +00:00
|
|
|
|
2002-07-16 11:09:28 +00:00
|
|
|
#endif
|