]> git.mxchange.org Git - flightgear.git/blob - src/GUI/gui_funcs.cxx
Update image-server logic.
[flightgear.git] / src / GUI / gui_funcs.cxx
1 /**************************************************************************
2  * gui_funcs.cxx
3  *
4  * Based on gui.cxx and renamed on 2002/08/13 by Erik Hofman.
5  *
6  * Written 1998 by Durk Talsma, started Juni, 1998.  For the flight gear
7  * project.
8  *
9  * Additional mouse supported added by David Megginson, 1999.
10  *
11  * This program is free software; you can redistribute it and/or
12  * modify it under the terms of the GNU General Public License as
13  * published by the Free Software Foundation; either version 2 of the
14  * License, or (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful, but
17  * WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
24  *
25  * $Id$
26  **************************************************************************/
27
28
29 #ifdef HAVE_CONFIG_H
30 #  include <config.h>
31 #endif
32
33 #ifdef HAVE_WINDOWS_H
34 #include <windows.h>
35 #endif
36
37 #include <simgear/compiler.h>
38
39 #include <fstream>
40 #include <string>
41 #include <cstring>
42 #include <sstream>
43
44 #include <stdlib.h>
45
46 #include <simgear/debug/logstream.hxx>
47 #include <simgear/misc/sg_path.hxx>
48 #include <simgear/screen/screen-dump.hxx>
49 #include <simgear/structure/event_mgr.hxx>
50 #include <simgear/props/props_io.hxx>
51
52 #include <Cockpit/panel.hxx>
53 #include <Main/globals.hxx>
54 #include <Main/fg_props.hxx>
55 #include <Main/fg_os.hxx>
56 #include <Viewer/renderer.hxx>
57 #include <Viewer/viewmgr.hxx>
58 #include <Viewer/WindowSystemAdapter.hxx>
59 #include <Viewer/CameraGroup.hxx>
60 #include <GUI/new_gui.hxx>
61
62
63 #ifdef _WIN32
64 #  include <shellapi.h>
65 #endif
66
67 #if defined(SG_MAC)
68 # include <GUI/CocoaHelpers.h> // for cocoaOpenUrl
69 #endif
70
71 #include "gui.h"
72
73 using std::string;
74
75
76 #if defined( TR_HIRES_SNAP)
77 #include <simgear/screen/tr.h>
78 extern void fgUpdateHUD( GLfloat x_start, GLfloat y_start,
79                          GLfloat x_end, GLfloat y_end );
80 #endif
81
82
83 const __fg_gui_fn_t __fg_gui_fn[] = {
84 #ifdef TR_HIRES_SNAP
85         {"dumpHiResSnapShot", fgHiResDumpWrapper},
86 #endif
87         {"dumpSnapShot", fgDumpSnapShotWrapper},
88         // Help
89         {"helpCb", helpCb},
90
91         // Structure termination
92         {"", NULL}
93 };
94
95
96 /* ================ General Purpose Functions ================ */
97
98 // General Purpose Message Box. Makes sure no more than 5 different
99 // messages are displayed at the same time, and none of them are
100 // duplicates. (5 is a *lot*, but this will hardly ever be reached
101 // and we don't want to miss any, either.)
102 void mkDialog (const char *txt)
103 {
104     NewGUI *gui = (NewGUI *)globals->get_subsystem("gui");
105     if (!gui)
106         return;
107     SGPropertyNode *master = gui->getDialogProperties("message");
108     if (!master)
109         return;
110
111     const int maxdialogs = 5;
112     string name;
113     SGPropertyNode *msg = fgGetNode("/sim/gui/dialogs", true);
114     int i;
115     for (i = 0; i < maxdialogs; i++) {
116         std::ostringstream s;
117         s << "message-" << i;
118         name = s.str();
119
120         if (!msg->getNode(name.c_str(), false))
121             break;
122
123         if (!strcmp(txt, msg->getNode(name.c_str())->getStringValue("message"))) {
124             SG_LOG(SG_GENERAL, SG_WARN, "mkDialog(): duplicate of message " << txt);
125             return;
126         }
127     }
128     if (i == maxdialogs)
129         return;
130     msg = msg->getNode(name.c_str(), true);
131     msg->setStringValue("message", txt);
132     msg = msg->getNode("dialog", true);
133     copyProperties(master, msg);
134     msg->setStringValue("name", name.c_str());
135     gui->newDialog(msg);
136     gui->showDialog(name.c_str());
137 }
138
139 // Message Box to report an error.
140 void guiErrorMessage (const char *txt)
141 {
142     SG_LOG(SG_GENERAL, SG_ALERT, txt);
143     mkDialog(txt);
144 }
145
146 // Message Box to report a throwable (usually an exception).
147 void guiErrorMessage (const char *txt, const sg_throwable &throwable)
148 {
149     string msg = txt;
150     msg += '\n';
151     msg += throwable.getFormattedMessage();
152     if (!std::strlen(throwable.getOrigin()) != 0) {
153         msg += "\n (reported by ";
154         msg += throwable.getOrigin();
155         msg += ')';
156     }
157     SG_LOG(SG_GENERAL, SG_ALERT, msg);
158     mkDialog(msg.c_str());
159 }
160
161
162
163 /* -----------------------------------------------------------------------
164 the Gui callback functions 
165 ____________________________________________________________________*/
166
167 void helpCb()
168 {
169     openBrowser( "Docs/index.html" );
170 }
171
172 bool openBrowser(const std::string& aAddress)
173 {
174     bool ok = true;
175     string address(aAddress);
176     
177     // do not resolve addresses with given protocol, i.e. "http://...", "ftp://..."
178     if (address.find("://")==string::npos)
179     {
180         // resolve local file path
181         SGPath path(address);
182         path = globals->resolve_maybe_aircraft_path(address);
183         if (!path.isNull())
184             address = path.str();
185         else
186         {
187             mkDialog ("Sorry, file not found!");
188             SG_LOG(SG_GENERAL, SG_ALERT, "openBrowser: Cannot find requested file '"  
189                     << address << "'.");
190             return false;
191         }
192     }
193
194 #ifdef SG_MAC
195   if (address.find("://")==string::npos) {
196     address = "file://" + address;
197   }
198   
199   cocoaOpenUrl(address);
200 #elif defined _WIN32
201
202     // Look for favorite browser
203     char win32_name[1024];
204 # ifdef __CYGWIN__
205     cygwin32_conv_to_full_win32_path(address.c_str(),win32_name);
206 # else
207     strncpy(win32_name,address.c_str(), 1024);
208 # endif
209     ShellExecute ( NULL, "open", win32_name, NULL, NULL,
210                    SW_SHOWNORMAL ) ;
211 #else
212     // Linux, BSD, SGI etc
213     string command = globals->get_browser();
214     string::size_type pos;
215     if ((pos = command.find("%u", 0)) != string::npos)
216         command.replace(pos, 2, address);
217     else
218         command += " \"" + address +"\"";
219
220     command += " &";
221     ok = (system( command.c_str() ) == 0);
222 #endif
223
224     mkDialog("The file is shown in your web browser window.");
225     return ok;
226 }
227
228 #if defined( TR_HIRES_SNAP)
229 void fgHiResDump()
230 {
231     FILE *f;
232     string message;
233     bool menu_status = fgGetBool("/sim/menubar/visibility");
234     char *filename = new char [24];
235     static int count = 1;
236
237     SGPropertyNode *master_freeze = fgGetNode("/sim/freeze/master");
238
239     bool freeze = master_freeze->getBoolValue();
240     if ( !freeze ) {
241         master_freeze->setBoolValue(true);
242     }
243
244     fgSetBool("/sim/menubar/visibility", false);
245     int mouse = fgGetMouseCursor();
246     fgSetMouseCursor(MOUSE_CURSOR_NONE);
247
248     FGRenderer *renderer = globals->get_renderer();
249 //     renderer->init();
250     renderer->resize( fgGetInt("/sim/startup/xsize"),
251                       fgGetInt("/sim/startup/ysize") );
252
253     // we need two render frames here to clear the menu and cursor
254     // ... not sure why but doing an extra fgRenderFrame() shouldn't
255     // hurt anything
256     //renderer->update( true );
257     //renderer->update( true );
258
259     // This ImageSize stuff is a temporary hack
260     // should probably use 128x128 tile size and
261     // support any image size
262
263     // This should be a requester to get multiplier from user
264     int multiplier = fgGetInt("/sim/startup/hires-multiplier", 3);
265     int width = fgGetInt("/sim/startup/xsize");
266     int height = fgGetInt("/sim/startup/ysize");
267         
268     /* allocate buffer large enough to store one tile */
269     GLubyte *tile = (GLubyte *)malloc(width * height * 3 * sizeof(GLubyte));
270     if (!tile) {
271         delete [] filename;
272         printf("Malloc of tile buffer failed!\n");
273         return;
274     }
275
276     int imageWidth  = multiplier*width;
277     int imageHeight = multiplier*height;
278
279     /* allocate buffer to hold a row of tiles */
280     GLubyte *buffer
281         = (GLubyte *)malloc(imageWidth * height * 3 * sizeof(GLubyte));
282     if (!buffer) {
283         delete [] filename;
284         free(tile);
285         printf("Malloc of tile row buffer failed!\n");
286         return;
287     }
288     TRcontext *tr = trNew();
289     trTileSize(tr, width, height, 0);
290     trTileBuffer(tr, GL_RGB, GL_UNSIGNED_BYTE, tile);
291     trImageSize(tr, imageWidth, imageHeight);
292     trRowOrder(tr, TR_TOP_TO_BOTTOM);
293     // OSGFIXME
294 //     sgFrustum *frustum = ssgGetFrustum();
295 //     trFrustum(tr,
296 //               frustum->getLeft(), frustum->getRight(),
297 //               frustum->getBot(),  frustum->getTop(), 
298 //               frustum->getNear(), frustum->getFar());
299         
300     /* Prepare ppm output file */
301     while (count < 1000) {
302         snprintf(filename, 24, "fgfs-screen-%03d.ppm", count++);
303         if ( (f = fopen(filename, "r")) == NULL )
304             break;
305         fclose(f);
306     }
307     f = fopen(filename, "wb");
308     if (!f) {
309         printf("Couldn't open image file: %s\n", filename);
310         delete [] filename;
311         free(buffer);
312         free(tile);
313         return;
314     }
315     fprintf(f,"P6\n");
316     fprintf(f,"# ppm-file created by %s\n", "trdemo2");
317     fprintf(f,"%i %i\n", imageWidth, imageHeight);
318     fprintf(f,"255\n");
319
320     /* just to be safe... */
321     glPixelStorei(GL_PACK_ALIGNMENT, 1);
322
323     // OSGFIXME
324 #if 0
325     /* Because the HUD and Panel change the ViewPort we will
326      * need to handle some lowlevel stuff ourselves */
327     int ncols = trGet(tr, TR_COLUMNS);
328     int nrows = trGet(tr, TR_ROWS);
329
330     bool do_hud = fgGetBool("/sim/hud/visibility");
331     GLfloat hud_col_step = 640.0 / ncols;
332     GLfloat hud_row_step = 480.0 / nrows;
333         
334     bool do_panel = fgPanelVisible();
335     GLfloat panel_col_step = globals->get_current_panel()->getWidth() / ncols;
336     GLfloat panel_row_step = globals->get_current_panel()->getHeight() / nrows;
337 #endif
338     glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST);
339     glHint(GL_POLYGON_SMOOTH_HINT, GL_NICEST);
340     glHint(GL_LINE_SMOOTH_HINT, GL_NICEST);
341     glHint(GL_POINT_SMOOTH_HINT, GL_NICEST);
342     glHint(GL_FOG_HINT, GL_NICEST);
343         
344     /* Draw tiles */
345     int more = 1;
346     while (more) {
347         trBeginTile(tr);
348         int curColumn = trGet(tr, TR_CURRENT_COLUMN);
349         // int curRow =  trGet(tr, TR_CURRENT_ROW);
350
351         renderer->update();
352         // OSGFIXME
353 //         if ( do_hud )
354 //             fgUpdateHUD( curColumn*hud_col_step,      curRow*hud_row_step,
355 //                          (curColumn+1)*hud_col_step, (curRow+1)*hud_row_step );
356         // OSGFIXME
357 //         if (do_panel)
358 //             globals->get_current_panel()->update(
359 //                                    curColumn*panel_col_step, panel_col_step,
360 //                                    curRow*panel_row_step,    panel_row_step );
361         more = trEndTile(tr);
362
363         /* save tile into tile row buffer*/
364         int curTileWidth = trGet(tr, TR_CURRENT_TILE_WIDTH);
365         int bytesPerImageRow = imageWidth * 3*sizeof(GLubyte);
366         int bytesPerTileRow = (width) * 3*sizeof(GLubyte);
367         int xOffset = curColumn * bytesPerTileRow;
368         int bytesPerCurrentTileRow = (curTileWidth) * 3*sizeof(GLubyte);
369         int i;
370         for (i=0;i<height;i++) {
371             memcpy(buffer + i*bytesPerImageRow + xOffset, /* Dest */
372                    tile + i*bytesPerTileRow,              /* Src */
373                    bytesPerCurrentTileRow);               /* Byte count*/
374         }
375
376         if (curColumn == trGet(tr, TR_COLUMNS)-1) {
377             /* write this buffered row of tiles to the file */
378             int curTileHeight = trGet(tr, TR_CURRENT_TILE_HEIGHT);
379             int bytesPerImageRow = imageWidth * 3*sizeof(GLubyte);
380             int i;
381             for (i=0;i<curTileHeight;i++) {
382                 /* Remember, OpenGL images are bottom to top.  Have to reverse. */
383                 GLubyte *rowPtr = buffer + (curTileHeight-1-i) * bytesPerImageRow;
384                 fwrite(rowPtr, 1, imageWidth*3, f);
385             }
386         }
387
388     }
389
390     renderer->resize( width, height );
391
392     trDelete(tr);
393
394     glHint(GL_POLYGON_SMOOTH_HINT, GL_DONT_CARE);
395     glHint(GL_LINE_SMOOTH_HINT, GL_DONT_CARE);
396     glHint(GL_POINT_SMOOTH_HINT, GL_DONT_CARE);
397     glHint(GL_PERSPECTIVE_CORRECTION_HINT, GL_DONT_CARE);
398     if ( (!strcmp(fgGetString("/sim/rendering/fog"), "disabled")) ||
399          (!fgGetBool("/sim/rendering/shading"))) {
400         // if fastest fog requested, or if flat shading force fastest
401         glHint ( GL_FOG_HINT, GL_FASTEST );
402     } else if ( !strcmp(fgGetString("/sim/rendering/fog"), "nicest") ) {
403         glHint ( GL_FOG_HINT, GL_DONT_CARE );
404     }
405
406     fclose(f);
407
408     message = "Snapshot saved to \"";
409     message += filename;
410     message += "\".";
411     mkDialog (message.c_str());
412
413     free(tile);
414     free(buffer);
415
416     delete [] filename;
417
418     fgSetMouseCursor(mouse);
419     fgSetBool("/sim/menubar/visibility", menu_status);
420
421     if ( !freeze ) {
422         master_freeze->setBoolValue(false);
423     }
424 }
425 #endif // #if defined( TR_HIRES_SNAP)
426
427 void fgDumpSnapShotWrapper () {
428     fgDumpSnapShot();
429 }
430
431
432 void fgHiResDumpWrapper () {
433     fgHiResDump();
434 }
435
436 namespace
437 {
438     using namespace flightgear;
439
440     class GUISnapShotOperation : 
441         public GraphicsContextOperation
442     {
443     public:
444
445         // start new snap shot
446         static bool start()
447         {
448             // allow only one snapshot at a time
449             if (_snapShotOp.valid())
450                 return false;
451             _snapShotOp = new GUISnapShotOperation();
452             /* register with graphics context so actual snap shot is done
453              * in the graphics context (thread) */
454             osg::Camera* guiCamera = getGUICamera(CameraGroup::getDefault());
455             WindowSystemAdapter* wsa = WindowSystemAdapter::getWSA();
456             osg::GraphicsContext* gc = 0;
457             if (guiCamera)
458                 gc = guiCamera->getGraphicsContext();
459             if (gc) {
460                 gc->add(_snapShotOp.get());
461             } else {
462                 wsa->windows[0]->gc->add(_snapShotOp.get());
463             }
464             return true;
465         }
466
467     private:
468         // constructor to be executed in main loop's thread
469         GUISnapShotOperation() :
470             flightgear::GraphicsContextOperation(std::string("GUI snap shot")),
471             _master_freeze(fgGetNode("/sim/freeze/master", true)),
472             _freeze(_master_freeze->getBoolValue()),
473             _result(false),
474             _mouse(fgGetMouseCursor())
475         {
476             if (!_freeze)
477                 _master_freeze->setBoolValue(true);
478
479             fgSetMouseCursor(MOUSE_CURSOR_NONE);
480
481             string dir = fgGetString("/sim/paths/screenshot-dir");
482             if (dir.empty())
483                 dir = SGPath::desktop().str();
484
485             _path.set(dir + '/');
486             if (_path.create_dir( 0755 )) {
487                 SG_LOG(SG_GENERAL, SG_ALERT, "Cannot create screenshot directory '"
488                         << dir << "'. Trying home directory.");
489                 dir = globals->get_fg_home();
490             }
491
492             char filename[24];
493             static int count = 1;
494             while (count < 1000) {
495                 snprintf(filename, 24, "fgfs-screen-%03d.png", count++);
496
497                 SGPath p(dir);
498                 p.append(filename);
499                 if (!p.exists()) {
500                     _path.set(p.str());
501                     break;
502                 }
503             }
504
505             _xsize = fgGetInt("/sim/startup/xsize");
506             _ysize = fgGetInt("/sim/startup/ysize");
507
508             FGRenderer *renderer = globals->get_renderer();
509             renderer->resize(_xsize, _ysize);
510             globals->get_event_mgr()->addTask("SnapShotTimer",
511                     this, &GUISnapShotOperation::timerExpired,
512                     0.1, false);
513         }
514
515         // to be executed in graphics context (maybe separate thread)
516         void run(osg::GraphicsContext* gc)
517         {
518             _result = sg_glDumpWindow(_path.c_str(),
519                                      _xsize,
520                                      _ysize);
521         }
522
523         // timer method, to be executed in main loop's thread
524         virtual void timerExpired()
525         {
526             if (isFinished())
527             {
528                 globals->get_event_mgr()->removeTask("SnapShotTimer");
529
530                 fgSetString("/sim/paths/screenshot-last", _path.c_str());
531                 fgSetBool("/sim/signals/screenshot", _result);
532
533                 fgSetMouseCursor(_mouse);
534
535                 if ( !_freeze )
536                     _master_freeze->setBoolValue(false);
537
538                 _snapShotOp = 0;
539             }
540         }
541     
542         static osg::ref_ptr<GUISnapShotOperation> _snapShotOp;
543         SGPropertyNode_ptr _master_freeze;
544         bool _freeze;
545         bool _result;
546         int _mouse;
547         int _xsize, _ysize;
548         SGPath _path;
549     };
550
551 } // of anonymous namespace
552
553 osg::ref_ptr<GUISnapShotOperation> GUISnapShotOperation::_snapShotOp;
554
555 // do a screen snap shot
556 bool fgDumpSnapShot ()
557 {
558     // start snap shot operation, while needs to be executed in
559     // graphics context
560     return GUISnapShotOperation::start();
561 }
562
563 // do an entire scenegraph dump
564 void fgDumpSceneGraph()
565 {
566     char *filename = new char [24];
567     string message;
568     static int count = 1;
569
570     SGPropertyNode *master_freeze = fgGetNode("/sim/freeze/master");
571
572     bool freeze = master_freeze->getBoolValue();
573     if ( !freeze ) {
574         master_freeze->setBoolValue(true);
575     }
576
577     while (count < 1000) {
578         FILE *fp;
579         snprintf(filename, 24, "fgfs-graph-%03d.osg", count++);
580         if ( (fp = fopen(filename, "r")) == NULL )
581             break;
582         fclose(fp);
583     }
584
585     if ( fgDumpSceneGraphToFile(filename)) {
586         message = "Entire scene graph saved to \"";
587         message += filename;
588         message += "\".";
589     } else {
590         message = "Failed to save to \"";
591         message += filename;
592         message += "\".";
593     }
594
595     mkDialog (message.c_str());
596
597     delete [] filename;
598
599     if ( !freeze ) {
600         master_freeze->setBoolValue(false);
601     }
602 }
603
604     
605 // do an terrain branch dump
606 void fgDumpTerrainBranch()
607 {
608     char *filename = new char [24];
609     string message;
610     static int count = 1;
611
612     SGPropertyNode *master_freeze = fgGetNode("/sim/freeze/master");
613
614     bool freeze = master_freeze->getBoolValue();
615     if ( !freeze ) {
616         master_freeze->setBoolValue(true);
617     }
618
619     while (count < 1000) {
620         FILE *fp;
621         snprintf(filename, 24, "fgfs-graph-%03d.osg", count++);
622         if ( (fp = fopen(filename, "r")) == NULL )
623             break;
624         fclose(fp);
625     }
626
627     if ( fgDumpTerrainBranchToFile(filename)) {
628         message = "Terrain graph saved to \"";
629         message += filename;
630         message += "\".";
631     } else {
632         message = "Failed to save to \"";
633         message += filename;
634         message += "\".";
635     }
636
637     mkDialog (message.c_str());
638
639     delete [] filename;
640
641     if ( !freeze ) {
642         master_freeze->setBoolValue(false);
643     }
644 }
645
646 void fgPrintVisibleSceneInfoCommand()
647 {
648     SGPropertyNode *master_freeze = fgGetNode("/sim/freeze/master");
649
650     bool freeze = master_freeze->getBoolValue();
651     if ( !freeze ) {
652         master_freeze->setBoolValue(true);
653     }
654
655     flightgear::printVisibleSceneInfo(globals->get_renderer());
656
657     if ( !freeze ) {
658         master_freeze->setBoolValue(false);
659     }
660 }