2010-06-26 13:07:13 +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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* $URL$
|
|
|
|
* $Id$
|
|
|
|
*/
|
|
|
|
|
2010-06-26 21:28:50 +00:00
|
|
|
#ifndef TESTBED_GRAPHICS_H
|
|
|
|
#define TESTBED_GRAPHICS_H
|
2010-06-01 18:06:31 +00:00
|
|
|
|
2010-06-02 04:45:44 +00:00
|
|
|
#include "testbed/testsuite.h"
|
|
|
|
|
2010-06-01 18:06:31 +00:00
|
|
|
namespace Testbed {
|
|
|
|
|
2010-06-10 12:40:58 +00:00
|
|
|
namespace GFXtests {
|
2010-06-13 07:49:36 +00:00
|
|
|
|
|
|
|
// Helper functions for GFX tests
|
|
|
|
void drawEllipse(int x, int y, int a, int b);
|
2010-06-17 11:23:51 +00:00
|
|
|
void setupMouseLoop(bool disableCursorPalette = false, const char *gfxModeName = "", int cursorTargetScale = 1);
|
2010-06-21 19:09:19 +00:00
|
|
|
void initMousePalette();
|
2010-06-15 20:32:46 +00:00
|
|
|
void mouseMovements();
|
2010-06-17 11:23:51 +00:00
|
|
|
void drawCursor(bool cursorPaletteDisabled = false, const char *gfxModeName = "", int cursorTargetScale = 1);
|
2010-06-13 07:49:36 +00:00
|
|
|
|
2010-06-10 12:40:58 +00:00
|
|
|
// will contain function declarations for GFX tests
|
|
|
|
bool fullScreenMode();
|
|
|
|
bool aspectRatio();
|
|
|
|
bool palettizedCursors();
|
|
|
|
bool copyRectToScreen();
|
2010-06-13 07:49:36 +00:00
|
|
|
bool iconifyWindow();
|
2010-06-13 19:19:06 +00:00
|
|
|
bool scaledCursors();
|
|
|
|
bool shakingEffect();
|
|
|
|
bool focusRectangle();
|
|
|
|
bool overlayGraphics();
|
2010-06-24 15:27:28 +00:00
|
|
|
bool paletteRotation();
|
|
|
|
bool pixelFormats();
|
2010-06-10 12:40:58 +00:00
|
|
|
// add more here
|
|
|
|
}
|
|
|
|
|
2010-06-02 04:45:44 +00:00
|
|
|
class GFXTestSuite : public Testsuite {
|
2010-06-01 18:06:31 +00:00
|
|
|
public:
|
2010-06-02 04:45:44 +00:00
|
|
|
/**
|
|
|
|
* The constructor for the GFXTestSuite
|
|
|
|
* For every test to be executed one must:
|
|
|
|
* 1) Create a function that would invoke the test
|
|
|
|
* 2) Add that test to list by executing addTest()
|
|
|
|
*
|
|
|
|
* @see addTest()
|
|
|
|
*/
|
|
|
|
GFXTestSuite();
|
2010-06-06 14:06:51 +00:00
|
|
|
~GFXTestSuite(){}
|
2010-06-13 19:19:06 +00:00
|
|
|
const char *getName() const;
|
2010-06-08 17:24:29 +00:00
|
|
|
static void setCustomColor(uint r, uint g, uint b);
|
2010-06-06 14:06:51 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* A Palette consists of 4 components RGBA.
|
|
|
|
* As of now we only take 3 colors
|
|
|
|
* 0 (R:0, G:0, B:0) Black (kColorBlack)
|
|
|
|
* 1 (R:255, G:255, B:255) White (kColorWhite)
|
|
|
|
* 2 (R:255, G:255, B:255) your customized color (by default white) (kColorCustom)
|
|
|
|
*/
|
2010-06-08 17:24:29 +00:00
|
|
|
static byte _palette[3 * 4];
|
2010-06-02 13:56:04 +00:00
|
|
|
};
|
2010-06-02 04:45:44 +00:00
|
|
|
|
|
|
|
} // End of namespace Testbed
|
|
|
|
|
|
|
|
#endif
|