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 TestExitStatus shaderCompatibility();
61 // add more here
62 
63 } // End of namespace GFXtests
64 
65 class GFXTestSuite : public Testsuite {
66 public:
75  GFXTestSuite();
76  ~GFXTestSuite() override {}
77  const char *getName() const override {
78  return "GFX";
79  }
80  const char *getDescription() const override {
81  return "Graphics Subsystem";
82  }
83  void prepare() override;
84  static void setCustomColor(uint r, uint g, uint b);
85 
86 private:
95  static byte _palette[256 * 3];
96 };
97 
98 } // End of namespace Testbed
99 
100 #endif // TESTBED_GRAPHICS_H
Definition: pixelformat.h:138
Definition: list.h:44
Definition: rect.h:524
Definition: cloud.h:30
Definition: testsuite.h:96
Definition: graphics.h:65