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