ScummVM API documentation
screen.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 ULTIMA_SHARED_GFX_SCREEN_H
23 #define ULTIMA_SHARED_GFX_SCREEN_H
24 
25 #include "common/list.h"
26 #include "ultima/shared/core/rect.h"
27 #include "graphics/screen.h"
28 #include "ultima/shared/gfx/font.h"
29 #include "ultima/shared/engine/messages.h"
30 
31 namespace Ultima {
32 namespace Shared {
33 
34 namespace Gfx {
35 
36 #define VGA_COLOR_TRANS(x) ((x) * 255 / 63)
37 
38 
42 class Cursor {
43 public:
47  virtual ~Cursor() {}
48 
52  virtual Common::Rect getBounds() const = 0;
53 
57  virtual void draw() = 0;
58 };
59 
60 class Screen: public Graphics::Screen {
61 private:
62  Cursor *_cursor;
63  bool _drawCursor;
64 public:
68  Screen();
69 
73  void update() override;
74 
78  void updateScreen() override;
79 
83  void setCursor(Cursor *cursor) { _cursor = cursor; }
84 };
85 
86 } // End of namespace Gfx
87 } // End of namespace Shared
88 } // End of namespace Ultima
89 
90 #endif
void setCursor(Cursor *cursor)
Definition: screen.h:83
Definition: rect.h:144
Definition: screen.h:48
Definition: detection.h:27
Definition: screen.h:60
Definition: screen.h:42
virtual ~Cursor()
Definition: screen.h:47
virtual Common::Rect getBounds() const =0