The Battle for Wesnoth
1.19.5+dev
units
drawer.hpp
Go to the documentation of this file.
1
/*
2
Copyright (C) 2014 - 2024
3
by Chris Beck <render787@gmail.com>
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
*
18
* This wrapper class should be held by the display object when it needs to draw a unit.
19
* The purpose of this is to improve encapsulation -- other parts of the engine like AI
20
* don't need to be exposed to the unit drawing code, and encapsulation like this will
21
* help us to reduce unnecessary includes.
22
*
23
**/
24
25
#pragma once
26
27
#include "
map/location.hpp
"
28
29
#include <vector>
30
31
class
display
;
32
class
display_context
;
33
struct
frame_parameters
;
34
class
gamemap
;
35
namespace
halo
{
class
manager; }
36
class
team
;
37
class
unit
;
38
39
40
class
unit_drawer
41
{
42
public
:
43
explicit
unit_drawer
(
display
& thedisp);
44
45
private
:
46
display
&
disp
;
47
const
display_context
&
dc
;
48
const
gamemap
&
map
;
49
halo::manager
&
halo_man
;
50
const
team
&
viewing_team_ref
;
51
const
team
&
playing_team_ref
;
52
bool
is_blindfolded
;
53
bool
show_everything
;
54
map_location
sel_hex
;
55
map_location
mouse_hex
;
56
double
zoom_factor
;
57
std::set<map_location>
units_that_can_reach_goal
;
58
59
int
hex_size
;
60
int
hex_size_by_2
;
61
62
/** @todo: better name... unclear what the reachable part actually means */
63
bool
selected_or_reachable
(
const
map_location
& loc)
const
;
64
65
void
draw_ellipses
(
const
unit
& u,
const
frame_parameters
& params)
const
;
66
67
public
:
68
/** draw a unit. */
69
void
redraw_unit
(
const
unit
& u)
const
;
70
};
display_context
Abstract class for exposing game data that doesn't depend on the GUI, however which for historical re...
Definition:
display_context.hpp:35
display
Sort-of-Singleton that many classes, both GUI and non-GUI, use to access the game data.
Definition:
display.hpp:97
gamemap
Encapsulates the map of the game.
Definition:
map.hpp:172
halo::manager
Definition:
halo.hpp:40
team
This class stores all the data for a single 'side' (in game nomenclature).
Definition:
team.hpp:75
unit_drawer
Definition:
drawer.hpp:41
unit_drawer::selected_or_reachable
bool selected_or_reachable(const map_location &loc) const
Definition:
drawer.cpp:158
unit_drawer::viewing_team_ref
const team & viewing_team_ref
Definition:
drawer.hpp:50
unit_drawer::map
const gamemap & map
Definition:
drawer.hpp:48
unit_drawer::zoom_factor
double zoom_factor
Definition:
drawer.hpp:56
unit_drawer::redraw_unit
void redraw_unit(const unit &u) const
draw a unit.
Definition:
drawer.cpp:164
unit_drawer::dc
const display_context & dc
Definition:
drawer.hpp:47
unit_drawer::show_everything
bool show_everything
Definition:
drawer.hpp:53
unit_drawer::playing_team_ref
const team & playing_team_ref
Definition:
drawer.hpp:51
unit_drawer::halo_man
halo::manager & halo_man
Definition:
drawer.hpp:49
unit_drawer::draw_ellipses
void draw_ellipses(const unit &u, const frame_parameters ¶ms) const
Definition:
drawer.cpp:463
unit_drawer::disp
display & disp
Definition:
drawer.hpp:46
unit_drawer::units_that_can_reach_goal
std::set< map_location > units_that_can_reach_goal
Definition:
drawer.hpp:57
unit_drawer::hex_size
int hex_size
Definition:
drawer.hpp:59
unit_drawer::sel_hex
map_location sel_hex
Definition:
drawer.hpp:54
unit_drawer::hex_size_by_2
int hex_size_by_2
Definition:
drawer.hpp:60
unit_drawer::unit_drawer
unit_drawer(display &thedisp)
Definition:
drawer.cpp:138
unit_drawer::mouse_hex
map_location mouse_hex
Definition:
drawer.hpp:55
unit_drawer::is_blindfolded
bool is_blindfolded
Definition:
drawer.hpp:52
unit
This class represents a single unit of a specific type.
Definition:
unit.hpp:133
location.hpp
halo
Definition:
halo.cpp:39
frame_parameters
All parameters from a frame at a given instant.
Definition:
frame.hpp:44
map_location
Encapsulates the map of the game.
Definition:
location.hpp:45
Generated by
1.9.1