]> git.mxchange.org Git - flightgear.git/blob - src/Cockpit/panel.hxx
14dd2746c60c6fe31902c86eeef6e922597fddce
[flightgear.git] / src / Cockpit / panel.hxx
1 //  panel.hxx - generic support classes for a 2D panel.
2 //
3 //  Written by David Megginson, started January 2000.
4 //
5 //  This program is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU General Public License as
7 //  published by the Free Software Foundation; either version 2 of the
8 //  License, or (at your option) any later version.
9 // 
10 //  This program is distributed in the hope that it will be useful, but
11 //  WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  General Public License for more details.
14 // 
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program; if not, write to the Free Software
17 //  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 //
19 //  $Id$
20
21 #ifndef __PANEL_HXX
22 #define __PANEL_HXX
23
24 #ifndef __cplusplus                                                          
25 # error This library requires C++
26 #endif                                   
27
28
29 #ifdef HAVE_CONFIG_H
30 #  include <config.h>
31 #endif
32
33 #include <simgear/compiler.h>
34
35 #ifdef HAVE_WINDOWS_H          
36 #  include <windows.h>
37 #endif
38
39 #include GLUT_H
40
41 #include <plib/ssg.h>
42
43 #include <simgear/math/interpolater.hxx>
44 #include <simgear/misc/props.hxx>
45 #include <simgear/timing/timestamp.hxx>
46
47 #include <vector>
48 #include <map>
49 #include <plib/fnt.h>
50
51 #include <Main/fgfs.hxx>
52 #include <Main/fg_props.hxx>
53
54 #include <Input/input.hxx>
55
56 SG_USING_STD(vector);
57 SG_USING_STD(map);
58
59 class FGPanelInstrument;
60
61
62 \f
63 ////////////////////////////////////////////////////////////////////////
64 // Texture management.
65 ////////////////////////////////////////////////////////////////////////
66
67
68 /**
69  * Texture manager (should migrate out into FGFS).
70  *
71  * This class ensures that no texture is loaded more than once.
72  */
73 class FGTextureManager
74 {
75 public:
76   static ssgTexture * createTexture(const string &relativePath);
77 private:
78   static map<string,ssgTexture *> _textureMap;
79 };
80
81
82 /**
83  * Cropped texture (should migrate out into FGFS).
84  *
85  * This structure wraps an SSG texture with cropping information.
86  */
87 class FGCroppedTexture
88 {
89 public:
90
91   FGCroppedTexture ();
92   FGCroppedTexture (const string &path,
93                   float _minX = 0.0, float _minY = 0.0,
94                   float _maxX = 1.0, float _maxY = 1.0);
95   virtual ~FGCroppedTexture ();
96
97   virtual void setPath (const string &path) { _path = path; }
98
99   virtual const string &getPath () const { return _path; }
100
101   virtual ssgTexture * getTexture ();
102
103   virtual void setCrop (float minX, float minY, float maxX, float maxY) {
104     _minX = minX; _minY = minY; _maxX = maxX; _maxY = maxY;
105   }
106
107   virtual float getMinX () const { return _minX; }
108   virtual float getMinY () const { return _minY; }
109   virtual float getMaxX () const { return _maxX; }
110   virtual float getMaxY () const { return _maxY; }
111
112
113 private:
114   string _path;
115   ssgTexture * _texture;
116   float _minX, _minY, _maxX, _maxY;
117 };
118
119
120 \f
121 ////////////////////////////////////////////////////////////////////////
122 // Top-level panel.
123 ////////////////////////////////////////////////////////////////////////
124
125
126 /**
127  * Instrument panel class.
128  *
129  * The panel is a container that has a background texture and holds
130  * zero or more instruments.  The panel will order the instruments to
131  * redraw themselves when necessary, and will pass mouse clicks on to
132  * the appropriate instruments for processing.
133  */
134 class FGPanel : public FGSubsystem
135 {
136 public:
137
138   FGPanel ();
139   virtual ~FGPanel ();
140
141                                 // Update the panel (every frame).
142   virtual void init ();
143   virtual void bind ();
144   virtual void unbind ();
145   virtual void draw ();
146   virtual void update (double dt);
147   virtual void update (GLfloat winx, GLfloat winw, GLfloat winy, GLfloat winh);
148
149   virtual void updateMouseDelay();
150
151                                 // transfer pointer ownership!!!
152   virtual void addInstrument (FGPanelInstrument * instrument);
153
154                                 // Background texture.
155   virtual void setBackground (ssgTexture * texture);
156
157                                 // Background multiple textures.
158   virtual void setMultiBackground (ssgTexture * texture, int idx);
159
160                                 // Make the panel visible or invisible.
161   virtual bool getVisibility () const;
162   virtual void setVisibility (bool visibility);
163
164                                 // Full width of panel.
165   virtual void setWidth (int width) { _width = width; }
166   virtual int getWidth () const { return _width; }
167
168                                 // Full height of panel.
169   virtual void setHeight (int height) { _height = height; }
170   virtual int getHeight () const { return _height; }
171
172                                 // X-offset
173   virtual void setXOffset (int offset);
174   virtual int getXOffset () const { return _x_offset; }
175
176                                 // Y-offset.
177   virtual void setYOffset (int offset);
178   virtual int getYOffset () const { return _y_offset; }
179
180                                 // View height.
181   virtual void setViewHeight (int height) { _view_height = height; }
182   virtual int getViewHeight () const { return _view_height; }
183
184                                 // Handle a mouse click.
185   virtual bool doMouseAction (int button, int updown, int x, int y);
186   virtual bool doLocalMouseAction(int button, int updown, int x, int y);
187
188 private:
189   void setupVirtualCockpit();
190   void cleanupVirtualCockpit();
191
192   mutable bool _visibility;
193   mutable bool _mouseDown;
194   mutable int _mouseButton, _mouseX, _mouseY;
195   mutable int _mouseDelay;
196   mutable FGPanelInstrument * _mouseInstrument;
197   typedef vector<FGPanelInstrument *> instrument_list_type;
198   int _width;
199   int _height;
200   int _x_offset;
201   int _y_offset;
202   int _view_height;
203   float _jitter;
204   bool _flipx;
205
206   const SGPropertyNode * _xsize_node;
207   const SGPropertyNode * _ysize_node;
208   
209   ssgTexture * _bg;
210   ssgTexture * _mbg[8];
211                                 // List of instruments in panel.
212   instrument_list_type _instruments;
213 };
214
215
216 \f
217 ////////////////////////////////////////////////////////////////////////
218 // Actions
219 ////////////////////////////////////////////////////////////////////////
220
221
222 /**
223  * Class for user actions.
224  *
225  * The actions are command bindings, like bindings for the keyboard
226  * or joystick, but they are tied to specific mouse actions in
227  * rectangular areas of the panel.
228  */
229 class FGPanelAction : public FGConditional
230 {
231 public:
232   FGPanelAction ();
233   FGPanelAction (int button, int x, int y, int w, int h);
234   virtual ~FGPanelAction ();
235
236                                 // Getters.
237   virtual int getButton () const { return _button; }
238   virtual int getX () const { return _x; }
239   virtual int getY () const { return _y; }
240   virtual int getWidth () const { return _w; }
241   virtual int getHeight () const { return _h; }
242
243                                 // Setters.
244
245                                 // transfer pointer ownership
246   virtual void addBinding (FGBinding * binding);
247   virtual void setButton (int button) { _button = button; }
248   virtual void setX (int x) { _x = x; }
249   virtual void setY (int y) { _y = y; }
250   virtual void setWidth (int w) { _w = w; }
251   virtual void setHeight (int h) { _h = h; }
252
253                                 // Check whether we're in the area.
254   virtual bool inArea (int button, int x, int y)
255   {
256     return (button == _button &&
257             x >= _x &&
258             x < _x + _w &&
259             y >= _y &&
260             y < _y + _h);
261   }
262
263                                 // Perform the action.
264   virtual void doAction ();
265
266 private:
267   typedef vector<FGBinding *> binding_list_t;
268
269   int _button;
270   int _x;
271   int _y;
272   int _w;
273   int _h;
274   binding_list_t _bindings;
275 };
276
277
278 \f
279 ////////////////////////////////////////////////////////////////////////
280 // Transformations.
281 ////////////////////////////////////////////////////////////////////////
282
283
284 /**
285  * A transformation for a layer.
286  */
287 class FGPanelTransformation : public FGConditional
288 {
289 public:
290
291   enum Type {
292     XSHIFT,
293     YSHIFT,
294     ROTATION
295   };
296
297   FGPanelTransformation ();
298   virtual ~FGPanelTransformation ();
299
300   Type type;
301   const SGPropertyNode * node;
302   float min;
303   float max;
304   float factor;
305   float offset;
306   SGInterpTable * table;
307 };
308
309
310
311 \f
312 ////////////////////////////////////////////////////////////////////////
313 // Layers
314 ////////////////////////////////////////////////////////////////////////
315
316
317 /**
318  * A single layer of a multi-layered instrument.
319  *
320  * Each layer can be subject to a series of transformations based
321  * on current FGFS instrument readings: for example, a texture
322  * representing a needle can rotate to show the airspeed.
323  */
324 class FGInstrumentLayer : public FGConditional
325 {
326 public:
327
328   FGInstrumentLayer (int w = -1, int h = -1);
329   virtual ~FGInstrumentLayer ();
330
331   virtual void draw () = 0;
332   virtual void transform () const;
333
334   virtual int getWidth () const { return _w; }
335   virtual int getHeight () const { return _h; }
336   virtual void setWidth (int w) { _w = w; }
337   virtual void setHeight (int h) { _h = h; }
338
339                                 // Transfer pointer ownership!!
340                                 // DEPRECATED
341   virtual void addTransformation (FGPanelTransformation * transformation);
342
343 protected:
344   int _w, _h;
345
346   typedef vector<FGPanelTransformation *> transformation_list;
347   transformation_list _transformations;
348 };
349
350
351 \f
352 ////////////////////////////////////////////////////////////////////////
353 // Instruments.
354 ////////////////////////////////////////////////////////////////////////
355
356
357 /**
358  * Abstract base class for a panel instrument.
359  *
360  * A panel instrument consists of zero or more actions, associated
361  * with mouse clicks in rectangular areas.  Currently, the only
362  * concrete class derived from this is FGLayeredInstrument, but others
363  * may show up in the future (some complex instruments could be 
364  * entirely hand-coded, for example).
365  */
366 class FGPanelInstrument : public FGConditional
367 {
368 public:
369   FGPanelInstrument ();
370   FGPanelInstrument (int x, int y, int w, int h);
371   virtual ~FGPanelInstrument ();
372
373   virtual void draw () = 0;
374   virtual void drawHotspots();
375
376   virtual void setPosition(int x, int y);
377   virtual void setSize(int w, int h);
378
379   virtual int getXPos () const;
380   virtual int getYPos () const;
381   virtual int getWidth () const;
382   virtual int getHeight () const;
383
384                                 // Coordinates relative to centre.
385                                 // Transfer pointer ownership!!
386   virtual void addAction (FGPanelAction * action);
387
388                                 // Coordinates relative to centre.
389   virtual bool doMouseAction (int button, int x, int y);
390
391 protected:
392   int _x, _y, _w, _h;
393   typedef vector<FGPanelAction *> action_list_type;
394   action_list_type _actions;
395 };
396
397
398 /**
399  * An instrument constructed of multiple layers.
400  *
401  * Each individual layer can be rotated or shifted to correspond
402  * to internal FGFS instrument readings.
403  */
404 class FGLayeredInstrument : public FGPanelInstrument
405 {
406 public:
407   FGLayeredInstrument (int x, int y, int w, int h);
408   virtual ~FGLayeredInstrument ();
409
410   virtual void draw ();
411
412                                 // Transfer pointer ownership!!
413   virtual int addLayer (FGInstrumentLayer *layer);
414   virtual int addLayer (FGCroppedTexture &texture, int w = -1, int h = -1);
415
416                                 // Transfer pointer ownership!!
417   virtual void addTransformation (FGPanelTransformation * transformation);
418
419 protected:
420   typedef vector<FGInstrumentLayer *> layer_list;
421   layer_list _layers;
422 };
423
424
425 /**
426  * An instrument layer containing a group of sublayers.
427  *
428  * This class is useful for gathering together a group of related
429  * layers, either to hold in an external file or to work under
430  * the same condition.
431  */
432 class FGGroupLayer : public FGInstrumentLayer
433 {
434 public:
435   FGGroupLayer ();
436   virtual ~FGGroupLayer ();
437   virtual void draw ();
438                                 // transfer pointer ownership
439   virtual void addLayer (FGInstrumentLayer * layer);
440 private:
441   vector<FGInstrumentLayer *> _layers;
442 };
443
444
445 /**
446  * A textured layer of an instrument.
447  *
448  * This is a layer holding a single texture.  Normally, the texture's
449  * backgound should be transparent so that lower layers and the panel
450  * background can show through.
451  */
452 class FGTexturedLayer : public FGInstrumentLayer
453 {
454 public:
455   FGTexturedLayer (int w = -1, int h = -1) : FGInstrumentLayer(w, h) {}
456   FGTexturedLayer (const FGCroppedTexture &texture, int w = -1, int h = -1);
457   virtual ~FGTexturedLayer ();
458
459   virtual void draw ();
460
461   virtual void setTexture (const FGCroppedTexture &texture) {
462     _texture = texture;
463   }
464   virtual FGCroppedTexture &getTexture () { return _texture; }
465   virtual const FGCroppedTexture &getTexture () const { return _texture; }
466
467 private:
468   mutable FGCroppedTexture _texture;
469 };
470
471
472 /**
473  * A text layer of an instrument.
474  *
475  * This is a layer holding a string of static and/or generated text.
476  * It is useful for instruments that have text displays, such as
477  * a chronometer, GPS, or NavCom radio.
478  */
479 class FGTextLayer : public FGInstrumentLayer
480 {
481 public:
482   enum ChunkType {
483     TEXT,
484     TEXT_VALUE,
485     DOUBLE_VALUE
486   };
487
488   class Chunk : public FGConditional
489   {
490   public:
491     Chunk (const string &text, const string &fmt = "%s");
492     Chunk (ChunkType type, const SGPropertyNode * node,
493            const string &fmt = "", float mult = 1.0);
494
495     const char * getValue () const;
496   private:
497     ChunkType _type;
498     string _text;
499     const SGPropertyNode * _node;
500     string _fmt;
501     float _mult;
502     mutable char _buf[1024];
503   };
504
505   FGTextLayer (int w = -1, int h = -1);
506   virtual ~FGTextLayer ();
507
508   virtual void draw ();
509
510                                 // Transfer pointer!!
511   virtual void addChunk (Chunk * chunk);
512   virtual void setColor (float r, float g, float b);
513   virtual void setPointSize (float size);
514   virtual void setFontName ( const string &name );
515   virtual void setFont (fntFont * font);
516
517 private:
518
519   void recalc_value () const;
520
521   typedef vector<Chunk *> chunk_list;
522   chunk_list _chunks;
523   float _color[4];
524
525   float _pointSize;
526   mutable string _font_name;
527   mutable string _value;
528   mutable SGTimeStamp _then;
529   mutable SGTimeStamp _now;
530 };
531
532
533 /**
534  * A layer that switches between two other layers.
535  *
536  * The usefulness of this layer is questionable now that all layers
537  * can have conditions, and it may be deprecated soon.
538  */
539 class FGSwitchLayer : public FGInstrumentLayer
540 {
541 public:
542                                 // Transfer pointers!!
543   FGSwitchLayer (int w, int h, const SGPropertyNode * node,
544                  FGInstrumentLayer * layer1,
545                  FGInstrumentLayer * layer2);
546   virtual ~FGSwitchLayer ();
547
548   virtual void draw ();
549
550 private:
551   const SGPropertyNode * _node;
552   FGInstrumentLayer * _layer1, * _layer2;
553 };
554
555
556
557 \f
558 ////////////////////////////////////////////////////////////////////////
559 // Functions.
560 ////////////////////////////////////////////////////////////////////////
561
562 /**
563  * Test whether the panel should be visible.
564  */
565 bool fgPanelVisible ();
566
567
568 \f
569 ////////////////////////////////////////////////////////////////////////
570 // The current panel, if any.
571 ////////////////////////////////////////////////////////////////////////
572
573 extern FGPanel * current_panel; // TODO: move to globals
574
575
576 \f
577 #endif // __PANEL_HXX
578
579 // end of panel.hxx
580
581
582