ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
console.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 DARKSEED_CONSOLE_H
23 #define DARKSEED_CONSOLE_H
24 
25 #include "graphics/font.h"
26 #include "darkseed/sound.h"
27 #include "darkseed/tostext.h"
28 #include "darkseed/langtext.h"
29 
30 namespace Darkseed {
31 
32 class Console {
33 private:
34  TosText *_tosText;
35  Graphics::Font *_font;
36  Sound *_sound;
37 
39  int _startIdx = 0;
40  bool _redrawRequired = false;
41  int _numLines = 4;
42  int _lineHeight = 11;
43  bool _isCJKLanguage = false;
44 
45 public:
46  Console(TosText *tostext, Sound *sound);
47  ~Console();
48 
49  void clear();
50 
51  void printTosText(int tosIndex, bool shouldAddToCurrentLine = false);
52  void addTextLine(const Common::U32String &text);
53  void addToCurrentLine(const Common::String &text);
54  void addToCurrentLineU32(const Common::U32String &text);
55 
56  void addI18NText(const I18nText &text);
57 
58  void draw(bool forceRedraw = false);
59  void drawStringAt(int x, int y, const Common::U32String &text) const;
60 
61 private:
62  void addLine(const Common::U32String &line);
63 };
64 
65 } // End of namespace Darkseed
66 
67 #endif // DARKSEED_CONSOLE_H
Definition: str.h:59
Definition: font.h:83
Definition: array.h:52
Definition: langtext.h:37
Definition: tostext.h:31
Definition: ustr.h:57
Definition: console.h:32
Definition: adlib_dsf.h:27
Definition: sound.h:60