ScummVM API documentation
overworld_widget.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_ULTIMA1_WIDGETS_OVERWORLD_WIDGET_H
23 #define ULTIMA_ULTIMA1_WIDGETS_OVERWORLD_WIDGET_H
24 
25 #include "ultima/shared/maps/map.h"
26 #include "ultima/shared/maps/map_widget.h"
27 
28 namespace Ultima {
29 namespace Ultima1 {
30 
31 class Ultima1Game;
32 
33 namespace Maps {
34 class MapBase;
35 }
36 
37 namespace Widgets {
38 
43 protected:
47  Ultima1Game *getGame() const;
48 
52  Maps::MapBase *getMap() const;
53 public:
54  Common::String _name;
55  uint _tileNum;
56 public:
57  DECLARE_WIDGET(OverworldWidget)
58 
59 
62  OverworldWidget(Shared::Game *game, Shared::Maps::MapBase *map, uint tileNum, const Point &pt, Shared::Maps::Direction dir = Shared::Maps::DIR_NONE) :
63  Shared::Maps::MapWidget(game, map, pt, dir), _tileNum(tileNum) {}
64 
68  OverworldWidget(Shared::Game *game, Shared::Maps::MapBase *map) : Shared::Maps::MapWidget(game, map),
69  _tileNum(0) {}
70 
74  uint getTileNum() const override { return _tileNum; }
75 
79  void synchronize(Common::Serializer &s) override;
80 
84  CanMove canMoveTo(const Point &destPos) override;
85 };
86 
87 } // End of namespace Widgets
88 } // End of namespace Ultima1
89 } // End of namespace Ultima
90 
91 #endif
Definition: overworld_widget.h:42
Definition: str.h:59
Definition: game.h:42
uint getTileNum() const override
Definition: overworld_widget.h:74
Definition: serializer.h:79
Definition: map_base.h:39
Definition: detection.h:27
Definition: rect.h:45
Definition: game.h:42
Definition: map_widget.h:50
Definition: map_base.h:47
OverworldWidget(Shared::Game *game, Shared::Maps::MapBase *map)
Definition: overworld_widget.h:68