| 1 | // SuperTux |
|---|---|
| 2 | // Copyright (C) 2018 Ingo Ruhnke <grumbel@gmail.com> |
| 3 | // |
| 4 | // This program is free software: you can redistribute it and/or modify |
| 5 | // it under the terms of the GNU General Public License as published by |
| 6 | // the Free Software Foundation, either version 3 of the License, or |
| 7 | // (at your option) any later version. |
| 8 | // |
| 9 | // This program is distributed in the hope that it will be useful, |
| 10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | // GNU General Public License for more details. |
| 13 | // |
| 14 | // You should have received a copy of the GNU General Public License |
| 15 | // along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | |
| 17 | #include "worldmap/worldmap_screen.hpp" |
| 18 | |
| 19 | #include "control/controller.hpp" |
| 20 | #include "video/compositor.hpp" |
| 21 | #include "worldmap/worldmap.hpp" |
| 22 | |
| 23 | namespace worldmap { |
| 24 | |
| 25 | WorldMapScreen::WorldMapScreen(std::unique_ptr<WorldMap> worldmap) : |
| 26 | m_worldmap(std::move(worldmap)) |
| 27 | { |
| 28 | } |
| 29 | |
| 30 | WorldMapScreen::~WorldMapScreen() |
| 31 | { |
| 32 | } |
| 33 | |
| 34 | void |
| 35 | WorldMapScreen::setup() |
| 36 | { |
| 37 | m_worldmap->setup(); |
| 38 | } |
| 39 | |
| 40 | void |
| 41 | WorldMapScreen::leave() |
| 42 | { |
| 43 | m_worldmap->leave(); |
| 44 | } |
| 45 | |
| 46 | void |
| 47 | WorldMapScreen::draw(Compositor& compositor) |
| 48 | { |
| 49 | auto& context = compositor.make_context(); |
| 50 | m_worldmap->draw(context); |
| 51 | } |
| 52 | |
| 53 | void |
| 54 | WorldMapScreen::update(float dt_sec, const Controller& controller) |
| 55 | { |
| 56 | m_worldmap->process_input(controller); |
| 57 | m_worldmap->update(dt_sec); |
| 58 | } |
| 59 | |
| 60 | } // namespace worldmap |
| 61 | |
| 62 | /* EOF */ |
| 63 |