The Battle for Wesnoth  1.19.10+dev
display.hpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2003 - 2025
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 /**
17  * @file
18  *
19  * map_display and display: classes which take care of
20  * displaying the map and game-data on the screen.
21  *
22  * The display is divided into two main sections:
23  * - the game area, which displays the tiles of the game board, and units on them,
24  * - and the side bar, which appears on the right hand side.
25  * The side bar display is divided into three sections:
26  * - the minimap, which is displayed at the top right
27  * - the game status, which includes the day/night image,
28  * the turn number, information about the current side,
29  * and information about the hex currently moused over (highlighted)
30  * - the unit status, which displays an image and stats
31  * for the current unit.
32  */
33 
34 #pragma once
35 
36 class fake_unit_manager;
37 class terrain_builder;
38 class map_labels;
39 class arrow;
40 class reports;
41 class team;
42 struct overlay;
43 
44 
45 namespace wb {
46  class manager;
47 }
48 
49 #include "animated.hpp"
50 #include "display_context.hpp"
51 #include "drawing_layer.hpp"
52 #include "font/standard_colors.hpp"
53 #include "game_config.hpp"
56 #include "halo.hpp"
57 #include "picture.hpp" //only needed for enums (!)
58 #include "key.hpp"
59 #include "time_of_day.hpp"
60 #include "sdl/rect.hpp"
61 #include "sdl/surface.hpp"
62 #include "sdl/texture.hpp"
63 #include "theme.hpp"
64 #include "widgets/button.hpp"
65 
66 #include <bitset>
67 #include <functional>
68 #include <chrono>
69 #include <cstdint>
70 #include <list>
71 #include <map>
72 #include <memory>
73 #include <vector>
74 
75 namespace display_direction {
76  /**
77  * @note needs to be defined after includes
78  * as it uses std::string
79  */
80  const std::string& get_direction(std::size_t n);
81 }
82 
84 {
87  std::array<SDL_Vertex, 4> alpha_verts;
88 };
89 
90 class gamemap;
91 
92 /**
93  * Sort-of-Singleton that many classes, both GUI and non-GUI, use to access the game data.
94  */
96 {
97 public:
98  display(const display_context* dc,
99  std::weak_ptr<wb::manager> wb,
100  reports& reports_object,
101  const std::string& theme_id,
102  const config& level);
103 
104  virtual ~display();
105  /**
106  * Returns the display object if a display object exists. Otherwise it returns nullptr.
107  * the display object represents the game gui which handles themewml and drawing the map.
108  * A display object only exists during a game or while the mapeditor is running.
109  */
110  static display* get_singleton() { return singleton_ ;}
111 
112  bool show_everything() const { return !dont_show_all_ && !is_blindfolded(); }
113 
114  /** The playing team is the team whose turn it is. */
115  std::size_t playing_team_index() const { return playing_team_index_; }
116 
117  /**
118  * The viewing team is the team currently viewing the game. It's the team whose gold and income
119  * is shown in the top bar of the default theme.
120  *
121  * For players, it will be their side (or one of them, if they control multiple sides).
122  *
123  * The value returned is a 0-based index into the vector returned by dc_->teams().
124  */
125  std::size_t viewing_team_index() const { return viewing_team_index_; }
126 
127  const team& playing_team() const;
128  const team& viewing_team() const;
129 
131  {
133  }
134 
135  /**
136  * Sets the team controlled by the player using the computer.
137  * Data from this team will be displayed in the game status.
138  */
139  void set_viewing_team_index(std::size_t team, bool observe=false);
140 
141  /**
142  * sets the team whose turn it currently is
143  */
144  void set_playing_team_index(std::size_t team);
145 
146  /**
147  * Cancels all the exclusive draw requests.
148  */
150 
151  /**
152  * Allows a unit to request to be the only one drawn in its hex. Useful for situations where
153  * multiple units (one real, multiple temporary) can end up stacked, such as with the whiteboard.
154  * @param loc The location of the unit requesting exclusivity.
155  * @param unit The unit requesting exclusivity.
156  * @return false if there's already an exclusive draw request for this location.
157  */
158  bool add_exclusive_draw(const map_location& loc, const unit& unit);
159 
160  /**
161  * Cancels an exclusive draw request.
162  * @return The id of the unit whose exclusive draw request was canceled, or else
163  * the empty string if there was no exclusive draw request for this location.
164  */
165  std::string remove_exclusive_draw(const map_location& loc);
166 
167  /** Returns true if there is no exclusive draw request for @a loc, or if there is, that it's for @a unit */
168  bool unit_can_draw_here(const map_location& loc, const unit& unit) const;
169 
170  /**
171  * Functions to add and remove overlays from locations.
172  *
173  * An overlay is an image that is displayed on top of the tile.
174  * One tile may have multiple overlays.
175  */
176  void add_overlay(const map_location& loc, overlay&& ov);
177 
178  /** remove_overlay will remove all overlays on a tile. */
179  void remove_overlay(const map_location& loc);
180 
181  /** remove_single_overlay will remove a single overlay from a tile */
182  void remove_single_overlay(const map_location& loc, const std::string& toDelete);
183 
184  /**
185  * Updates internals that cache map size. This should be called when the map
186  * size has changed.
187  */
188  void reload_map();
189 
190  void change_display_context(const display_context* dc);
191 
192  const display_context& context() const
193  {
194  return *dc_;
195  }
196 
198 
199  /**
200  * Applies r,g,b coloring to the map.
201  *
202  * The color is usually taken from @ref get_time_of_day unless @a tod_override is given, in which
203  * case that color is used.
204  *
205  * @param tod_override The ToD to apply to the map instead of that of the current ToD's.
206  */
207  void update_tod(const time_of_day* tod_override = nullptr);
208 
209  /**
210  * Add r,g,b to the colors for all images displayed on the map.
211  *
212  * Used for special effects like flashes.
213  */
214  void adjust_color_overlay(int r, int g, int b);
216 
217  virtual bool in_game() const { return false; }
218  virtual bool in_editor() const { return false; }
219 
220  /** Virtual functions shadowed in game_display. These are needed to generate reports easily, without dynamic casting. Hope to factor out eventually. */
221  virtual const map_location & displayed_unit_hex() const { return map_location::null_location(); }
222  virtual const std::set<std::string>& observers() const { static const std::set<std::string> fake_obs = std::set<std::string> (); return fake_obs; }
223 
224  /**
225  * mapx is the width of the portion of the display which shows the game area.
226  * Between mapx and x is the sidebar region.
227  */
228 
229  const rect& minimap_area() const;
230  const rect& palette_area() const;
231  const rect& unit_image_area() const;
232 
233  /**
234  * Returns the maximum area used for the map
235  * regardless to resolution and view size
236  */
237  rect max_map_area() const;
238 
239  /**
240  * Returns the area used for the map
241  */
242  rect map_area() const;
243 
244  /**
245  * Returns the available area for a map, this may differ
246  * from the above. This area will get the background area
247  * applied to it.
248  */
249  rect map_outside_area() const;
250 
251  /** Check if the bbox of the hex at x,y has pixels outside the area rectangle. */
252  static bool outside_area(const SDL_Rect& area, const int x,const int y);
253 
254  /**
255  * Function which returns the width of a hex in pixels,
256  * up to where the next hex starts.
257  * (i.e. not entirely from tip to tip -- use hex_size()
258  * to get the distance from tip to tip)
259  */
260  static int hex_width() { return (zoom_*3)/4; }
261 
262  /**
263  * Function which returns the size of a hex in pixels
264  * (from top tip to bottom tip or left edge to right edge).
265  */
266  static int hex_size(){ return zoom_; }
267 
268  /** Returns the current zoom factor. */
269  static double get_zoom_factor()
270  {
271  return static_cast<double>(zoom_) / static_cast<double>(game_config::tile_size);
272  }
273 
274  /** Scale the width and height of a rect by the current zoom factor */
275  static rect scaled_to_zoom(const SDL_Rect& r)
276  {
277  const double zf = get_zoom_factor();
278  return {r.x, r.y, int(r.w * zf), int(r.h * zf)};
279  }
280 
281  static point scaled_to_zoom(const point& p)
282  {
283  const double zf = get_zoom_factor();
284  return {int(p.x * zf), int(p.y * zf)};
285  }
286 
287  /**
288  * given x,y co-ordinates of an onscreen pixel, will return the
289  * location of the hex that this pixel corresponds to.
290  * Returns an invalid location if the mouse isn't over any valid location.
291  */
292  map_location hex_clicked_on(int x, int y) const;
293 
294  /**
295  * given x,y co-ordinates of a pixel on the map, will return the
296  * location of the hex that this pixel corresponds to.
297  * Returns an invalid location if the mouse isn't over any valid location.
298  */
299  map_location pixel_position_to_hex(int x, int y) const;
300 
301  /**
302  * given x,y co-ordinates of the mouse, will return the location of the
303  * hex in the minimap that the mouse is currently over, or an invalid
304  * location if the mouse isn't over the minimap.
305  */
306  map_location minimap_location_on(int x, int y);
307 
308  const map_location& selected_hex() const { return selectedHex_; }
309  const map_location& mouseover_hex() const { return mouseoverHex_; }
310 
311  virtual void select_hex(map_location hex);
312  virtual void highlight_hex(map_location hex);
313 
314  /** Function to invalidate the game status displayed on the sidebar. */
316 
317  /** Functions to get the on-screen positions of hexes. */
318  point get_location(const map_location& loc) const;
319 
320  /** Returns the on-screen rect corresponding to a @a loc */
321  rect get_location_rect(const map_location& loc) const;
322 
323  /**
324  * Rectangular area of hexes, allowing to decide how the top and bottom
325  * edges handles the vertical shift for each parity of the x coordinate
326  */
328  int left;
329  int right;
330  int top[2]; // for even and odd values of x, respectively
331  int bottom[2];
332 
333  /** very simple iterator to walk into the rect_of_hexes */
334  struct iterator {
336  : loc_(loc), rect_(rect){}
337 
338  /** increment y first, then when reaching bottom, increment x */
339  iterator& operator++();
340  bool operator==(const iterator &that) const { return that.loc_ == loc_; }
341  bool operator!=(const iterator &that) const { return that.loc_ != loc_; }
342  const map_location& operator*() const {return loc_;}
343 
344  typedef std::forward_iterator_tag iterator_category;
346  typedef int difference_type;
347  typedef const map_location *pointer;
348  typedef const map_location &reference;
349 
350  private:
353  };
355 
356  iterator begin() const;
357  iterator end() const;
358  };
359 
360  /** Return the rectangular area of hexes overlapped by r (r is in screen coordinates) */
361  const rect_of_hexes hexes_under_rect(const rect& r) const;
362 
363  /** Returns the rectangular area of visible hexes */
365 
366  /** Returns true if location (x,y) is covered in shroud. */
367  bool shrouded(const map_location& loc) const;
368 
369  /** Returns true if location (x,y) is covered in fog. */
370  bool fogged(const map_location& loc) const;
371 
372  /** Capture a (map-)screenshot into a surface. */
373  surface screenshot(bool map_screenshot = false);
374 
375  /** Marks everything for rendering including all tiles and sidebar.
376  * Also calls redraw observers. */
377  void queue_rerender();
378 
379  /** Queues repainting to the screen, but doesn't rerender. */
380  void queue_repaint();
381 
382  /** Adds a redraw observer, a function object to be called when a
383  * full rerender is queued. */
384  void add_redraw_observer(const std::function<void(display&)>& f);
385 
386  /** Clear the redraw observers */
387  void clear_redraw_observers();
388 
389  theme& get_theme() { return theme_; }
390  void set_theme(const std::string& new_theme);
391 
392  /**
393  * Retrieves a pointer to a theme UI button.
394  *
395  * @note The returned pointer may either be nullptr, meaning the button
396  * isn't defined by the current theme, or point to a valid
397  * gui::button object. However, the objects retrieved will be
398  * destroyed and recreated by draw() method calls. Do *NOT* store
399  * these pointers for longer than strictly necessary to
400  * accomplish a specific task before the next screen refresh.
401  */
402  std::shared_ptr<gui::button> find_action_button(const std::string& id);
403  std::shared_ptr<gui::button> find_menu_button(const std::string& id);
404 
405  void create_buttons();
406 
407  void layout_buttons();
408 
409  void draw_buttons();
410 
411  /** Hide theme buttons so they don't draw. */
412  void hide_buttons();
413  /** Unhide theme buttons so they draw again. */
414  void unhide_buttons();
415 
416  /** Update the given report. Actual drawing is done in draw_report(). */
417  void refresh_report(const std::string& report_name, const config * new_cfg=nullptr);
418 
419  /**
420  * Draw the specified report.
421  *
422  * If test_run is true, it will simulate the draw without actually
423  * drawing anything. This will add any overflowing information to the
424  * report tooltip, and also registers the tooltip.
425  */
426  void draw_report(const std::string& report_name, bool test_run = false);
427 
428  /** Draw all reports in the given region.
429  * Returns true if something was drawn, false otherwise. */
430  bool draw_reports(const rect& region);
431 
432  void draw_minimap_units();
433 
434  /** Function to invalidate all tiles. */
435  void invalidate_all();
436 
437  /** Function to invalidate a specific tile for redrawing. */
438  bool invalidate(const map_location& loc);
439 
440  bool invalidate(const std::set<map_location>& locs);
441 
442  /**
443  * If this set is partially invalidated, invalidate all its hexes.
444  * Returns if any new invalidation was needed
445  */
446  bool propagate_invalidation(const std::set<map_location>& locs);
447 
448  /** invalidate all hexes under the rectangle rect (in screen coordinates) */
449  bool invalidate_locations_in_rect(const SDL_Rect& rect);
450  bool invalidate_visible_locations_in_rect(const SDL_Rect& rect);
451 
452  /**
453  * Function to invalidate animated terrains and units which may have changed.
454  */
455  void invalidate_animations();
456 
457  /**
458  * Per-location invalidation called by invalidate_animations()
459  * Extra game per-location invalidation (village ownership)
460  */
462 
464 
466 
467  /** Rebuild all dynamic terrain. */
468  void rebuild_all();
469 
470  const theme::action* action_pressed();
471  const theme::menu* menu_pressed();
472 
473  void set_diagnostic(const std::string& msg);
474 
475  double turbo_speed() const;
476 
477  void bounds_check_position();
478  void bounds_check_position(int& xpos, int& ypos) const;
479 
480  /**
481  * Scrolls the display by @a amount pixels.
482  * Invalidation and redrawing will be scheduled.
483  * @return true if the map actually moved.
484  */
485  bool scroll(const point& amount, bool force = false);
486 
487  /** Zooms the display in (true) or out (false). */
488  bool set_zoom(bool increase);
489 
490  /** Sets the display zoom to the specified amount. */
491  bool set_zoom(unsigned int amount, const bool validate_value_and_set_index = true);
492 
493  static bool zoom_at_max();
494  static bool zoom_at_min();
495 
496  /** Sets the zoom amount to the default. */
497  void toggle_default_zoom();
498 
499  bool view_locked() const { return view_locked_; }
500 
501  /** Sets whether the map view is locked (e.g. so the user can't scroll away) */
502  void set_view_locked(bool value) { view_locked_ = value; }
503 
505 
506  /**
507  * Scroll such that location loc is on-screen.
508  * WARP jumps to loc; SCROLL uses scroll speed;
509  * ONSCREEN only scrolls if x,y is offscreen
510  * force : scroll even if preferences tell us not to,
511  * or the view is locked.
512  */
513  void scroll_to_tile(const map_location& loc, SCROLL_TYPE scroll_type=ONSCREEN, bool check_fogged=true,bool force = true);
514 
515  /**
516  * Scroll such that location loc1 is on-screen.
517  * It will also try to make it such that loc2 is on-screen,
518  * but this is not guaranteed. For ONSCREEN scrolls add_spacing
519  * sets the desired minimum distance from the border in hexes.
520  */
521  void scroll_to_tiles(map_location loc1, map_location loc2,
522  SCROLL_TYPE scroll_type=ONSCREEN, bool check_fogged=true,
523  double add_spacing=0.0, bool force=true);
524 
525  /** Scroll to fit as many locations on-screen as possible, starting with the first. */
526  void scroll_to_tiles(const std::vector<map_location>& locs,
527  SCROLL_TYPE scroll_type=ONSCREEN, bool check_fogged=true,
528  bool only_if_possible=false,
529  double add_spacing=0.0, bool force=true);
530 
531  /** Expose the event, so observers can be notified about map scrolling. */
533 
534  /** Check if a tile is fully visible on screen. */
535  bool tile_fully_on_screen(const map_location& loc) const;
536 
537  /** Checks if location @a loc or one of the adjacent tiles is visible on screen. */
538  bool tile_nearly_on_screen(const map_location &loc) const;
539 
540  /** Prevent the game display from drawing.
541  * Used while story screen is showing to prevent flicker. */
542  void set_prevent_draw(bool pd = true);
543  bool get_prevent_draw();
544 
545  /**
546  * @param dest The original destination.
547  * @param submerge How deep underwater it is.
548  * @param size The size of its image.
549  * @param alpha How transparent to make the submerged part.
550  * @param hreverse Whether to flip the image horizontally.
551  * @param vreverse Whether to flip the image vertically.
552  * @return The data necessary for showing the submerged effect for units and map overlays (aka items).
553  */
554  static submerge_data get_submerge_data(const rect& dest, double submerge, const point& size, uint8_t alpha, bool hreverse, bool vreverse);
555 
556 private:
557  bool prevent_draw_ = false;
558 
559 public:
560  /** ToD mask smooth fade */
561  void fade_tod_mask(const std::string& old, const std::string& new_);
562 
563  /** Screen fade */
564  void fade_to(const color_t& color, const std::chrono::milliseconds& duration);
565  void set_fade(const color_t& color);
566 
567 private:
568  color_t fade_color_ = {0,0,0,0};
569 
570 public:
571  /*-------------------------------------------------------*/
572  /* top_level_drawable interface (called by draw_manager) */
573  /*-------------------------------------------------------*/
574 
575  /** Update animations and internal state */
576  virtual void update() override;
577 
578  /** Finalize screen layout. */
579  virtual void layout() override;
580 
581  /** Update offscreen render buffers. */
582  virtual void render() override;
583 
584  /** Paint the indicated region to the screen. */
585  virtual bool expose(const rect& region) override;
586 
587  /** Return the current draw location of the display, on the screen. */
588  virtual rect screen_location() override;
589 
590 private:
591  /** Render textures, for intermediate rendering. */
594 
595  /** Ensure render textures are valid and correct. */
596  void update_render_textures();
597 
598  /** Draw/redraw the off-map background area.
599  * This updates both render textures. */
601 
602  /** Perform rendering of invalidated items. */
603  void draw();
604 
605 public:
606  map_labels& labels();
607  const map_labels& labels() const;
608 
609  /** Holds options for calls to function 'announce' (@ref announce). */
611  {
612  /** Lifetime measured in milliseconds. */
613  std::chrono::milliseconds lifetime;
614 
615  /**
616  * An announcement according these options should replace the
617  * previous announce (typical of fast announcing) or not
618  * (typical of movement feedback).
619  */
621 
623  : lifetime(1600)
624  , discard_previous(false)
625  {
626  }
627  };
628 
629  /** Announce a message prominently. */
630  void announce(const std::string& msg,
631  const color_t& color = font::GOOD_COLOR,
632  const announce_options& options = announce_options());
633 
634  /**
635  * Schedule the minimap for recalculation.
636  * Useful if any terrain in the map has changed.
637  */
638  void recalculate_minimap();
639 
640  /**
641  * Schedule the minimap to be redrawn.
642  * Useful if units have moved about on the map.
643  */
644  void redraw_minimap();
645 
646 private:
647  /** Actually draw the minimap. */
648  void draw_minimap();
649 
650 public:
652 
653  virtual bool has_time_area() const {return false;}
654 
655  void blindfold(bool flag);
656  bool is_blindfolded() const;
657 
658  void write(config& cfg) const;
659 
660 private:
661  void read(const config& cfg);
662 
663 public:
664  /** Init the flag list and the team colors used by ~TC */
665  void init_flags();
666 
667  /** Rebuild the flag list (not team colors) for a single side. */
668  void reinit_flags_for_team(const team&);
669  void reset_reports(reports& reports_object)
670  {
671  reports_object_ = &reports_object;
672  }
673 
674 private:
676 
677 protected:
678  //TODO sort
681  std::weak_ptr<wb::manager> wb_;
682 
683  typedef std::map<map_location, std::string> exclusive_unit_draw_requests_t;
684  /** map of hexes where only one unit should be drawn, the one identified by the associated id string */
686 
688 
689  /**
690  * Get the clipping rectangle for drawing.
691  * Virtual since the editor might use a slightly different approach.
692  */
693  virtual rect get_clip_rect() const;
694 
695  /**
696  * Only called when there's actual redrawing to do. Loops through
697  * invalidated locations and redraws them. Derived classes can override
698  * this, possibly to insert pre- or post-processing around a call to the
699  * base class's function.
700  */
701  virtual void draw_invalidated();
702 
703  /**
704  * Redraws a single gamemap location.
705  */
706  virtual void draw_hex(const map_location& loc);
707 
708  void draw_overlays_at(const map_location& loc);
709 
711 
712  void get_terrain_images(const map_location &loc,
713  const std::string& timeid,
715 
716  std::vector<texture> get_fog_shroud_images(const map_location& loc, image::TYPE image_type);
717 
718  void scroll_to_xy(const point& screen_coordinates, SCROLL_TYPE scroll_type, bool force = true);
719 
720  static void fill_images_list(const std::string& prefix, std::vector<std::string>& images);
721 
722  std::size_t viewing_team_index_;
723  bool dont_show_all_; //const team *viewpoint_;
724  /**
725  * Position of the top-left corner of the viewport, in pixels.
726  *
727  * Dependent on zoom_.. For example, ypos_==72 only means we're one
728  * hex below the top of the map when zoom_ == 72 (the default value).
729  */
733  /**
734  * The current zoom, in pixels (on screen) per 72 pixels (in the
735  * graphic assets), i.e., 72 means 100%.
736  */
737  static unsigned int zoom_;
739  /** The previous value of zoom_. */
740  static unsigned int last_zoom_;
741  const std::unique_ptr<fake_unit_manager> fake_unit_man_;
742  const std::unique_ptr<terrain_builder> builder_;
743  std::function<rect(rect)> minimap_renderer_;
749  const std::unique_ptr<map_labels> map_labels_;
751 
752  /** Event raised when the map is being scrolled */
754 
755  // Not set by the initializer:
756  std::map<std::string, rect> reportLocations_;
757  std::map<std::string, texture> reportSurfaces_;
758  std::map<std::string, config> reports_;
759  std::vector<std::shared_ptr<gui::button>> menu_buttons_, action_buttons_;
760  std::set<map_location> invalidated_;
761  // If we're transitioning from one time of day to the next,
762  // then we will use these two masks on top of all hexes when we blit.
765  uint8_t tod_hex_alpha1 = 0;
766  uint8_t tod_hex_alpha2 = 0;
767  std::vector<std::string> fog_images_;
768  std::vector<std::string> shroud_images_;
769 
773 
774  /** Local cache for prefs::get().animate_map, since it is constantly queried. */
776 
777  /** Local version of prefs::get().animate_water, used to detect when it's changed. */
779 
780 private:
781 
783 
784  /** Animated flags for each team */
785  std::vector<animated<image::locator>> flags_;
786 
787  // This vector is a class member to avoid repeated memory allocations in get_terrain_images(),
788  // which turned out to be a significant bottleneck while profiling.
789  std::vector<texture> terrain_image_vector_;
790 
791 public:
792  /**
793  * Draw text on a hex. (0.5, 0.5) is the center.
794  * The font size is adjusted to the zoom factor.
795  */
796  void draw_text_in_hex(const map_location& loc,
797  const drawing_layer layer, const std::string& text, std::size_t font_size,
798  color_t color, double x_in_hex=0.5, double y_in_hex=0.5);
799 
800 protected:
801 
802  //TODO sort
803  std::size_t playing_team_index_;
804 
805  /**
806  * Helper for rendering the map by ordering draw operations.
807  *
808  * In order to render a hex properly, they need to be rendered per row.
809  * In this row several layers need to be drawn at the same time, mainly
810  * the unit and the background terrain. This is needed since both can spill
811  * into the next hex. The foreground terrain needs to be drawn before to
812  * avoid decapitating a unit.
813  *
814  * In other words:
815  * for every layer
816  * for every row (starting from the top)
817  * for every hex in the row
818  * ...
819  *
820  * this is modified to:
821  * for every layer group
822  * for every row (starting from the top)
823  * for every layer in the group
824  * for every hex in the row
825  * ...
826  */
827  struct draw_helper
828  {
829  /** Controls the ordering of draw calls by layer and location. */
830  const uint32_t key;
831 
832  /** Handles the actual drawing at this location. */
833  std::function<void(const rect&)> do_draw;
834 
835  /** The screen coordinates for the specified hex. This is passed to @ref do_draw */
837 
838  bool operator<(const draw_helper& rhs) const
839  {
840  return key < rhs.key;
841  }
842  };
843 
844  std::list<draw_helper> drawing_buffer_;
845 
846 public:
847  /**
848  * Add an item to the drawing buffer.
849  *
850  * @param layer The layer to draw on.
851  * @param loc The hex the image belongs to, needed for the drawing order.
852  * @param draw_func The draw operation to be run.
853  */
854  void drawing_buffer_add(const drawing_layer layer, const map_location& loc, decltype(draw_helper::do_draw) draw_func);
855 
856 protected:
857 
858  /** Draws the drawing_buffer_ and clears it. */
859  void drawing_buffer_commit();
860 
861  /** Redraws all panels intersecting the given region.
862  * Returns true if something was drawn, false otherwise. */
863  bool draw_all_panels(const rect& region);
864 
865 private:
866  void draw_panel(const theme::panel& panel);
867  void draw_label(const theme::label& label);
868 
869 protected:
870  /** Used to indicate to drawing functions that we are doing a map screenshot */
872 
873 public: //operations for the arrow framework
874 
875  void add_arrow(arrow&);
876 
877  void remove_arrow(arrow&);
878 
879  /** Called by arrow objects when they change. You should not need to call this directly. */
880  void update_arrow(arrow & a);
881 
882 protected:
883 
884  // Tiles lit for showing where unit(s) can reach
885  typedef std::map<map_location,unsigned int> reach_map;
889  // The team assigned to the reachmap being drawn
892 
893  typedef std::map<map_location, std::vector<overlay>> overlay_map;
894 
895  virtual overlay_map& get_overlays() = 0;
896 
897 private:
898  /** Count work done for the debug info displayed under fps */
901 
902  std::vector<std::function<void(display&)>> redraw_observers_;
903 
904 public:
905  enum DEBUG_FLAG {
906  /** Overlays x,y coords on tiles */
908 
909  /** Overlays terrain codes on tiles */
911 
912  /** Overlays number of bitmaps on tiles */
914 
915  /** Separates background and foreground terrain layers. */
917 
918  /** Toggle to continuously redraw the whole map. */
920 
921  /** Dummy entry to size the bitmask. Keep this last! */
923  };
924 
926  {
927  return debug_flags_.test(flag);
928  }
929 
930  void set_debug_flag(DEBUG_FLAG flag, bool value)
931  {
932  debug_flags_.set(flag, value);
933  }
934 
936  {
937  debug_flags_.flip(flag);
938  }
939 
940 private:
941  /** Currently set debug flags. */
942  std::bitset<__NUM_DEBUG_FLAGS> debug_flags_;
943 
944  /** Maps the list of arrows for each location */
945  std::map<map_location, std::list<arrow*>> arrows_map_;
946 
948 
949  std::vector<std::tuple<int, int, int>> fps_history_;
950 
951 protected:
952  static display * singleton_;
953 };
954 
955 struct blindfold
956 {
957  blindfold(display& d, bool lock=true) : display_(d), blind(lock) {
958  if(blind) {
959  display_.blindfold(true);
960  }
961  }
962 
964  unblind();
965  }
966 
967  void unblind() {
968  if(blind) {
969  display_.blindfold(false);
971  blind = false;
972  }
973  }
974 
975 private:
977  bool blind;
978 };
map_location loc
Definition: move.cpp:172
Animate units.
double g
Definition: astarsearch.cpp:63
Class that keeps track of all the keys on the keyboard.
Definition: key.hpp:29
Arrows destined to be drawn on the map.
Definition: arrow.hpp:30
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:158
Abstract class for exposing game data that doesn't depend on the GUI, however which for historical re...
Sort-of-Singleton that many classes, both GUI and non-GUI, use to access the game data.
Definition: display.hpp:96
const team & viewing_team() const
Definition: display.cpp:335
void unhide_buttons()
Unhide theme buttons so they draw again.
Definition: display.cpp:935
void set_viewing_team_index(std::size_t team, bool observe=false)
Sets the team controlled by the player using the computer.
Definition: display.cpp:340
void reset_reports(reports &reports_object)
Definition: display.hpp:669
bool map_screenshot_
Used to indicate to drawing functions that we are doing a map screenshot.
Definition: display.hpp:871
void draw_text_in_hex(const map_location &loc, const drawing_layer layer, const std::string &text, std::size_t font_size, color_t color, double x_in_hex=0.5, double y_in_hex=0.5)
Draw text on a hex.
Definition: display.cpp:1367
void layout_buttons()
Definition: display.cpp:783
bool redraw_background_
Definition: display.hpp:745
void update_render_textures()
Ensure render textures are valid and correct.
Definition: display.cpp:2383
void toggle_debug_flag(DEBUG_FLAG flag)
Definition: display.hpp:935
static unsigned int last_zoom_
The previous value of zoom_.
Definition: display.hpp:740
std::size_t viewing_team_index_
Definition: display.hpp:722
void write(config &cfg) const
Definition: display.cpp:3134
static bool zoom_at_min()
Definition: display.cpp:1696
std::map< map_location, std::vector< overlay > > overlay_map
Definition: display.hpp:893
void get_terrain_images(const map_location &loc, const std::string &timeid, TERRAIN_TYPE terrain_type)
Definition: display.cpp:1032
void remove_overlay(const map_location &loc)
remove_overlay will remove all overlays on a tile.
Definition: display.cpp:131
virtual bool has_time_area() const
Definition: display.hpp:653
map_location selectedHex_
Definition: display.hpp:770
void recalculate_minimap()
Schedule the minimap for recalculation.
Definition: display.cpp:1474
bool unit_can_draw_here(const map_location &loc, const unit &unit) const
Returns true if there is no exclusive draw request for loc, or if there is, that it's for unit.
Definition: display.cpp:379
void redraw_minimap()
Schedule the minimap to be redrawn.
Definition: display.cpp:1495
point get_location(const map_location &loc) const
Functions to get the on-screen positions of hexes.
Definition: display.cpp:672
bool invalidate_locations_in_rect(const SDL_Rect &rect)
invalidate all hexes under the rectangle rect (in screen coordinates)
Definition: display.cpp:3032
virtual void render() override
Update offscreen render buffers.
Definition: display.cpp:2303
void remove_single_overlay(const map_location &loc, const std::string &toDelete)
remove_single_overlay will remove a single overlay from a tile
Definition: display.cpp:136
static bool outside_area(const SDL_Rect &area, const int x, const int y)
Check if the bbox of the hex at x,y has pixels outside the area rectangle.
Definition: display.cpp:523
void fade_tod_mask(const std::string &old, const std::string &new_)
ToD mask smooth fade.
Definition: display.cpp:2098
bool add_exclusive_draw(const map_location &loc, const unit &unit)
Allows a unit to request to be the only one drawn in its hex.
Definition: display.cpp:364
bool invalidate(const map_location &loc)
Function to invalidate a specific tile for redrawing.
Definition: display.cpp:2979
void set_playing_team_index(std::size_t team)
sets the team whose turn it currently is
Definition: display.cpp:357
uint8_t tod_hex_alpha1
Definition: display.hpp:765
const team & playing_team() const
Definition: display.cpp:330
void announce(const std::string &msg, const color_t &color=font::GOOD_COLOR, const announce_options &options=announce_options())
Announce a message prominently.
Definition: display.cpp:1458
bool view_locked_
Definition: display.hpp:731
double turbo_speed() const
Definition: display.cpp:2023
@ ONSCREEN
Definition: display.hpp:504
@ ONSCREEN_WARP
Definition: display.hpp:504
@ SCROLL
Definition: display.hpp:504
void scroll_to_xy(const point &screen_coordinates, SCROLL_TYPE scroll_type, bool force=true)
Definition: display.cpp:1795
int invalidated_hexes_
Count work done for the debug info displayed under fps.
Definition: display.hpp:899
void adjust_color_overlay(int r, int g, int b)
Add r,g,b to the colors for all images displayed on the map.
Definition: display.cpp:398
void set_fade(const color_t &color)
Definition: display.cpp:2152
void queue_repaint()
Queues repainting to the screen, but doesn't rerender.
Definition: display.cpp:2209
bool reach_map_changed_
Definition: display.hpp:888
static int hex_size()
Function which returns the size of a hex in pixels (from top tip to bottom tip or left edge to right ...
Definition: display.hpp:266
static double get_zoom_factor()
Returns the current zoom factor.
Definition: display.hpp:269
const rect & unit_image_area() const
Definition: display.cpp:466
TERRAIN_TYPE
Definition: display.hpp:710
@ FOREGROUND
Definition: display.hpp:710
@ BACKGROUND
Definition: display.hpp:710
bool propagate_invalidation(const std::set< map_location > &locs)
If this set is partially invalidated, invalidate all its hexes.
Definition: display.cpp:3000
void clear_redraw_observers()
Clear the redraw observers.
Definition: display.cpp:2221
void invalidate_game_status()
Function to invalidate the game status displayed on the sidebar.
Definition: display.hpp:315
const theme::action * action_pressed()
Definition: display.cpp:1426
static submerge_data get_submerge_data(const rect &dest, double submerge, const point &size, uint8_t alpha, bool hreverse, bool vreverse)
Definition: display.cpp:2051
std::shared_ptr< gui::button > find_action_button(const std::string &id)
Retrieves a pointer to a theme UI button.
Definition: display.cpp:763
void set_theme(const std::string &new_theme)
Definition: display.cpp:241
void rebuild_all()
Rebuild all dynamic terrain.
Definition: display.cpp:426
void change_display_context(const display_context *dc)
Definition: display.cpp:437
void set_prevent_draw(bool pd=true)
Prevent the game display from drawing.
Definition: display.cpp:2037
void clear_exclusive_draws()
Cancels all the exclusive draw requests.
Definition: display.hpp:149
virtual overlay_map & get_overlays()=0
theme theme_
Definition: display.hpp:732
tod_color color_adjust_
Definition: display.hpp:947
bool get_prevent_draw()
Definition: display.cpp:2046
virtual void layout() override
Finalize screen layout.
Definition: display.cpp:2272
virtual void highlight_hex(map_location hex)
Definition: display.cpp:1398
void update_tod(const time_of_day *tod_override=nullptr)
Applies r,g,b coloring to the map.
Definition: display.cpp:385
void add_redraw_observer(const std::function< void(display &)> &f)
Adds a redraw observer, a function object to be called when a full rerender is queued.
Definition: display.cpp:2216
static bool zoom_at_max()
Definition: display.cpp:1691
static display * singleton_
Definition: display.hpp:952
std::shared_ptr< gui::button > find_menu_button(const std::string &id)
Definition: display.cpp:773
void render_map_outside_area()
Draw/redraw the off-map background area.
Definition: display.cpp:2428
map_labels & labels()
Definition: display.cpp:2444
std::size_t playing_team_index() const
The playing team is the team whose turn it is.
Definition: display.hpp:115
void remove_arrow(arrow &)
Definition: display.cpp:3110
@ DEBUG_COORDINATES
Overlays x,y coords on tiles.
Definition: display.hpp:907
@ DEBUG_BENCHMARK
Toggle to continuously redraw the whole map.
Definition: display.hpp:919
@ __NUM_DEBUG_FLAGS
Dummy entry to size the bitmask.
Definition: display.hpp:922
@ DEBUG_NUM_BITMAPS
Overlays number of bitmaps on tiles.
Definition: display.hpp:913
@ DEBUG_FOREGROUND
Separates background and foreground terrain layers.
Definition: display.hpp:916
@ DEBUG_TERRAIN_CODES
Overlays terrain codes on tiles.
Definition: display.hpp:910
void process_reachmap_changes()
Definition: display.cpp:3151
void draw_minimap_units()
Definition: display.cpp:1551
void scroll_to_tile(const map_location &loc, SCROLL_TYPE scroll_type=ONSCREEN, bool check_fogged=true, bool force=true)
Scroll such that location loc is on-screen.
Definition: display.cpp:1873
map_location pixel_position_to_hex(int x, int y) const
given x,y co-ordinates of a pixel on the map, will return the location of the hex that this pixel cor...
Definition: display.cpp:545
void invalidate_animations_location(const map_location &loc)
Per-location invalidation called by invalidate_animations() Extra game per-location invalidation (vil...
Definition: display.cpp:3047
map_location mouseoverHex_
Definition: display.hpp:771
bool fogged(const map_location &loc) const
Returns true if location (x,y) is covered in fog.
Definition: display.cpp:667
bool view_locked() const
Definition: display.hpp:499
bool set_zoom(bool increase)
Zooms the display in (true) or out (false).
Definition: display.cpp:1701
std::map< std::string, rect > reportLocations_
Definition: display.hpp:756
const rect_of_hexes get_visible_hexes() const
Returns the rectangular area of visible hexes.
Definition: display.hpp:364
bool invalidateAll_
Definition: display.hpp:746
int drawn_hexes_
Definition: display.hpp:900
void draw_overlays_at(const map_location &loc)
Definition: display.cpp:2655
texture get_flag(const map_location &loc)
Definition: display.cpp:312
tod_color get_color_overlay() const
Definition: display.hpp:215
void invalidate_all()
Function to invalidate all tiles.
Definition: display.cpp:2972
std::map< std::string, config > reports_
Definition: display.hpp:758
std::bitset< __NUM_DEBUG_FLAGS > debug_flags_
Currently set debug flags.
Definition: display.hpp:942
SDL_Rect minimap_location_
Definition: display.hpp:744
point viewport_origin_
Position of the top-left corner of the viewport, in pixels.
Definition: display.hpp:730
map_location get_middle_location() const
Definition: display.cpp:3128
void bounds_check_position()
Definition: display.cpp:2005
std::function< rect(rect)> minimap_renderer_
Definition: display.hpp:743
surface screenshot(bool map_screenshot=false)
Capture a (map-)screenshot into a surface.
Definition: display.cpp:718
void init_flags()
Init the flag list and the team colors used by ~TC.
Definition: display.cpp:252
std::vector< std::shared_ptr< gui::button > > action_buttons_
Definition: display.hpp:759
void drawing_buffer_add(const drawing_layer layer, const map_location &loc, decltype(draw_helper::do_draw) draw_func)
Add an item to the drawing buffer.
Definition: display.cpp:1250
rect map_outside_area() const
Returns the available area for a map, this may differ from the above.
Definition: display.cpp:514
std::size_t reach_map_team_index_
Definition: display.hpp:890
bool prevent_draw_
Definition: display.hpp:557
exclusive_unit_draw_requests_t exclusive_unit_draw_requests_
map of hexes where only one unit should be drawn, the one identified by the associated id string
Definition: display.hpp:685
bool tile_nearly_on_screen(const map_location &loc) const
Checks if location loc or one of the adjacent tiles is visible on screen.
Definition: display.cpp:1786
void reload_map()
Updates internals that cache map size.
Definition: display.cpp:431
rect max_map_area() const
Returns the maximum area used for the map regardless to resolution and view size.
Definition: display.cpp:471
halo::manager & get_halo_manager()
Definition: display.hpp:197
bool tile_fully_on_screen(const map_location &loc) const
Check if a tile is fully visible on screen.
Definition: display.cpp:1781
map_location minimap_location_on(int x, int y)
given x,y co-ordinates of the mouse, will return the location of the hex in the minimap that the mous...
Definition: display.cpp:686
void scroll_to_tiles(map_location loc1, map_location loc2, SCROLL_TYPE scroll_type=ONSCREEN, bool check_fogged=true, double add_spacing=0.0, bool force=true)
Scroll such that location loc1 is on-screen.
Definition: display.cpp:1883
bool is_blindfolded() const
Definition: display.cpp:451
std::vector< texture > terrain_image_vector_
Definition: display.hpp:789
std::vector< std::string > fog_images_
Definition: display.hpp:767
void fade_to(const color_t &color, const std::chrono::milliseconds &duration)
Screen fade.
Definition: display.cpp:2120
virtual bool in_editor() const
Definition: display.hpp:218
texture tod_hex_mask2
Definition: display.hpp:764
theme & get_theme()
Definition: display.hpp:389
const display_context & context() const
Definition: display.hpp:192
bool invalidate_visible_locations_in_rect(const SDL_Rect &rect)
Definition: display.cpp:3027
std::map< map_location, std::list< arrow * > > arrows_map_
Maps the list of arrows for each location.
Definition: display.hpp:945
std::map< map_location, std::string > exclusive_unit_draw_requests_t
Definition: display.hpp:683
void add_overlay(const map_location &loc, overlay &&ov)
Functions to add and remove overlays from locations.
Definition: display.cpp:118
std::vector< std::function< void(display &)> > redraw_observers_
Definition: display.hpp:902
void read(const config &cfg)
Definition: display.cpp:3143
const theme::menu * menu_pressed()
Definition: display.cpp:1442
const rect_of_hexes hexes_under_rect(const rect &r) const
Return the rectangular area of hexes overlapped by r (r is in screen coordinates)
Definition: display.cpp:619
const std::unique_ptr< terrain_builder > builder_
Definition: display.hpp:742
virtual const map_location & displayed_unit_hex() const
Virtual functions shadowed in game_display.
Definition: display.hpp:221
std::vector< animated< image::locator > > flags_
Animated flags for each team.
Definition: display.hpp:785
const map_location & selected_hex() const
Definition: display.hpp:308
rect get_location_rect(const map_location &loc) const
Returns the on-screen rect corresponding to a loc.
Definition: display.cpp:680
events::generic_event & scroll_event() const
Expose the event, so observers can be notified about map scrolling.
Definition: display.hpp:532
static void fill_images_list(const std::string &prefix, std::vector< std::string > &images)
Definition: display.cpp:404
void draw_report(const std::string &report_name, bool test_run=false)
Draw the specified report.
Definition: display.cpp:2798
std::set< map_location > invalidated_
Definition: display.hpp:760
color_t fade_color_
Definition: display.hpp:568
virtual const time_of_day & get_time_of_day(const map_location &loc=map_location::null_location()) const =0
std::vector< texture > get_fog_shroud_images(const map_location &loc, image::TYPE image_type)
Definition: display.cpp:945
void queue_rerender()
Marks everything for rendering including all tiles and sidebar.
Definition: display.cpp:2157
void create_buttons()
Definition: display.cpp:838
int blindfold_ctr_
Definition: display.hpp:675
std::string remove_exclusive_draw(const map_location &loc)
Cancels an exclusive draw request.
Definition: display.cpp:371
bool invalidateGameStatus_
Definition: display.hpp:748
reach_map reach_map_old_
Definition: display.hpp:887
virtual void draw_invalidated()
Only called when there's actual redrawing to do.
Definition: display.cpp:2459
void drawing_buffer_commit()
Draws the drawing_buffer_ and clears it.
Definition: display.cpp:1255
rect map_area() const
Returns the area used for the map.
Definition: display.cpp:488
int zoom_index_
Definition: display.hpp:738
void draw_panel(const theme::panel &panel)
Definition: display.cpp:1284
void draw_buttons()
Definition: display.cpp:903
static int hex_width()
Function which returns the width of a hex in pixels, up to where the next hex starts.
Definition: display.hpp:260
void set_debug_flag(DEBUG_FLAG flag, bool value)
Definition: display.hpp:930
void reset_standing_animations()
Definition: display.cpp:3096
bool animate_water_
Local version of prefs::get().animate_water, used to detect when it's changed.
Definition: display.hpp:778
bool debug_flag_set(DEBUG_FLAG flag) const
Definition: display.hpp:925
void toggle_default_zoom()
Sets the zoom amount to the default.
Definition: display.cpp:1769
virtual rect get_clip_rect() const
Get the clipping rectangle for drawing.
Definition: display.cpp:2454
CKey keys_
Definition: display.hpp:772
reports * reports_object_
Definition: display.hpp:750
bool draw_reports(const rect &region)
Draw all reports in the given region.
Definition: display.cpp:2958
void invalidate_animations()
Function to invalidate animated terrains and units which may have changed.
Definition: display.cpp:3058
virtual rect screen_location() override
Return the current draw location of the display, on the screen.
Definition: display.cpp:2375
void hide_buttons()
Hide theme buttons so they don't draw.
Definition: display.cpp:925
virtual bool expose(const rect &region) override
Paint the indicated region to the screen.
Definition: display.cpp:2330
std::list< draw_helper > drawing_buffer_
Definition: display.hpp:844
uint8_t tod_hex_alpha2
Definition: display.hpp:766
std::vector< std::shared_ptr< gui::button > > menu_buttons_
Definition: display.hpp:759
virtual void update() override
Update animations and internal state.
Definition: display.cpp:2255
void draw()
Perform rendering of invalidated items.
Definition: display.cpp:2226
const rect & minimap_area() const
mapx is the width of the portion of the display which shows the game area.
Definition: display.cpp:456
texture back_
Definition: display.hpp:593
events::generic_event scroll_event_
Event raised when the map is being scrolled.
Definition: display.hpp:753
bool show_everything() const
Definition: display.hpp:112
terrain_builder & get_builder()
Definition: display.hpp:465
virtual void draw_hex(const map_location &loc)
Redraws a single gamemap location.
Definition: display.cpp:2495
texture tod_hex_mask1
Definition: display.hpp:763
virtual bool in_game() const
Definition: display.hpp:217
virtual ~display()
Definition: display.cpp:231
const rect & palette_area() const
Definition: display.cpp:461
std::map< map_location, unsigned int > reach_map
Definition: display.hpp:885
static display * get_singleton()
Returns the display object if a display object exists.
Definition: display.hpp:110
std::size_t playing_team_index_
Definition: display.hpp:803
std::vector< std::tuple< int, int, int > > fps_history_
Definition: display.hpp:949
halo::manager halo_man_
Definition: display.hpp:680
void reinit_flags_for_team(const team &)
Rebuild the flag list (not team colors) for a single side.
Definition: display.cpp:263
void draw_minimap()
Actually draw the minimap.
Definition: display.cpp:1500
texture front_
Render textures, for intermediate rendering.
Definition: display.hpp:592
bool viewing_team_is_playing() const
Definition: display.hpp:130
std::size_t viewing_team_index() const
The viewing team is the team currently viewing the game.
Definition: display.hpp:125
const map_location & mouseover_hex() const
Definition: display.hpp:309
map_location hex_clicked_on(int x, int y) const
given x,y co-ordinates of an onscreen pixel, will return the location of the hex that this pixel corr...
Definition: display.cpp:531
void update_arrow(arrow &a)
Called by arrow objects when they change.
Definition: display.cpp:3117
void draw_label(const theme::label &label)
Definition: display.cpp:1309
const std::unique_ptr< fake_unit_manager > fake_unit_man_
Definition: display.hpp:741
const display_context * dc_
Definition: display.hpp:679
bool animate_map_
Local cache for prefs::get().animate_map, since it is constantly queried.
Definition: display.hpp:775
static point scaled_to_zoom(const point &p)
Definition: display.hpp:281
std::vector< std::string > shroud_images_
Definition: display.hpp:768
void set_view_locked(bool value)
Sets whether the map view is locked (e.g.
Definition: display.hpp:502
static rect scaled_to_zoom(const SDL_Rect &r)
Scale the width and height of a rect by the current zoom factor.
Definition: display.hpp:275
bool scroll(const point &amount, bool force=false)
Scrolls the display by amount pixels.
Definition: display.cpp:1598
virtual const std::set< std::string > & observers() const
Definition: display.hpp:222
static unsigned int zoom_
The current zoom, in pixels (on screen) per 72 pixels (in the graphic assets), i.e....
Definition: display.hpp:737
bool shrouded(const map_location &loc) const
Returns true if location (x,y) is covered in shroud.
Definition: display.cpp:662
bool dont_show_all_
Definition: display.hpp:723
void blindfold(bool flag)
Definition: display.cpp:443
void refresh_report(const std::string &report_name, const config *new_cfg=nullptr)
Update the given report.
Definition: display.cpp:2728
std::weak_ptr< wb::manager > wb_
Definition: display.hpp:681
void add_arrow(arrow &)
Definition: display.cpp:3103
const std::unique_ptr< map_labels > map_labels_
Definition: display.hpp:749
void set_diagnostic(const std::string &msg)
Definition: display.cpp:1408
virtual void select_hex(map_location hex)
Definition: display.cpp:1390
int diagnostic_label_
Definition: display.hpp:747
std::map< std::string, texture > reportSurfaces_
Definition: display.hpp:757
bool draw_all_panels(const rect &region)
Redraws all panels intersecting the given region.
Definition: display.cpp:1345
reach_map reach_map_
Definition: display.hpp:886
display(const display_context *dc, std::weak_ptr< wb::manager > wb, reports &reports_object, const std::string &theme_id, const config &level)
Definition: display.cpp:142
Manages a list of fake units for the display object.
Encapsulates the map of the game.
Definition: map.hpp:172
A top-level drawable item (TLD), such as a window.
Middleware class that tracks framerate and times.
This class stores all the data for a single 'side' (in game nomenclature).
Definition: team.hpp:75
The class terrain_builder is constructed from a config object, and a gamemap object.
Definition: builder.hpp:48
Wrapper class to encapsulate creation and management of an SDL_Texture.
Definition: texture.hpp:33
Definition: theme.hpp:44
This class represents a single unit of a specific type.
Definition: unit.hpp:133
This class is the frontend of the whiteboard framework for the rest of the Wesnoth code.
Definition: manager.hpp:44
drawing_layer
std::string label
What to show in the filter's drop-down list.
Definition: manager.cpp:201
const std::string & get_direction(std::size_t n)
Definition: display.cpp:830
void rect(const SDL_Rect &rect)
Draw a rectangle.
Definition: draw.cpp:160
const color_t GOOD_COLOR
unsigned int tile_size
Definition: game_config.cpp:55
TYPE
Used to specify the rendering format of images.
Definition: picture.hpp:162
Unit and team statistics.
std::size_t size(std::string_view str)
Length in characters of a UTF-8 string.
Definition: unicode.cpp:85
Definition: display.hpp:45
static void msg(const char *act, debug_info &i, const char *to="", const char *result="")
Definition: debugger.cpp:109
Contains the SDL_Rect helper code.
This file contains object "key", which is used to store information about keys while annotation parsi...
bool blind
Definition: display.hpp:977
blindfold(display &d, bool lock=true)
Definition: display.hpp:957
~blindfold()
Definition: display.hpp:963
void unblind()
Definition: display.hpp:967
display & display_
Definition: display.hpp:976
The basic class for representing 8-bit RGB or RGBA colour values.
Definition: color.hpp:59
Holds options for calls to function 'announce' (announce).
Definition: display.hpp:611
bool discard_previous
An announcement according these options should replace the previous announce (typical of fast announc...
Definition: display.hpp:620
std::chrono::milliseconds lifetime
Lifetime measured in milliseconds.
Definition: display.hpp:613
Helper for rendering the map by ordering draw operations.
Definition: display.hpp:828
std::function< void(const rect &)> do_draw
Handles the actual drawing at this location.
Definition: display.hpp:833
const uint32_t key
Controls the ordering of draw calls by layer and location.
Definition: display.hpp:830
rect dest
The screen coordinates for the specified hex.
Definition: display.hpp:836
bool operator<(const draw_helper &rhs) const
Definition: display.hpp:838
very simple iterator to walk into the rect_of_hexes
Definition: display.hpp:334
const map_location & operator*() const
Definition: display.hpp:342
std::forward_iterator_tag iterator_category
Definition: display.hpp:344
iterator & operator++()
increment y first, then when reaching bottom, increment x
Definition: display.cpp:597
const rect_of_hexes & rect_
Definition: display.hpp:352
bool operator==(const iterator &that) const
Definition: display.hpp:340
const map_location * pointer
Definition: display.hpp:347
bool operator!=(const iterator &that) const
Definition: display.hpp:341
iterator(const map_location &loc, const rect_of_hexes &rect)
Definition: display.hpp:335
const map_location & reference
Definition: display.hpp:348
Rectangular area of hexes, allowing to decide how the top and bottom edges handles the vertical shift...
Definition: display.hpp:327
iterator end() const
Definition: display.cpp:614
iterator begin() const
Definition: display.cpp:610
Encapsulates the map of the game.
Definition: location.hpp:45
static const map_location & null_location()
Definition: location.hpp:102
Holds a 2D point.
Definition: point.hpp:25
An abstract description of a rectangle with integer coordinates.
Definition: rect.hpp:49
std::array< SDL_Vertex, 4 > alpha_verts
Definition: display.hpp:87
rect unsub_dest
Definition: display.hpp:86
rect unsub_src
Definition: display.hpp:85
Object which defines a time of day with associated bonuses, image, sounds etc.
Definition: time_of_day.hpp:57
Small struct to store and manipulate ToD color adjusts.
Definition: time_of_day.hpp:27
mock_party p
static map_location::direction n
Definitions related to theme-support.
#define d
#define f
#define b