1999-11-19 02:10:24 +00:00
|
|
|
// fg_io.hxx -- Higher level I/O managment routines
|
|
|
|
//
|
|
|
|
// Written by Curtis Olson, started November 1999.
|
|
|
|
//
|
|
|
|
// Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License as
|
|
|
|
// published by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful, but
|
|
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
//
|
|
|
|
// $Id$
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FG_IO_HXX
|
|
|
|
#define _FG_IO_HXX
|
|
|
|
|
|
|
|
|
2000-02-15 03:30:01 +00:00
|
|
|
#include <simgear/compiler.h>
|
2002-08-25 20:56:16 +00:00
|
|
|
#include <vector>
|
|
|
|
#include STL_STRING
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
#include "fgfs.hxx"
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
SG_USING_STD(vector);
|
|
|
|
SG_USING_STD(string);
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
class FGProtocol;
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
class FGIO : public FGSubsystem
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FGIO();
|
|
|
|
~FGIO();
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
void init();
|
|
|
|
void bind();
|
|
|
|
void unbind();
|
|
|
|
void update( double dt );
|
1999-11-19 02:10:24 +00:00
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
void shutdown_all();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
FGProtocol* parse_port_config( const string& cfgstr );
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
// define the global I/O channel list
|
|
|
|
//io_container global_io_list;
|
|
|
|
vector< FGProtocol* > io_channels;
|
|
|
|
};
|
2000-10-04 20:50:38 +00:00
|
|
|
|
|
|
|
|
1999-11-19 02:10:24 +00:00
|
|
|
#endif // _FG_IO_HXX
|