diff --git a/src/Network/FILES b/src/Network/FILES deleted file mode 100644 index 4b08245d7..000000000 --- a/src/Network/FILES +++ /dev/null @@ -1,8 +0,0 @@ -FILES - This file, describing the other files -README - containing Network info -Makefile.am - -net_hud.cxx - display found player's info in bottom/left part of HUD -network.cxx - initialization of netcode and vars -network.h - declaration of used vars and functions for libnetwork.a - should be included from other files using libnetwork -Tools - directory containing network tools and toys diff --git a/src/Network/Makefile.am b/src/Network/Makefile.am index f08134a39..828924d3e 100644 --- a/src/Network/Makefile.am +++ b/src/Network/Makefile.am @@ -10,7 +10,6 @@ libNetwork_a_SOURCES = \ garmin.cxx garmin.hxx \ nmea.cxx nmea.hxx \ pve.cxx pve.hxx \ - rul.cxx rul.hxx \ - net_hud.cxx network.cxx network.h + rul.cxx rul.hxx INCLUDES += -I$(top_builddir) -I$(top_builddir)/Lib -I$(top_builddir)/Simulator diff --git a/src/Network/README b/src/Network/README deleted file mode 100644 index a8db2a9a9..000000000 --- a/src/Network/README +++ /dev/null @@ -1,34 +0,0 @@ -Network README --------------- -Here in .../Simulator/Network will be the new home for multi pilot -related code. -For the moment all you get is a new menu entry "Network" with the -folowing entries: - -- Hyper Blast : Toggles between LaRCsim and a tuned Flight-Model - you can change between both "on the fly " -- Toggle Display : enable/disable info (Lat/Lon/Alt) about found player - well, by now it will be you. ;-)) -- Display Netinfos : n.i. will display more detailed information -- Enter Callsign : to enter your name -- Scan for Deamons : n.i. will scan the network for FGFS_D's -- Register to FGD : n.i. will allow pilot to connect to found Deamons -- Show Pilots : n.i. ? not yet sure what to show, maybe their planes -- Send Message : n.i. will send a message to a specific Pilot -- Send Message to all : n.i. obvious, isn't it ? -- Unregister from Deamon : n.i. - -In the Tools directory you will find some progs (one first try of deamon) -to play with. There is also a README file, check it out. - -You don't need a net-access to test this new stuff since it is just an idea -of how to incorporate a Multi-Pilot Mode in FGFS. - -There are two security options: -a) Compiletime - commenting the "#define FG_NETWORK_OLK" in "network.h" - disables ALL network related stuff in case of problems, shouldn't occur ;-) -b) Runtime - setting the "int net_hud_display" variable to 0 disables any - network display (default) - -Have Phun -Oliver diff --git a/src/Network/net_hud.cxx b/src/Network/net_hud.cxx deleted file mode 100644 index 614f08708..000000000 --- a/src/Network/net_hud.cxx +++ /dev/null @@ -1,82 +0,0 @@ -// network.cxx -- data structures for managing network. -// -// Written by Oliver Delise, started May 1999. -// -// Copyleft (C) 1999 Oliver Delise - delise@rp-plus.de -// -// 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$ - - -#ifdef HAVE_CONFIG_H -# include -#endif - -/* - -#ifdef HAVE_WINDOWS_H -# include -#endif - -#ifdef __BORLANDC__ -# define exception c_exception -#endif -#include - -#include -#include -#include - -#ifdef HAVE_VALUES_H -# include // for MAXINT -#endif - -#include -#include -#include -#include -#include
-#include -#include -#include -#include -#include