1 // multiplay.cxx -- protocol object for multiplay in Flightgear
3 // Written by Diarmuid Tyson, started February 2003.
4 // diarmuid.tyson@airservicesaustralia.com
6 // Copyright (C) 2003 Airservices Australia
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU General Public License as
10 // published by the Free Software Foundation; either version 2 of the
11 // License, or (at your option) any later version.
13 // This program is distributed in the hope that it will be useful, but
14 // WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // General Public License for more details.
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the Free Software
20 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 #include <simgear/compiler.h>
30 #include <simgear/debug/logstream.hxx>
32 #include "multiplay.hxx"
37 // These constants are provided so that the ident command can list file versions.
38 const char sFG_MULTIPLAY_BID[] = "$Id$";
39 const char sFG_MULTIPLAY_HID[] = FG_MULTIPLAY_HID;
42 /******************************************************************
44 * Description: Constructor. Initialises the protocol and stores
45 * host and port information.
46 ******************************************************************/
47 FGMultiplay::FGMultiplay (const string &dir, const int rate, const string &host, const int port) {
53 if (get_direction() == SG_IO_IN) {
55 fgSetInt("/sim/multiplay/rxport", port);
56 fgSetString("/sim/multiplay/rxhost", host.c_str());
58 } else if (get_direction() == SG_IO_OUT) {
60 fgSetInt("/sim/multiplay/txport", port);
61 fgSetString("/sim/multiplay/txhost", host.c_str());
68 /******************************************************************
70 * Description: Destructor.
71 ******************************************************************/
72 FGMultiplay::~FGMultiplay () {
76 /******************************************************************
78 * Description: Enables the protocol.
79 ******************************************************************/
80 bool FGMultiplay::open() {
83 SG_LOG( SG_IO, SG_ALERT, "This shouldn't happen, but the channel "
84 << "is already in use, ignoring" );
94 /******************************************************************
96 * Description: Prompts the multiplayer mgr to either send
97 * or receive data over the network
98 ******************************************************************/
99 bool FGMultiplay::process() {
101 if (get_direction() == SG_IO_IN) {
103 globals->get_multiplayer_rx_mgr()->ProcessData();
105 } else if (get_direction() == SG_IO_OUT) {
107 globals->get_multiplayer_tx_mgr()->
108 SendMyPosition(globals->get_aircraft_model()->get3DModel()->get_POS());
116 /******************************************************************
118 * Description: Closes the multiplayer mgrs to stop any further
120 ******************************************************************/
121 bool FGMultiplay::close() {
123 if (get_direction() == SG_IO_IN) {
125 globals->get_multiplayer_rx_mgr()->Close();
127 } else if (get_direction() == SG_IO_OUT) {
129 globals->get_multiplayer_tx_mgr()->Close();