The Battle for Wesnoth  1.17.23+dev
game_display.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 2023
3  by David White <dave@whitevine.net>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #pragma once
17 
18 class config;
19 class team;
20 class game_board;
21 
22 #include "chat_events.hpp"
23 #include "display.hpp"
24 #include "display_chat_manager.hpp"
25 #include "pathfind/pathfind.hpp"
26 
27 #include <deque>
28 
29 // This needs to be separate from display.h because of the static
30 // singleton member, which will otherwise trigger link failure
31 // when building the editor.
32 
33 class game_display : public display
34 {
35 public:
36  game_display(game_board& board,
37  std::weak_ptr<wb::manager> wb,
38  reports & reports_object,
39  const std::string& theme_id,
40  const config& level);
41 
42  ~game_display();
44  {
45  return static_cast<game_display*>(singleton_);
46  }
47 
48  /**
49  * Update lighting settings.
50  *
51  * Should be called on every new turn.
52  */
53  void new_turn();
54 
55  virtual const std::set<std::string>& observers() const override { return chat_man_->observers(); }
56  /**
57  * Scrolls to the leader of a certain side.
58  *
59  * This will normally be the playing team.
60  */
61  void scroll_to_leader(int side, SCROLL_TYPE scroll_type = ONSCREEN,bool force = true);
62 
63  /**
64  * Function to display a location as selected.
65  *
66  * If a unit is in the location, and there is no unit in the currently
67  * highlighted hex, the unit will be displayed in the sidebar.
68  */
69  virtual void select_hex(map_location hex) override;
70 
71  /**
72  * Function to highlight a location.
73  *
74  * If a unit is in the location, it will be displayed in the sidebar.
75  * Selection is used when a unit has been clicked on, while highlighting is
76  * used when a location has been moused over.
77  */
78  virtual void highlight_hex(map_location hex) override;
79 
80  /**
81  * Change the unit to be displayed in the sidebar.
82  *
83  * This is used when selecting or highlighting is not wanted.
84  */
86 
87  /**
88  * Sets the paths that are currently displayed as available
89  * for the unit to move along.
90  * All other paths will be grayed out.
91  */
92  void highlight_reach(const pathfind::paths &paths_list);
93 
94  /**
95  * Add more paths to highlight. Print numbers where they overlap.
96  * Used by Show Enemy Moves. If @a goal is not @c null_location, highlight
97  * enemy units that can reach @a goal.
98  */
99  void highlight_another_reach(const pathfind::paths &paths_list,
100  const map_location& goal = map_location::null_location());
101  /**
102  * Return the locations of units that can reach @a goal (@see highlight_another_reach()).
103  */
104  const std::set<map_location>& units_that_can_reach_goal() const { return units_that_can_reach_goal_; }
105 
106  /** Reset highlighting of paths. */
107  bool unhighlight_reach();
108 
109  /**
110  * Sets the route along which footsteps are drawn to show movement of a
111  * unit. If nullptr, no route is displayed. @a route does not have to remain
112  * valid after being set.
113  */
114  void set_route(const pathfind::marked_route *route);
115  /**
116  * Gets the route along which footsteps are drawn to show movement of a
117  * unit. If no route is currently being shown, the array get_route().steps
118  * will be empty.
119  */
121 
122  /** Function to float a label above a tile */
123  void float_label(const map_location& loc, const std::string& text, const color_t& color);
124 
125  /** Draws the movement info (turns available) for a given location. */
126  void draw_movement_info(const map_location& loc);
127 
128  /** Function to invalidate that unit status displayed on the sidebar. */
130 
131  /** Same as invalidate_unit() if moving the displayed unit. */
132  void invalidate_unit_after_move(const map_location& src, const map_location& dst);
133 
134  virtual const time_of_day& get_time_of_day(const map_location& loc) const override;
135 
136  virtual bool has_time_area() const override;
137 
138  /**
139  * TLD update() override. Replaces old pre_draw(). Be sure to call
140  * the base class method as well.
141  *
142  * game_display does specific things related e.g. to unit rendering
143  * and calls the whiteboard pre-draw method here.
144  */
145  virtual void update() override;
146 
147  /**
148  * TLD layout() override. Replaces old refresh_reports(). Be sure to
149  * call the base class method as well.
150  *
151  * This updates some reports, like clock, that need to be refreshed
152  * every frame.
153  */
154  virtual void layout() override;
155 
156  /**
157  * TLD render() override. Replaces old post_draw(). Be sure to call
158  * the base class method as well.
159  *
160  * This calls the whiteboard's post-draw method after rendering.
161  */
162  virtual void render() override;
163 
164 protected:
165  virtual void draw_invalidated() override;
166 
167  virtual void draw_hex(const map_location& loc) override;
168 
169  /** Inherited from display. */
170  virtual overlay_map& get_overlays() override;
171 
172  std::set<map_location> units_that_can_reach_goal_;
173 
174 public:
175  /** Set the attack direction indicator. */
176  void set_attack_indicator(const map_location& src, const map_location& dst);
177  void clear_attack_indicator();
178  // TODO: compare reports::context::mhb()->current_unit_attacks_from()
180 
181  /** Function to get attack direction suffix. */
182  std::string attack_indicator_direction() const {
185  }
186 
187  // Functions used in the editor:
188 
189  //void draw_terrain_palette(int x, int y, terrain_type::TERRAIN selected);
190  t_translation::terrain_code get_terrain_on(int palx, int paly, int x, int y);
191 
192  virtual const map_location &displayed_unit_hex() const override { return displayedUnitHex_; }
193 
194  /**
195  * annotate hex with number, useful for debugging or UI prototype
196  */
197  static int& debug_highlight(const map_location& loc);
198  static void clear_debug_highlights() { debugHighlights_.clear(); }
199 
200  /** The playing team is the team whose turn it is. */
201  virtual int playing_side() const override { return static_cast<int>(activeTeam_) + 1; }
202 
203  std::string current_team_name() const;
204 
206 
207  void begin_game();
208 
209  virtual bool in_game() const override { return in_game_; }
210 
211  /**
212  * Sets the linger mode for the display.
213  * There have been some discussions on what to do with fog and shroud
214  * the extra variables make it easier to modify the behavior. There
215  * might even be a split between victory and defeat.
216  *
217  * @todo if the current implementation is wanted we can change
218  * the stuff back to a boolean
219  */
220  enum game_mode {
221  RUNNING, /**< no linger overlay, show fog and shroud. */
222  LINGER }; /**< linger overlay, show fog and shroud. */
223 
224  void set_game_mode(const game_mode mode);
225 
226  /** Sets whether the screen (map visuals) needs to be rebuilt. This is typically after the map has been changed by wml. */
227  void needs_rebuild(bool b);
228 
229  /** Rebuilds the screen if needs_rebuild(true) was previously called, and resets the flag. */
230  bool maybe_rebuild();
231 
232 private:
234  void operator=(const game_display&);
235 
237 
238  // Locations of the attack direction indicator's parts
241 
243 
244  void invalidate_route();
245 
247 
249 
250  const std::unique_ptr<display_chat_manager> chat_man_;
251 
253 
254  // For debug mode
255  static std::map<map_location, int> debugHighlights_;
256 
258 
259 };
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:161
Sort-of-Singleton that many classes, both GUI and non-GUI, use to access the game data.
Definition: display.hpp:87
std::map< map_location, std::vector< overlay > > overlay_map
Definition: display.hpp:952
@ ONSCREEN
Definition: display.hpp:505
static display * singleton_
Definition: display.hpp:1015
std::size_t activeTeam_
Definition: display.hpp:864
bool invalidateGameStatus_
Definition: display.hpp:751
Game board class.
Definition: game_board.hpp:53
std::string current_team_name() const
virtual void draw_invalidated() override
Only called when there's actual redrawing to do.
void draw_movement_info(const map_location &loc)
Draws the movement info (turns available) for a given location.
void display_unit_hex(map_location hex)
Change the unit to be displayed in the sidebar.
virtual bool in_game() const override
void invalidate_unit_after_move(const map_location &src, const map_location &dst)
Same as invalidate_unit() if moving the displayed unit.
std::string attack_indicator_direction() const
Function to get attack direction suffix.
const map_location & get_attack_indicator_src()
const pathfind::marked_route & get_route()
Gets the route along which footsteps are drawn to show movement of a unit.
game_mode mode_
void operator=(const game_display &)
virtual void highlight_hex(map_location hex) override
Function to highlight a location.
virtual const map_location & displayed_unit_hex() const override
Virtual functions shadowed in game_display.
map_location displayedUnitHex_
void invalidate_route()
void scroll_to_leader(int side, SCROLL_TYPE scroll_type=ONSCREEN, bool force=true)
Scrolls to the leader of a certain side.
void set_game_mode(const game_mode mode)
virtual void draw_hex(const map_location &loc) override
Redraws a single gamemap location.
static std::map< map_location, int > debugHighlights_
virtual int playing_side() const override
The playing team is the team whose turn it is.
const std::set< map_location > & units_that_can_reach_goal() const
Return the locations of units that can reach goal (.
void set_attack_indicator(const map_location &src, const map_location &dst)
Set the attack direction indicator.
static int & debug_highlight(const map_location &loc)
annotate hex with number, useful for debugging or UI prototype
const std::unique_ptr< display_chat_manager > chat_man_
pathfind::marked_route route_
virtual void render() override
TLD render() override.
void set_route(const pathfind::marked_route *route)
Sets the route along which footsteps are drawn to show movement of a unit.
virtual overlay_map & get_overlays() override
Inherited from display.
std::set< map_location > units_that_can_reach_goal_
void invalidate_unit()
Function to invalidate that unit status displayed on the sidebar.
virtual const std::set< std::string > & observers() const override
virtual void select_hex(map_location hex) override
Function to display a location as selected.
static game_display * get_singleton()
void highlight_reach(const pathfind::paths &paths_list)
Sets the paths that are currently displayed as available for the unit to move along.
void new_turn()
Update lighting settings.
void clear_attack_indicator()
virtual const time_of_day & get_time_of_day(const map_location &loc) const override
void highlight_another_reach(const pathfind::paths &paths_list, const map_location &goal=map_location::null_location())
Add more paths to highlight.
map_location attack_indicator_dst_
game_mode
Sets the linger mode for the display.
@ RUNNING
no linger overlay, show fog and shroud.
game_display(const game_display &)
bool unhighlight_reach()
Reset highlighting of paths.
void needs_rebuild(bool b)
Sets whether the screen (map visuals) needs to be rebuilt.
overlay_map overlay_map_
bool maybe_rebuild()
Rebuilds the screen if needs_rebuild(true) was previously called, and resets the flag.
virtual void layout() override
TLD layout() override.
virtual bool has_time_area() const override
static void clear_debug_highlights()
display_chat_manager & get_chat_manager()
game_display(game_board &board, std::weak_ptr< wb::manager > wb, reports &reports_object, const std::string &theme_id, const config &level)
virtual void update() override
TLD update() override.
map_location attack_indicator_src_
void float_label(const map_location &loc, const std::string &text, const color_t &color)
Function to float a label above a tile.
t_translation::terrain_code get_terrain_on(int palx, int paly, int x, int y)
This class stores all the data for a single 'side' (in game nomenclature).
Definition: team.hpp:76
Unit and team statistics.
Definition: display.hpp:49
This module contains various pathfinding functions and utilities.
The basic class for representing 8-bit RGB or RGBA colour values.
Definition: color.hpp:59
Encapsulates the map of the game.
Definition: location.hpp:38
DIRECTION get_relative_dir(const map_location &loc, map_location::RELATIVE_DIR_MODE mode) const
Definition: location.cpp:227
static const map_location & null_location()
Definition: location.hpp:81
static std::string write_direction(DIRECTION dir)
Definition: location.cpp:141
Structure which holds a single route and marks for special events.
Definition: pathfind.hpp:142
Object which contains all the possible locations a unit can move to, with associated best routes to t...
Definition: pathfind.hpp:73
A terrain string which is converted to a terrain is a string with 1 or 2 layers the layers are separa...
Definition: translation.hpp:49
Object which defines a time of day with associated bonuses, image, sounds etc.
Definition: time_of_day.hpp:57
#define b