ScummVM API documentation
graphics.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef TESTBED_GRAPHICS_H
23 #define TESTBED_GRAPHICS_H
24 
25 #include "testbed/testsuite.h"
26 
27 namespace Testbed {
28 
29 namespace GFXtests {
30 
31 // Helper functions for GFX tests
32 void drawEllipse(int x, int y, int a, int b);
33 void setupMouseLoop(bool disableCursorPalette = false, const char *gfxModeName = "", int cursorTargetScale = 1);
34 void initMousePalette();
35 void initMouseCursor();
36 Common::Rect computeSize(const Common::Rect &cursorRect, int scalingFactor, int cursorTargetScale);
37 void HSVtoRGB(int &rComp, int &gComp, int &bComp, int hue, int sat, int val);
38 Common::Rect drawCursor(bool cursorPaletteDisabled = false, int cursorTargetScale = 1);
39 TestExitStatus pixelFormats(Common::List<Graphics::PixelFormat> &pfList);
40 void showPixelFormat(const Graphics::PixelFormat &pf, uint aLoss);
41 
42 // will contain function declarations for GFX tests
43 TestExitStatus cursorTrails();
44 TestExitStatus fullScreenMode();
45 TestExitStatus filteringMode();
46 TestExitStatus aspectRatio();
47 TestExitStatus palettizedCursors();
48 TestExitStatus alphaCursors();
49 TestExitStatus maskedCursors();
50 TestExitStatus mouseMovements();
51 TestExitStatus copyRectToScreen();
52 TestExitStatus iconifyWindow();
53 TestExitStatus scaledCursors();
54 TestExitStatus shakingEffect();
55 TestExitStatus focusRectangle();
56 TestExitStatus overlayGraphics();
57 TestExitStatus paletteRotation();
58 TestExitStatus pixelFormatsSupported();
59 TestExitStatus pixelFormatsRequired();
60 // add more here
61 
62 } // End of namespace GFXtests
63 
64 class GFXTestSuite : public Testsuite {
65 public:
74  GFXTestSuite();
75  ~GFXTestSuite() override {}
76  const char *getName() const override {
77  return "GFX";
78  }
79  const char *getDescription() const override {
80  return "Graphics Subsystem";
81  }
82  void prepare() override;
83  static void setCustomColor(uint r, uint g, uint b);
84 
85 private:
94  static byte _palette[256 * 3];
95 };
96 
97 } // End of namespace Testbed
98 
99 #endif // TESTBED_GRAPHICS_H
Definition: pixelformat.h:138
Definition: list.h:44
Definition: rect.h:144
Definition: cloud.h:30
Definition: testsuite.h:90
Definition: graphics.h:64