]> git.mxchange.org Git - flightgear.git/blob - src/Network/network.cxx
Removed extra square array of indirection indices between what's visible
[flightgear.git] / src / Network / network.cxx
1 // network.cxx -- data structures for initializing & managing network.
2 //
3 // Written by Oliver Delise, started May 1999.
4 //
5 // Copyleft (C) 1999  Oliver Delise - delise@rp-plus.de
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
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 /*
29 #ifdef HAVE_WINDOWS_H
30 #  include <windows.h>
31 #endif
32
33 #ifdef __BORLANDC__
34 #  define exception c_exception
35 #endif
36 #include <math.h>
37
38 #include <GL/glut.h>
39 #include <stdlib.h>
40 #include <string.h>
41
42 #ifdef HAVE_VALUES_H
43 #  include <values.h>  // for MAXINT
44 #endif
45
46 #include <Aircraft/aircraft.hxx>
47 #include <Debug/logstream.hxx>
48 #include <GUI/gui.h>
49 #include <Include/fg_constants.h>
50 #include <Main/options.hxx>
51 #include <Math/fg_random.h>
52 #include <Math/mat3.h>
53 #include <Math/polar3d.hxx>
54 #include <Scenery/scenery.hxx>
55 #include <Time/fg_timer.hxx>
56
57 #if defined ( __sun__ ) || defined ( __sgi )
58 extern "C" {
59   extern void *memmove(void *, const void *, size_t);
60 }
61 #endif
62 */
63
64 #include <Main/options.hxx>
65
66 int  net_blast_toggle;
67 int  net_hud_display;
68 char *net_callsign;
69
70 char *fg_net_init( void ){
71
72  // We enable display of netinfos only if user wishes it via cmd-line param
73  net_hud_display = (net_hud_display == 0) ? 0 : 1; 
74  // Get pilot's name from options, can be modified at runtime via menu
75  net_callsign = (char *) current_options.get_net_id().c_str();
76  // Disable Blast Mode -1 = Disable, 0 = Enable  
77  net_blast_toggle = -1; 
78  return("activated");
79 }