]> git.mxchange.org Git - flightgear.git/blob - src/FDM/ExternalNet.hxx
Latest JSBSim changes, mostly to support yaw and roll trim.
[flightgear.git] / src / FDM / ExternalNet.hxx
1 // ExternalNet.hxx -- an net interface to an external flight dynamics model
2 //
3 // Written by Curtis Olson, started November 2001.
4 //
5 // Copyright (C) 2001  Curtis L. Olson  - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23 #ifndef _EXTERNAL_NET_HXX
24 #define _EXTERNAL_NET_HXX
25
26 #include <plib/netSocket.h>
27
28 #include "flight.hxx"
29
30
31 class FGExternalNet: public FGInterface {
32
33 private:
34
35     int data_port;
36     int cmd_port;
37     string host;
38
39     netSocket data_client;
40     netSocket data_server;
41
42     bool valid;
43
44 public:
45
46     // Constructor
47     FGExternalNet::FGExternalNet( double dt );
48
49     // Destructor
50     FGExternalNet::~FGExternalNet();
51
52     // Reset flight params to a specific position
53     void init();
54
55     // update the fdm
56     bool update( int multiloop );
57
58 };
59
60
61 #endif // _EXTERNAL_NET_HXX
62
63