The Battle for Wesnoth  1.19.0-dev
undo_dismiss_action.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2017 - 2024
3  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
4 
5  This program is free software; you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation; either version 2 of the License, or
8  (at your option) any later version.
9  This program is distributed in the hope that it will be useful,
10  but WITHOUT ANY WARRANTY.
11 
12  See the COPYING file for more details.
13 */
14 
16 #include "game_board.hpp"
17 #include "resources.hpp"
18 #include "team.hpp"
19 #include "units/unit.hpp"
20 
21 namespace actions
22 {
23 namespace undo
24 {
25 
26 /**
27  * Writes this into the provided config.
28  */
29 void dismiss_action::write(config & cfg) const
30 {
31  undo_action::write(cfg);
32  dismissed_unit->write(cfg.add_child("unit"));
33 }
34 
35 /**
36  * Undoes this action.
37  * @return true on success; false on an error.
38  */
39 bool dismiss_action::undo(int side)
40 {
41  team &current_team = resources::gameboard->get_team(side);
42 
43  current_team.recall_list().add(dismissed_unit);
45  return true;
46 }
47 
48 }
49 }
A config object defines a single node in a WML file, with access to child nodes.
Definition: config.hpp:159
config & add_child(config_key_type key)
Definition: config.cpp:441
team & get_team(int i)
Definition: game_board.hpp:91
void add(const unit_ptr &ptr, int pos=-1)
Add a unit to the list.
This class stores all the data for a single 'side' (in game nomenclature).
Definition: team.hpp:74
recall_list_manager & recall_list()
Definition: team.hpp:201
game_board * gameboard
Definition: resources.cpp:20
virtual void write(config &cfg) const
Writes this into the provided config.
virtual bool undo(int side)
Undoes this action.
virtual void write(config &cfg) const
Writes this into the provided config.