The Battle for Wesnoth  1.19.10+dev
game.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 #pragma once
17 
18 #include "mt_rng.hpp"
21 #include "side_controller.hpp"
22 
23 #include "utils/optional_fwd.hpp"
24 
25 #include <vector>
26 
27 // class player;
28 
29 namespace wesnothd
30 {
31 typedef std::vector<player_iterator> user_vector;
32 typedef std::vector<utils::optional<player_iterator>> side_vector;
33 class server;
34 
35 class game
36 {
37 public:
39  player_iterator host,
40  bool is_queue_game,
41  const std::string& name = "",
42  bool save_replays = false,
43  const std::string& replay_save_path = "");
44 
45  ~game();
46 
47  /**
48  * This ID is reused between scenarios of MP campaigns.
49  * This ID resets when wesnothd is restarted.
50  * This is generally used when needing to find a particular running game.
51  * @return an ID that uniquely identifies the game within the currently running wesnothd instance.
52  */
53  int id() const
54  {
55  return id_;
56  }
57 
58  /**
59  * This ID is not reused between scenarios of MP campaigns.
60  * This ID resets when wesnothd is restarted.
61  * This is generally used during database queries.
62  *
63  * @return an ID that uniquely identifies the game within the currently running wesnothd instance.
64  */
65  int db_id() const
66  {
67  return db_id_;
68  }
69 
70  /**
71  * Increments the ID used when running database queries.
72  */
73  void next_db_id()
74  {
75  db_id_ = db_id_num++;
76  }
77 
78  /**
79  * @return The game's name.
80  */
81  const std::string& name() const
82  {
83  return name_;
84  }
85 
86  /**
87  * @param player The player being checked.
88  * @return Whether the provided player is the game's owner(host).
89  */
91  {
92  return (player == owner_);
93  }
94 
95  /**
96  * @param player The player being checked.
97  * @return Whether the provided player has joined the game.
98  */
100  {
101  return is_player(player) || is_observer(player);
102  }
103 
104  /**
105  * @return Whether observers are allowed to join.
106  */
107  bool allow_observers() const;
108 
109  /**
110  * @param player The player being checked.
111  * @return Whether the provided player is an observer of this game.
112  */
113  bool is_observer(player_iterator player) const;
114 
115  /**
116  * @param player The player being checked.
117  * @return Whether the provided player is playing this game (aka owns one or more sides).
118  */
119  bool is_player(player_iterator player) const;
120 
121  /**
122  * @param player The player being checked (by iterator).
123  * @param name The player being checked (by username).
124  * @return Whether the connection's ip address or username is banned from this game.
125  */
126  bool player_is_banned(player_iterator player, const std::string& name) const;
127 
128  /**
129  * When the host sends the new scenario of a mp campaign
130  *
131  * @param sender The player sending the scenario data.
132  */
133  void new_scenario(player_iterator sender);
134 
135  /**
136  * @return Whether this game contains scenario data and thus has been initialized.
137  */
138  bool level_init() const
139  {
140  return level_.child("snapshot") || level_.child("scenario");
141  }
142 
143  const std::string get_scenario_id() const;
144 
145  /**
146  * The non-const version.
147  *
148  * @param data The data describing the level for a game.
149  * @return The [scenario] child node if it exists, else the [snapshot] child if it exists, else @a data.
150  */
152  {
153  if(simple_wml::node* scenario = data.child("scenario")) {
154  return scenario;
155  } else if(simple_wml::node* snapshot = data.child("snapshot")) {
156  return snapshot;
157  }
158 
159  return &data;
160  }
161 
162  /**
163  * The const version.
164  *
165  * @param data The data describing the level for a game.
166  * @return The [scenario] child node if it exists, else the [snapshot] child if it exists, else @a data.
167  */
169  {
170  if(const simple_wml::node* scenario = data.child("scenario")) {
171  return scenario;
172  } else if(const simple_wml::node* snapshot = data.child("snapshot")) {
173  return snapshot;
174  }
175 
176  return &data;
177  }
178 
179  /**
180  * @return The nodes containing the sides in this game.
181  */
183  {
184  return starting_pos(level_.root())->children("side");
185  }
186 
187  /**
188  * @return Whether this game has started yet.
189  */
190  bool started() const
191  {
192  return started_;
193  }
194 
195  /**
196  * @return The number of players. One player can have multiple sides.
197  */
198  std::size_t nplayers() const
199  {
200  return players_.size();
201  }
202 
203  /**
204  * @return The number of observers in this game.
205  */
206  std::size_t nobservers() const
207  {
208  return observers_.size();
209  }
210 
211  /**
212  * @return This game's current turn.
213  */
214  std::size_t current_turn() const
215  {
216  return current_turn_;
217  }
218 
219  /**
220  * @return The name of the replay for this game.
221  */
222  std::string get_replay_filename();
223 
224  /** Toggles whether all observers are muted or not. */
225  void mute_all_observers();
226 
227  /**
228  * Mute an observer or give a message of all currently muted observers if no name is given.
229  *
230  * @param mute The observer to mute. Empty if sending a message to muted observers.
231  * @param muter The player doing the muting.
232  */
233  void mute_observer(const simple_wml::node& mute, player_iterator muter);
234 
235  /**
236  * Unmute an observer or unmute all currently muted observers if no name is given.
237  *
238  * @param unmute The observer to unmute. Empty if unmuting all observers.
239  * @param unmuter The player doing the unmuting.
240  */
241  void unmute_observer(const simple_wml::node& unmute, player_iterator unmuter);
242 
243  /**
244  * Kick a user from this game by name.
245  *
246  * @param kick The user to kick.
247  * @param kicker The player doing the kicking.
248  * @return The iterator to the removed member if successful, empty optional otherwise.
249  */
250  utils::optional<player_iterator> kick_member(const simple_wml::node& kick, player_iterator kicker);
251 
252  /**
253  * Ban a user by name.
254  *
255  * The user does not need to be in this game but logged in.
256  *
257  * @param ban The user to ban.
258  * @param banner The player doing the banning.
259  * @return The iterator to the banned player if he was in this game, empty optional otherwise.
260  */
261  utils::optional<player_iterator> ban_user(const simple_wml::node& ban, player_iterator banner);
262 
263  /**
264  * Unban a user by name.
265  *
266  * The user does not need to be in this game but logged in.
267  *
268  * @param unban The user to unban.
269  * @param unbanner The player doing the unbanning.
270  */
271  void unban_user(const simple_wml::node& unban, player_iterator unbanner);
272 
273  /**
274  * Add a user to the game.
275  *
276  * @todo differentiate between "observers not allowed" and "player already in the game" errors.
277  * maybe return a string with an error message.
278  *
279  * @param player The player to add.
280  * @param observer Whether to add the player as an observer.
281  * @return True if the user successfully joined the game, false otherwise.
282  */
283  bool add_player(player_iterator player, bool observer = false);
284 
285  /**
286  * Removes a user from the game.
287  *
288  * @param player The player to remove.
289  * @param disconnect If the player disconnected from the server entirely.
290  * @param destruct If the game is ending as well.
291  * @return True if the player's removal ends the game. That is, if there are no more players or the host left on a not yet started game.
292  */
293  bool remove_player(player_iterator player, const bool disconnect = false, const bool destruct = false);
294 
295  /**
296  * @return A vector containing all players and observers currently in this game.
297  */
298  const user_vector all_game_users() const;
299 
300  /**
301  * Starts the game (if a new game) or starts the next scenario of an MP campaign.
302  * @param starter The game's host.
303  */
304  void start_game(player_iterator starter);
305 
306  /**
307  * This is performed just before starting and before the [start_game] signal.
308  * Sends [scenario_diff]s specific to each client so that they locally control their human sides.
309  */
311 
312  /**
313  * A user asks for the next scenario to advance to.
314  *
315  * @param user The user asking for the next scenario.
316  */
318 
319  /** Resets the side configuration according to the scenario data. */
320  void update_side_data();
321 
322  /**
323  * Lets a player owning a side give it to another player or observer.
324  *
325  * @param player The player owning the side.
326  * @param cfg The node containing the transfer information.
327  */
329 
330  /**
331  * Sends an ingame message to all other players.
332  *
333  * @param data The message to send.
334  * @param user The user sending the message.
335  */
337 
338  /**
339  * Handles [end_turn], repackages [commands] with private [speak]s in them
340  * and sends the data.
341  * Also filters commands from all but the current player.
342  * Currently removes all commands but [speak] for observers and all but
343  * [speak], [label], and [rename] for players.
344  *
345  * @param data The turn commands.
346  * @param user The user who sent a command to be processed during the turn. This may not be the player whose turn it currently is.
347  * @returns True if the turn ended.
348  */
350 
351  /**
352  * Handles incoming [whiteboard] data.
353  *
354  * @param data The whiteboard data.
355  * @param user The user sending the whiteboard data.
356  */
358 
359  /**
360  * Handles incoming [change_turns_wml] data.
361  *
362  * @param data The [change_turns_wml] data.
363  * @param user The player changing turns.
364  */
366 
367  /**
368  * Set the description to the number of available slots.
369  */
370  void describe_slots();
371 
372  /**
373  * Sends a message to all players in this game that aren't excluded.
374  *
375  * @param message The message to send.
376  * @param exclude The players to not send the message to.
377  */
378  void send_server_message_to_all(const char* message, utils::optional<player_iterator> exclude = {});
379  /**
380  * @ref send_server_message_to_all
381  */
382  void send_server_message_to_all(const std::string& message, utils::optional<player_iterator> exclude = {})
383  {
384  send_server_message_to_all(message.c_str(), exclude);
385  }
386 
387  /**
388  * Send a server message to the specified player.
389  *
390  * @param message The message to send.
391  * @param player The player to send the message to. If empty then the message is not sent.
392  * @param doc The document to create the message in. If nullptr then a new document is created.
393  */
394  void send_server_message(
395  const char* message, utils::optional<player_iterator> player = {}, simple_wml::document* doc = nullptr) const;
396  /**
397  * @ref send_server_message
398  */
400  const std::string& message, utils::optional<player_iterator> player = {}, simple_wml::document* doc = nullptr) const
401  {
402  send_server_message(message.c_str(), player, doc);
403  }
404 
405  /**
406  * Send data to all players in this game except 'exclude'.
407  * Also record this data for the replay.
408  *
409  * @param message The message to send.
410  * @param exclude The players to not send the message to.
411  */
412  void send_and_record_server_message(const char* message, utils::optional<player_iterator> exclude = {});
413  /**
414  * @ref send_and_record_server_message
415  */
416  void send_and_record_server_message(const std::string& message, utils::optional<player_iterator> exclude = {})
417  {
418  send_and_record_server_message(message.c_str(), exclude);
419  }
420 
421  /**
422  * Send data to all players except those excluded.
423  * For example, to send a message to all players except the player who typed the original message.
424  *
425  * @param data The data to send.
426  * @param players The players to send the data to.
427  * @param exclude The player from @a players to not send the data to.
428  */
429  template<typename Container>
430  void send_to_players(simple_wml::document& data, const Container& players, utils::optional<player_iterator> exclude = {});
431 
432  /**
433  * Send data to all players and observers except those excluded.
434  *
435  * @param data The data to send.
436  * @param exclude The players/observers to not send the data to.
437  */
438  void send_data(simple_wml::document& data, utils::optional<player_iterator> exclude = {});
439 
440  /**
441  * Clears the history of recorded WML documents.
442  */
443  void clear_history();
444 
445  /**
446  * Clears the history of recorded chat WML documents.
447  */
448  void clear_chat_history();
449 
450  /**
451  * Records a WML document in the game's history.
452  *
453  * @param data The WML document to record.
454  */
455  void record_data(std::unique_ptr<simple_wml::document> data);
456 
457  /**
458  * Move the level information and recorded history into a replay file and save it.
459  */
460  void save_replay();
461 
462  /**
463  * @return The full scenario data.
464  */
466  {
467  return level_;
468  }
469 
470  /**
471  * Set the game's description.
472  * Also set the game as requiring a password if a password is set.
473  *
474  * @param desc The node containing the game's description.
475  */
476  void set_description(simple_wml::node* desc);
477 
478  /**
479  * @return The node containing the game's current description.
480  */
482  {
483  return description_;
484  }
485 
486  /**
487  * @return The node containing the game's current description. and remembers that it was changed.
488  */
490  {
491  description_updated_ = true;
492  return description_;
493  }
494 
495  /**
496  * @return The node containing the game's current description if it was changed.
497  */
499  {
501  description_updated_ = false;
502  return description_;
503  }
504  return nullptr;
505  }
506 
507  /**
508  * Sets the password required to access the game.
509  *
510  * @param passwd The password to set.
511  */
512  void set_password(const std::string& passwd)
513  {
514  password_ = passwd;
515  }
516 
517  /**
518  * Set a list of usernames that should all be banned from joining the game.
519  *
520  * @param name_bans The list of usernames.
521  */
522  void set_name_bans(const std::vector<std::string> name_bans)
523  {
524  name_bans_ = name_bans;
525  }
526 
527  /**
528  * @param passwd The password to join with.
529  * @return True if the game's password is empty or if the provided password matches, false otherwise.
530  */
531  bool password_matches(const std::string& passwd) const
532  {
533  return password_.empty() || passwd == password_;
534  }
535 
536  /**
537  * @return Whether the game has a password set.
538  */
539  bool has_password() const
540  {
541  return !password_.empty();
542  }
543 
544  /**
545  * Provides the reason the game was ended.
546  *
547  * @return Either that the game was aborted (after starting), not started, or has some other reason set.
548  */
549  const std::string& termination_reason() const
550  {
551  static const std::string aborted = "aborted";
552  static const std::string not_started = "not started";
553 
554  return started_ ? (termination_.empty() ? aborted : termination_) : not_started;
555  }
556 
557  /**
558  * Sets the termination reason for this game.
559  *
560  * @param reason The termination reason.
561  */
562  void set_termination_reason(const std::string& reason);
563 
564  /**
565  * Handle a choice requested by a client, such as changing a side's controller, if initiated by WML/lua.
566  *
567  * @param data The data needed to process the choice.
568  * @param user The player making the request.
569  */
571 
572  /**
573  * Send a randomly generated number to the requestor.
574  */
575  void handle_random_choice();
576 
577  /**
578  * Handle a request to change a side's controller.
579  * Note that this does not change who owns a side.
580  *
581  * @param data Contains the information about which side to change the controller of.
582  */
584 
585  /**
586  * Adds a new, empty side owned by no one.
587  */
588  void handle_add_side_wml();
589 
590  /**
591  * Reset the internal counter for choice requests made by clients to the server.
592  */
594  {
596  }
597 
598  /**
599  * Function which returns true if 'player' controls any of the sides specified in 'sides'.
600  *
601  * @param sides The list of sides in this game.
602  * @param player The player being checked for whether they own any sides.
603  */
604  bool controls_side(const std::vector<int>& sides, player_iterator player) const;
605 
606  /**
607  * @return Whether the loaded WML has the attribute indicating that this is a reloaded savegame rather than a brand new game.
608  */
609  bool is_reload() const;
610 
612  {
613  players_.clear();
614  observers_.clear();
615  }
616 
617  bool is_queue_game() const
618  {
619  return is_queue_game_;
620  }
622  {
624  }
625 
626 private:
627  // forbidden operations
628  game(const game&) = delete;
629  game& operator=(const game&) = delete;
630 
631  /**
632  * @return 0 if there are no sides, or the current side index otherwise.
633  */
634  std::size_t current_side() const
635  {
636  // At the start of the game it can happen that current_side_index_ is 0,
637  // but the first side is empty. It's better to do this than to skip empty
638  // sides in start_game() in case the controller changes during start events.
640  }
641 
642  /**
643  * @return The player who owns the side at index @a index.
644  * nullopt if wither index is invalid or the side is not owned.
645  */
646  utils::optional<player_iterator> get_side_player(size_t index) const
647  {
648  return index >= sides_.size() ? utils::optional<player_iterator>() : sides_[index];
649  }
650 
651  /**
652  * @return The player who owns the current side.
653  */
654  utils::optional<player_iterator> current_player() const
655  {
656  // sides_ should never be empty but just to be sure.
657  return get_side_player(current_side());
658  }
659 
660  /**
661  * @param player The player being checked.
662  * @return Whether the player being checked is the current player taking their turn.
663  */
665  {
666  return (current_player() == player);
667  }
668 
669  /**
670  * @param player The observer being checked.
671  * @return True if the observer is muted or if all observers are muted, false otherwise.
672  */
674 
675  /**
676  * @return True if all observers have been muted via that command (not if each individual observer happens to have been manually muted).
677  */
678  bool all_observers_muted() const
679  {
680  return all_observers_muted_;
681  }
682 
683  /**
684  * Sends a message either stating that all observers are muted or listing the observers that are muted.
685  *
686  * @param user The player to send the message to.
687  */
688  void send_muted_observers(player_iterator user) const;
689 
690  /**
691  * Tell the host who owns a side.
692  *
693  * @param cfg The document to send to the host.
694  * @param side The side information to send.
695  * @return True if the document was sent, false otherwise.
696  */
697  bool send_taken_side(simple_wml::document& cfg, const simple_wml::node* side) const;
698 
699  /**
700  * Figures out which side to take and tells that side to the game owner.
701  *
702  * The owner then should send a [scenario_diff] that implements the side
703  * change and a subsequent update_side_data() call makes it actually
704  * happen.
705  * First we look for a side where save_id= or current_player= matches the
706  * new user's name then we search for the first controller=human or reserved side.
707  *
708  * @param user The player taking a side.
709  * @return True if the side was taken, false otherwise.
710  */
711  bool take_side(player_iterator user);
712 
713  /**
714  * Send [change_controller] message to tell all clients the new controller's name or controller type (human or ai).
715  *
716  * @param side_index The index of the side whose controller is changing.
717  * @param player The player who is taking control of the side.
718  * @param player_name The name of the player who is taking control of the side.
719  * @param player_left We use the "player_left" field as follows. Normally change_controller sends one message to the owner, and one message to everyone else.
720  * In case that a player drops, the owner is gone and should not get a message, instead the host gets a [side_drop] message.
721  */
722  void change_controller(const std::size_t side_index,
724  const std::string& player_name,
725  const bool player_left = true);
726 
727  /**
728  * Tell everyone else but the source player that the controller type changed.
729  *
730  * @param side_index The index of the side whose controller type is changing.
731  * @param player The player who owns the side whose controller type is changing.
732  * @param player_name The name of the player who owns the side whose controller type is changing.
733  * @return The document that was sent to all other players.
734  */
735  std::unique_ptr<simple_wml::document> change_controller_type(const std::size_t side_index,
737  const std::string& player_name);
738 
739  /**
740  * Tells a player to leave the game.
741  *
742  * @param user The player leaving the game.
743  */
744  void send_leave_game(player_iterator user) const;
745 
746  /**
747  * Sends a document to the provided list of sides.
748  *
749  * @param data The data to be sent to the provided sides.
750  * @param sides A comma sperated list of side numbers to which the document should be sent.
751  * @param exclude Players to not send the data to.
752  */
754  const simple_wml::string_span& sides,
755  utils::optional<player_iterator> exclude = {});
756 
757  /**
758  * Send a document per observer in the game.
759  * If @a player is blank, send these documents to everyone, else send them to just the observer who joined.
760  *
761  * @param player The observer who joined.
762  */
763  void send_observerjoins(utils::optional<player_iterator> player = {});
765  void send_history(player_iterator sock) const;
766  void send_chat_history(player_iterator sock) const;
767 
768  /** In case of a host transfer, notify the new host about its status. */
769  void notify_new_host();
770 
771  /**
772  * Shortcut to a convenience function for finding a user by name.
773  *
774  * @param name The name of the user to find.
775  * @return The player if found, else empty.
776  */
777  utils::optional<player_iterator> find_user(const simple_wml::string_span& name);
778 
779  bool is_legal_command(const simple_wml::node& command, player_iterator user);
780 
781  /**
782  * Checks whether a user has the same IP as any other members of this game.
783  * @return A comma separated string of members with matching IPs.
784  */
785  std::string has_same_ip(player_iterator user) const;
786 
787  /**
788  * Function which should be called every time a player ends their turn
789  * (i.e. [end_turn] received).
790  *
791  * @param new_side The side number whose turn to move it has become.
792  */
793  void end_turn(int new_side);
794  /**
795  * Function which should be called every time a player starts their turn
796  * (i.e. [init_side] received). This will update the 'turn' attribute for
797  * the game's description when appropriate.
798  */
799  void init_turn();
800 
801  /**
802  * Set or update the current and max turn values in the game's description.
803  */
804  void update_turn_data();
805 
806  /**
807  * Function to send a list of users to all clients.
808  * Only sends data if the game is initialized but not yet started.
809  *
810  * @param exclude The players to not send the list of users to.
811  */
812  void send_user_list(utils::optional<player_iterator> exclude = {});
813 
814  /**
815  * @param pl The player.
816  * @return The player's username.
817  */
818  std::string username(player_iterator pl) const;
819 
820  /**
821  * @param users The users to create a comma separated list from.
822  * @return A comma separated list of user names.
823  */
824  std::string list_users(const user_vector& users) const;
825 
826  /** calculates the initial value for sides_, side_controllerds_, nsides_*/
827  void reset_sides();
828 
829  /**
830  * Helps debugging player and observer lists.
831  *
832  * @return A string listing the game IDs, players, and observers.
833  */
834  std::string debug_player_info() const;
835 
836  /**
837  * Helps debugging controller tweaks.
838  *
839  * @return A string listing the game IDs and side information.
840  */
841  std::string debug_sides_info() const;
842 
843  /// @return the side index for which we accept [init_side]
844  int get_next_side_index() const;
845  /**
846  * finds the first side starting at @a side_index that is non empty.
847  */
848  int get_next_nonempty(int side_index) const;
849 
850  /** The wesnothd server instance this game exists on. */
853 
854  /**
855  * Incremented to retrieve a unique ID for game instances within wesnothd.
856  */
857  static int id_num;
858  /** This game's ID within wesnothd */
859  int id_;
860 
861  /**
862  * Incremented to retrieve a unique ID per wesnothd instance for game instances within the database.
863  */
864  static int db_id_num;
865  /**
866  * Used for unique identification of games played in the database.
867  * Necessary since for MP campaigns multiple scenarios can be played within the same game instance
868  * and we need a unique ID per scenario played, not per game instance.
869  */
870  int db_id_;
871 
872  /** The name of the game. */
873  std::string name_;
874  /** The password needed to join the game. */
875  std::string password_;
876 
877  /** The game host or later owner (if the host left). */
879 
880  /** A vector of players (members owning a side). */
882 
883  /** A vector of observers (members not owning a side). */
885  /** A vector of muted observers. */
887 
888  /** A vector of side owners. */
890 
891  /** A vector containiner the controller type for each side. */
892  std::vector<side_controller::type> side_controllers_;
893 
894  /** Number of sides in the current scenario. */
895  int nsides_;
896  /** Whether the game has been started or not. */
897  bool started_;
898 
899  /**
900  The current scenario data.
901 
902  WRONG! This contains the initial state or the state from which
903  the game was loaded from.
904  Using this to make assumptions about the current gamestate is
905  extremely dangerous and should especially not be done for anything
906  that can be nodified by wml (especially by [modify_side]),
907  like team_name, controller ... in [side].
908 
909  FIXME: move every code here that uses this object to query those
910  information to the clients. But note that there are some checks
911  (like controller == null) that are definitely needed by the server and
912  in this case we should try to modify the client to inform the server if
913  a change of those properties occur. Ofc we shouldn't update level_
914  then, but rather store that information in a separate object
915  (like in side_controllers_).
916  */
918 
919  /** Replay data. */
920  mutable std::vector<std::unique_ptr<simple_wml::document>> history_;
921  /** Replay chat history data. */
922  mutable std::vector<std::unique_ptr<simple_wml::document>> chat_history_;
923 
924  /** Pointer to the game's description in the games_and_users_list_. */
926 
927  /** Set to true whenever description_ was changed that an update needs to be sent to clients. */
929 
930  /** The game's current turn. */
932  /** The index of the current side. The side number is current_side_index_+1. */
934  /**
935  * after [end_turn] was received, this contains the side for who we accept [init_side].
936  * -1 if we currently don't accept [init_side] because the current player didn't end his turn yet.
937  **/
939  /** The maximum number of turns before the game ends. */
941  /** Whether all observers should be treated as muted. */
943 
944  /** List of banned IPs */
945  std::vector<std::string> bans_;
946  /** List of banned usernames */
947  std::vector<std::string> name_bans_;
948 
949  /**
950  * in multiplayer campaigns it can happen that some players are still in the previous scenario
951  * keep track of those players because processing certain
952  * input from those side wil lead to error (oos)
953  */
954  std::set<const player_record*> players_not_advanced_;
955 
956  /** The reason the game ended. */
957  std::string termination_;
958 
959  /** Whether to save a replay of this game. */
961  /** Where to save the replay of this game. */
962  std::string replay_save_path_;
963 
964  /** A wrapper for mersenne twister rng which generates randomness for this game */
966  /**
967  * The ID of the last request received from a client.
968  * New requests should never have a lower value than this.
969  */
971 
972  /** Whether this game was created by joining a game defined client-side in an [mp_queue] */
974 };
975 
976 } // namespace wesnothd
node * child(const char *name)
Definition: simple_wml.hpp:263
const child_list & children(const char *name) const
Definition: simple_wml.cpp:643
std::vector< node * > child_list
Definition: simple_wml.hpp:125
void handle_controller_choice(const simple_wml::node &data)
Handle a request to change a side's controller.
Definition: game.cpp:1165
utils::optional< player_iterator > ban_user(const simple_wml::node &ban, player_iterator banner)
Ban a user by name.
Definition: game.cpp:821
std::string debug_player_info() const
Helps debugging player and observer lists.
Definition: game.cpp:1907
bool is_reload() const
Definition: game.cpp:2002
void send_user_list(utils::optional< player_iterator > exclude={})
Function to send a list of users to all clients.
Definition: game.cpp:1557
void mute_all_observers()
Toggles whether all observers are muted or not.
Definition: game.cpp:688
utils::optional< player_iterator > get_side_player(size_t index) const
Definition: game.hpp:646
static const simple_wml::node * starting_pos(const simple_wml::node &data)
The const version.
Definition: game.hpp:168
int current_side_index_
The index of the current side.
Definition: game.hpp:933
std::vector< std::unique_ptr< simple_wml::document > > history_
Replay data.
Definition: game.hpp:920
bool is_legal_command(const simple_wml::node &command, player_iterator user)
Definition: game.cpp:905
void send_and_record_server_message(const std::string &message, utils::optional< player_iterator > exclude={})
send_and_record_server_message
Definition: game.hpp:416
void clear_chat_history()
Clears the history of recorded chat WML documents.
Definition: game.cpp:1870
std::vector< std::string > bans_
List of banned IPs.
Definition: game.hpp:945
bool is_owner(player_iterator player) const
Definition: game.hpp:90
void init_turn()
Function which should be called every time a player starts their turn (i.e.
Definition: game.cpp:1336
void send_history(player_iterator sock) const
Definition: game.cpp:1735
void process_change_turns_wml(simple_wml::document &data, player_iterator user)
Handles incoming [change_turns_wml] data.
Definition: game.cpp:1301
bool is_current_player(player_iterator player) const
Definition: game.hpp:664
randomness::mt_rng rng_
A wrapper for mersenne twister rng which generates randomness for this game.
Definition: game.hpp:965
std::string has_same_ip(player_iterator user) const
Checks whether a user has the same IP as any other members of this game.
Definition: game.cpp:1688
std::string name_
The name of the game.
Definition: game.hpp:873
void notify_new_host()
In case of a host transfer, notify the new host about its status.
Definition: game.cpp:643
void send_chat_history(player_iterator sock) const
Definition: game.cpp:1762
void update_side_data()
Resets the side configuration according to the scenario data.
Definition: game.cpp:420
std::string replay_save_path_
Where to save the replay of this game.
Definition: game.hpp:962
void send_leave_game(player_iterator user) const
Tells a player to leave the game.
Definition: game.cpp:783
void handle_random_choice()
Send a randomly generated number to the requestor.
Definition: game.cpp:1136
void set_termination_reason(const std::string &reason)
Sets the termination reason for this game.
Definition: game.cpp:1883
void unban_user(const simple_wml::node &unban, player_iterator unbanner)
Unban a user by name.
Definition: game.cpp:863
bool level_init() const
Definition: game.hpp:138
std::vector< std::unique_ptr< simple_wml::document > > chat_history_
Replay chat history data.
Definition: game.hpp:922
void perform_controller_tweaks()
This is performed just before starting and before the [start_game] signal.
Definition: game.cpp:206
void record_data(std::unique_ptr< simple_wml::document > data)
Records a WML document in the game's history.
Definition: game.cpp:1859
std::vector< side_controller::type > side_controllers_
A vector containiner the controller type for each side.
Definition: game.hpp:892
void send_server_message_to_all(const char *message, utils::optional< player_iterator > exclude={})
Sends a message to all players in this game that aren't excluded.
Definition: game.cpp:1963
void handle_add_side_wml()
Adds a new, empty side owned by no one.
Definition: game.cpp:1158
void clear_history()
Clears the history of recorded WML documents.
Definition: game.cpp:1865
std::size_t nobservers() const
Definition: game.hpp:206
bool password_matches(const std::string &passwd) const
Definition: game.hpp:531
int current_turn_
The game's current turn.
Definition: game.hpp:931
bool save_replays_
Whether to save a replay of this game.
Definition: game.hpp:960
void send_muted_observers(player_iterator user) const
Sends a message either stating that all observers are muted or listing the observers that are muted.
Definition: game.cpp:698
void load_next_scenario(player_iterator user)
A user asks for the next scenario to advance to.
Definition: game.cpp:1592
bool started() const
Definition: game.hpp:190
bool add_player(player_iterator player, bool observer=false)
Add a user to the game.
Definition: game.cpp:1362
utils::optional< player_iterator > current_player() const
Definition: game.hpp:654
void new_scenario(player_iterator sender)
When the host sends the new scenario of a mp campaign.
Definition: game.cpp:1580
std::string list_users(const user_vector &users) const
Definition: game.cpp:191
game(wesnothd::server &server, player_connections &player_connections, player_iterator host, bool is_queue_game, const std::string &name="", bool save_replays=false, const std::string &replay_save_path="")
Definition: game.cpp:78
const user_vector all_game_users() const
Definition: game.cpp:1897
void send_data(simple_wml::document &data, utils::optional< player_iterator > exclude={})
Send data to all players and observers except those excluded.
Definition: game.cpp:1654
void describe_slots()
Set the description to the number of available slots.
Definition: game.cpp:654
void start_game(player_iterator starter)
Starts the game (if a new game) or starts the next scenario of an MP campaign.
Definition: game.cpp:261
static simple_wml::node * starting_pos(simple_wml::node &data)
The non-const version.
Definition: game.hpp:151
void send_and_record_server_message(const char *message, utils::optional< player_iterator > exclude={})
Send data to all players in this game except 'exclude'.
Definition: game.cpp:1952
std::vector< std::string > name_bans_
List of banned usernames.
Definition: game.hpp:947
bool description_updated_
Set to true whenever description_ was changed that an update needs to be sent to clients.
Definition: game.hpp:928
bool remove_player(player_iterator player, const bool disconnect=false, const bool destruct=false)
Removes a user from the game.
Definition: game.cpp:1447
int id_
This game's ID within wesnothd.
Definition: game.hpp:859
simple_wml::document & level()
Definition: game.hpp:465
std::size_t current_side() const
Definition: game.hpp:634
utils::optional< player_iterator > find_user(const simple_wml::string_span &name)
Shortcut to a convenience function for finding a user by name.
Definition: game.cpp:1942
bool process_turn(simple_wml::document &data, player_iterator user)
Handles [end_turn], repackages [commands] with private [speak]s in them and sends the data.
Definition: game.cpp:975
std::size_t current_turn() const
Definition: game.hpp:214
std::string username(player_iterator pl) const
Definition: game.cpp:186
void process_whiteboard(simple_wml::document &data, player_iterator user)
Handles incoming [whiteboard] data.
Definition: game.cpp:1274
player_connections & player_connections_
Definition: game.hpp:852
void send_server_message_to_all(const std::string &message, utils::optional< player_iterator > exclude={})
send_server_message_to_all
Definition: game.hpp:382
void send_server_message(const std::string &message, utils::optional< player_iterator > player={}, simple_wml::document *doc=nullptr) const
send_server_message
Definition: game.hpp:399
bool all_observers_muted() const
Definition: game.hpp:678
int get_next_nonempty(int side_index) const
finds the first side starting at side_index that is non empty.
Definition: game.cpp:2013
bool is_member(player_iterator player) const
Definition: game.hpp:99
int db_id_
Used for unique identification of games played in the database.
Definition: game.hpp:870
void reset_sides()
calculates the initial value for sides_, side_controllerds_, nsides_
Definition: game.cpp:409
void handle_choice(const simple_wml::node &data, player_iterator user)
Handle a choice requested by a client, such as changing a side's controller, if initiated by WML/lua.
Definition: game.cpp:1230
user_vector muted_observers_
A vector of muted observers.
Definition: game.hpp:886
bool is_muted_observer(player_iterator player) const
Definition: game.cpp:168
std::set< const player_record * > players_not_advanced_
in multiplayer campaigns it can happen that some players are still in the previous scenario keep trac...
Definition: game.hpp:954
void save_replay()
Move the level information and recorded history into a replay file and save it.
Definition: game.cpp:1803
simple_wml::node * description() const
Definition: game.hpp:481
void end_turn(int new_side)
Function which should be called every time a player ends their turn (i.e.
Definition: game.cpp:1327
void transfer_side_control(player_iterator player, const simple_wml::node &cfg)
Lets a player owning a side give it to another player or observer.
Definition: game.cpp:492
void unmute_observer(const simple_wml::node &unmute, player_iterator unmuter)
Unmute an observer or unmute all currently muted observers if no name is given.
Definition: game.cpp:751
int next_side_index_
after [end_turn] was received, this contains the side for who we accept [init_side].
Definition: game.hpp:938
bool is_queue_game_
Whether this game was created by joining a game defined client-side in an [mp_queue].
Definition: game.hpp:973
bool started_
Whether the game has been started or not.
Definition: game.hpp:897
int db_id() const
This ID is not reused between scenarios of MP campaigns.
Definition: game.hpp:65
utils::optional< player_iterator > kick_member(const simple_wml::node &kick, player_iterator kicker)
Kick a user from this game by name.
Definition: game.cpp:789
void emergency_cleanup()
Definition: game.hpp:611
bool has_password() const
Definition: game.hpp:539
std::string debug_sides_info() const
Helps debugging controller tweaks.
Definition: game.cpp:1923
std::string termination_
The reason the game ended.
Definition: game.hpp:957
const std::string & name() const
Definition: game.hpp:81
void send_data_sides(simple_wml::document &data, const simple_wml::string_span &sides, utils::optional< player_iterator > exclude={})
Sends a document to the provided list of sides.
Definition: game.cpp:1659
const simple_wml::node::child_list & get_sides_list() const
Definition: game.hpp:182
simple_wml::node * description_
Pointer to the game's description in the games_and_users_list_.
Definition: game.hpp:925
game(const game &)=delete
user_vector observers_
A vector of observers (members not owning a side).
Definition: game.hpp:884
static int db_id_num
Incremented to retrieve a unique ID per wesnothd instance for game instances within the database.
Definition: game.hpp:864
const std::string get_scenario_id() const
Definition: game.cpp:153
void set_description(simple_wml::node *desc)
Set the game's description.
Definition: game.cpp:1875
int num_turns_
The maximum number of turns before the game ends.
Definition: game.hpp:940
bool all_observers_muted_
Whether all observers should be treated as muted.
Definition: game.hpp:942
bool is_queue_game() const
Definition: game.hpp:617
side_vector sides_
A vector of side owners.
Definition: game.hpp:889
int nsides_
Number of sides in the current scenario.
Definition: game.hpp:895
int id() const
This ID is reused between scenarios of MP campaigns.
Definition: game.hpp:53
simple_wml::document level_
The current scenario data.
Definition: game.hpp:917
void set_name_bans(const std::vector< std::string > name_bans)
Set a list of usernames that should all be banned from joining the game.
Definition: game.hpp:522
bool take_side(player_iterator user)
Figures out which side to take and tells that side to the game owner.
Definition: game.cpp:368
void change_controller(const std::size_t side_index, player_iterator player, const std::string &player_name, const bool player_left=true)
Send [change_controller] message to tell all clients the new controller's name or controller type (hu...
Definition: game.cpp:595
bool allow_observers() const
Definition: game.cpp:158
user_vector players_
A vector of players (members owning a side).
Definition: game.hpp:881
void next_db_id()
Increments the ID used when running database queries.
Definition: game.hpp:73
void send_observerquit(player_iterator observer)
Definition: game.cpp:1723
void is_queue_game(bool is_queue_game)
Definition: game.hpp:621
bool send_taken_side(simple_wml::document &cfg, const simple_wml::node *side) const
Tell the host who owns a side.
Definition: game.cpp:347
int get_next_side_index() const
Definition: game.cpp:2008
wesnothd::server & server
The wesnothd server instance this game exists on.
Definition: game.hpp:851
void send_server_message(const char *message, utils::optional< player_iterator > player={}, simple_wml::document *doc=nullptr) const
Send a server message to the specified player.
Definition: game.cpp:1970
std::string password_
The password needed to join the game.
Definition: game.hpp:875
bool is_observer(player_iterator player) const
Definition: game.cpp:163
void reset_last_synced_context_id()
Reset the internal counter for choice requests made by clients to the server.
Definition: game.hpp:593
simple_wml::node * changed_description()
Definition: game.hpp:498
bool is_player(player_iterator player) const
Definition: game.cpp:181
int last_choice_request_id_
The ID of the last request received from a client.
Definition: game.hpp:970
const std::string & termination_reason() const
Provides the reason the game was ended.
Definition: game.hpp:549
bool controls_side(const std::vector< int > &sides, player_iterator player) const
Function which returns true if 'player' controls any of the sides specified in 'sides'.
Definition: game.cpp:1675
void send_observerjoins(utils::optional< player_iterator > player={})
Send a document per observer in the game.
Definition: game.cpp:1703
static int id_num
Incremented to retrieve a unique ID for game instances within wesnothd.
Definition: game.hpp:857
bool player_is_banned(player_iterator player, const std::string &name) const
Definition: game.cpp:680
std::string get_replay_filename()
Definition: game.cpp:1793
void set_password(const std::string &passwd)
Sets the password required to access the game.
Definition: game.hpp:512
void send_to_players(simple_wml::document &data, const Container &players, utils::optional< player_iterator > exclude={})
Send data to all players except those excluded.
Definition: game.cpp:1645
void mute_observer(const simple_wml::node &mute, player_iterator muter)
Mute an observer or give a message of all currently muted observers if no name is given.
Definition: game.cpp:710
std::unique_ptr< simple_wml::document > change_controller_type(const std::size_t side_index, player_iterator player, const std::string &player_name)
Tell everyone else but the source player that the controller type changed.
Definition: game.cpp:627
void update_turn_data()
Set or update the current and max turn values in the game's description.
Definition: game.cpp:1350
game & operator=(const game &)=delete
simple_wml::node * description_for_writing()
Definition: game.hpp:489
player_iterator owner_
The game host or later owner (if the host left).
Definition: game.hpp:878
void process_message(simple_wml::document &data, player_iterator user)
Sends an ingame message to all other players.
Definition: game.cpp:893
std::size_t nplayers() const
Definition: game.hpp:198
std::string observer
std::size_t index(std::string_view str, const std::size_t index)
Codepoint index corresponding to the nth character in a UTF-8 string.
Definition: unicode.cpp:70
std::vector< player_iterator > user_vector
Definition: game.hpp:31
player_connections::const_iterator player_iterator
std::vector< utils::optional< player_iterator > > side_vector
Definition: game.hpp:32
bmi::multi_index_container< player_record, bmi::indexed_by< bmi::ordered_unique< bmi::tag< socket_t >, bmi::const_mem_fun< player_record, const any_socket_ptr, &player_record::socket > >, bmi::hashed_unique< bmi::tag< name_t >, bmi::const_mem_fun< player_record, const std::string &, &player_record::name > >, bmi::ordered_non_unique< bmi::tag< game_t >, bmi::const_mem_fun< player_record, int, &player_record::game_id > > > > player_connections
std::string_view data
Definition: picture.cpp:178