]> git.mxchange.org Git - flightgear.git/blob - src/GUI/apt_dlg.cxx
Some follow up patches from Norman Vine.
[flightgear.git] / src / GUI / apt_dlg.cxx
1 #ifdef HAVE_CONFIG_H
2 #  include <config.h>
3 #endif
4
5 #include <simgear/compiler.h>
6
7 #ifdef HAVE_WINDOWS_H
8 #  include <windows.h>
9 #endif
10
11 #include <stdlib.h>
12
13 #include <simgear/constants.h>
14 #include <simgear/debug/logstream.hxx>
15 #include <simgear/misc/sg_path.hxx>
16
17 #include <Include/general.hxx>
18
19 #include <GL/glut.h>
20 #include <GL/gl.h>
21
22 #include <Airports/simple.hxx>
23 #include <FDM/flight.hxx>
24 #include <Main/fg_init.hxx>
25 #include <Main/fg_props.hxx>
26 #include <Main/globals.hxx>
27 #include <Scenery/tilemgr.hxx>
28
29 #include "gui.h"
30 #include "gui_local.hxx"
31
32 /// The beginnings of teleportation :-)
33 //  Needs cleaning up but works
34 //  These statics should disapear when this is a class
35 static puDialogBox     *AptDialog = 0;
36 static puFrame         *AptDialogFrame = 0;
37 static puText          *AptDialogMessage = 0;
38 static puInput         *AptDialogInput = 0;
39
40 static char NewAirportId[16];
41 static char NewAirportLabel[] = "Enter New Airport ID"; 
42
43 static puOneShot       *AptDialogOkButton = 0;
44 static puOneShot       *AptDialogCancelButton = 0;
45 static puOneShot       *AptDialogResetButton = 0;
46
47 void AptDialog_Cancel(puObject *)
48 {
49     FG_POP_PUI_DIALOG( AptDialog );
50 }
51
52 void AptDialog_OK (puObject *)
53 {
54     static const SGPropertyNode *longitude
55         = fgGetNode("/position/longitude-deg");
56     static const SGPropertyNode *latitude
57         = fgGetNode("/position/latitude-deg");
58     static const SGPropertyNode *master_freeze
59         = fgGetNode("/sim/freeze/master");
60
61     SGPath path( globals->get_fg_root() );
62     path.append( "Airports" );
63     path.append( "simple.mk4" );
64     FGAirports airports( path.c_str() );
65
66     FGAirport a;
67
68     bool freeze = master_freeze->getBoolValue();
69     if ( !freeze ) {
70         fgSetBool("/sim/freeze/master", true);
71     }
72
73     char *s;
74     AptDialogInput->getValue(&s);
75     string AptId(s);
76
77     cout << "AptDialog_OK " << AptId << " " << AptId.length() << endl;
78
79     AptDialog_Cancel( NULL );
80
81     if ( AptId.length() ) {
82         // set initial position from airport id
83         SG_LOG( SG_GENERAL, SG_INFO,
84                 "Attempting to set starting position from airport code "
85                 << AptId );
86
87         if ( airports.search( AptId, &a ) )
88         {
89             // unbind the current fdm state so property changes
90             // don't get lost when we subsequently delete this fdm
91             // and create a new one.
92             cur_fdm_state->unbind();
93         
94             AptId = a.id.c_str();  /// NHV fix wrong case crash
95             fgSetString("/sim/startup/airport-id",  AptId.c_str() );
96             // fgSetDouble("/position/altitude-ft", -9999.0 );
97             // fgSetPosFromAirportID( AptId );
98             fgSetPosFromAirportIDandHdg( AptId, 
99                                          cur_fdm_state->get_Psi() *
100                                          SGD_RADIANS_TO_DEGREES);
101             // BusyCursor(0);
102             fgReInitSubsystems();
103             global_tile_mgr.update( longitude->getDoubleValue(),
104                                     latitude->getDoubleValue() );
105             // BusyCursor(1);
106         } else {
107             AptId  += " not in database.";
108             mkDialog(AptId.c_str());
109         }
110     }
111     if ( !freeze ) {
112         fgSetBool("/sim/freeze/master", false);
113     }
114 }
115
116
117 void AptDialog_Reset(puObject *)
118 {
119     //  strncpy( NewAirportId, fgGetString("/sim/startup/airport-id").c_str(), 16 );
120     sprintf( NewAirportId, "%s", fgGetString("/sim/startup/airport-id").c_str() );
121     AptDialogInput->setValue ( NewAirportId );
122     AptDialogInput->setCursor( 0 ) ;
123 }
124
125 void NewAirport(puObject *cb)
126 {
127     //  strncpy( NewAirportId, fgGetString("/sim/startup/airport-id").c_str(), 16 );
128     sprintf( NewAirportId, "%s", fgGetString("/sim/startup/airport-id").c_str() );
129     // cout << "NewAirport " << NewAirportId << endl;
130     AptDialogInput->setValue( NewAirportId );
131
132     FG_PUSH_PUI_DIALOG( AptDialog );
133 }
134
135 void NewAirportInit(void)
136 {
137     sprintf( NewAirportId, "%s", fgGetString("/sim/startup/airport-id").c_str() );
138     int len = 150
139         - puGetDefaultLabelFont().getStringWidth( NewAirportLabel ) / 2;
140
141     AptDialog = new puDialogBox (150, 50);
142     {
143         AptDialogFrame   = new puFrame           (0,0,350, 150);
144         AptDialogMessage = new puText            (len, 110);
145         AptDialogMessage ->    setLabel          (NewAirportLabel);
146
147         AptDialogInput   = new puInput           (50, 70, 300, 100);
148         AptDialogInput   ->    setValue          (NewAirportId);
149         AptDialogInput   ->    acceptInput();
150
151         AptDialogOkButton     =  new puOneShot   (50, 10, 110, 50);
152         AptDialogOkButton     ->     setLegend   (gui_msg_OK);
153         AptDialogOkButton     ->     setCallback (AptDialog_OK);
154         AptDialogOkButton     ->     makeReturnDefault(TRUE);
155
156         AptDialogCancelButton =  new puOneShot   (140, 10, 210, 50);
157         AptDialogCancelButton ->     setLegend   (gui_msg_CANCEL);
158         AptDialogCancelButton ->     setCallback (AptDialog_Cancel);
159
160         AptDialogResetButton  =  new puOneShot   (240, 10, 300, 50);
161         AptDialogResetButton  ->     setLegend   (gui_msg_RESET);
162         AptDialogResetButton  ->     setCallback (AptDialog_Reset);
163     }
164     cout << "NewAirportInit " << NewAirportId << endl;
165     FG_FINALIZE_PUI_DIALOG( AptDialog );
166 }