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 LASTEXPRESS_GRAPHICS_H
23 #define LASTEXPRESS_GRAPHICS_H
24 
25 #include "lastexpress/drawable.h"
26 
27 namespace LastExpress {
28 
30 public:
31  enum BackgroundType {
32  kBackgroundA,
33  kBackgroundC,
34  kBackgroundOverlay,
35  kBackgroundInventory,
36  kBackgroundAll
37  };
38 
40  ~GraphicsManager();
41 
42  // Update the screen
43  void update();
44 
45  // Signal a change to the screen, will cause the planes to be remerged
46  void change();
47 
48  // Clear some screen parts
49  void clear(BackgroundType type);
50  void clear(BackgroundType type, const Common::Rect &rect);
51 
52  // FIXME this is there for animation until we change it to use the graphic surface here instead of its private ones.
53  Graphics::Surface _screen; // Actual screen surface
54 
55  bool draw(Drawable *drawable, BackgroundType type, bool transition = false);
56 
57 private:
58  Graphics::Surface _backgroundA; // Background A
59  Graphics::Surface _backgroundC; // Background C
60  Graphics::Surface _overlay; // Overlay
61  Graphics::Surface _inventory; // Overlay
62 
63  void mergePlanes();
64  void updateScreen();
65  Graphics::Surface *getSurface(BackgroundType type);
66 
67  bool _changed;
68 };
69 
70 } // End of namespace LastExpress
71 
72 #endif // LASTEXPRESS_GRAPHICS_H
Definition: surface.h:66
Definition: rect.h:144
Definition: animation.h:45
Definition: drawable.h:29
Definition: graphics.h:29