]> git.mxchange.org Git - flightgear.git/blob - src/GUI/CanvasWidget.cxx
CanvasWidget: add auto-viewport property.
[flightgear.git] / src / GUI / CanvasWidget.cxx
1 /*
2  * CanvasWidget.cxx
3  *
4  *  Created on: 03.07.2012
5  *      Author: tom
6  */
7
8 #ifdef HAVE_CONFIG_H
9 #  include <config.h>
10 #endif
11
12 #include "CanvasWidget.hxx"
13
14 #include <Canvas/canvas_mgr.hxx>
15 #include <Main/fg_os.hxx>      // fgGetKeyModifiers()
16 #include <Scripting/NasalSys.hxx>
17
18 #include <simgear/canvas/Canvas.hxx>
19 #include <simgear/canvas/MouseEvent.hxx>
20
21 SGPropertyNode_ptr CanvasWidget::_time,
22                    CanvasWidget::_view_height;
23
24 //------------------------------------------------------------------------------
25 CanvasWidget::CanvasWidget( int x, int y,
26                             int width, int height,
27                             SGPropertyNode* props,
28                             const std::string& module ):
29   puObject(x, y, width, height),
30   _canvas_mgr( dynamic_cast<CanvasMgr*>(globals->get_subsystem("Canvas")) ),
31   _last_x(0),
32   _last_y(0),
33   _auto_viewport( props->getBoolValue("auto-viewport", true) )
34 {
35   if( !_canvas_mgr )
36   {
37     SG_LOG(SG_GENERAL, SG_ALERT, "CanvasWidget: failed to get canvas manager!");
38     return;
39   }
40
41   _canvas = _canvas_mgr->createCanvas
42   (
43     props->getStringValue("name", "gui-anonymous")
44   );
45
46   int view[2] = {
47     // Get canvas viewport size. If not specified use the widget dimensions
48     props->getIntValue("view[0]", width),
49     props->getIntValue("view[1]", height)
50   };
51
52   SGPropertyNode* cprops = _canvas->getProps();
53   cprops->setIntValue("size[0]", view[0] * 2); // use higher resolution
54   cprops->setIntValue("size[1]", view[1] * 2); // for antialias
55   cprops->setIntValue("view[0]", view[0]);
56   cprops->setIntValue("view[1]", view[1]);
57   cprops->setBoolValue("render-always", true);
58   cprops->setStringValue( "name",
59                            props->getStringValue("name", "gui-anonymous") );
60
61   SGPropertyNode *nasal = props->getNode("nasal");
62   if( !nasal )
63     return;
64
65   FGNasalSys *nas = dynamic_cast<FGNasalSys*>(globals->get_subsystem("nasal"));
66   if( !nas )
67     SG_LOG( SG_GENERAL,
68             SG_ALERT,
69             "CanvasWidget: Failed to get nasal subsystem!" );
70
71   const std::string file = std::string("__canvas:")
72                          + cprops->getStringValue("name");
73
74   SGPropertyNode *load = nasal->getNode("load");
75   if( load )
76   {
77     const char *s = load->getStringValue();
78     nas->handleCommand(module.c_str(), file.c_str(), s, cprops);
79   }
80 }
81
82 //------------------------------------------------------------------------------
83 CanvasWidget::~CanvasWidget()
84 {
85   if( _canvas )
86     // TODO check if really not in use anymore
87     _canvas->getProps()
88            ->getParent()
89            ->removeChild( _canvas->getProps()->getName(),
90                           _canvas->getProps()->getIndex(),
91                           false );
92 }
93
94 // Old versions of PUI are missing this defines...
95 #ifndef PU_SCROLL_UP_BUTTON
96 # define PU_SCROLL_UP_BUTTON     3
97 #endif
98 #ifndef PU_SCROLL_DOWN_BUTTON
99 # define PU_SCROLL_DOWN_BUTTON   4
100 #endif
101
102 //------------------------------------------------------------------------------
103 void CanvasWidget::doHit(int button, int updown, int x, int y)
104 {
105   puObject::doHit(button, updown, x, y);
106
107   // CTRL allows resizing and SHIFT allows moving the window
108   if( fgGetKeyModifiers() & (KEYMOD_CTRL | KEYMOD_SHIFT) )
109     return;
110
111   namespace sc = simgear::canvas;
112   sc::MouseEventPtr event(new sc::MouseEvent);
113
114   if( !_time )
115     _time = globals->get_props()->getNode("/sim/time/elapsed-sec");
116   event->time = _time->getDoubleValue();
117
118   if( !_view_height )
119     _view_height = globals->get_props()->getNode("/sim/gui/canvas/size[1]");
120   event->screen_pos.set(x, _view_height->getIntValue() - y);
121
122   event->client_pos.set(x - abox.min[0], abox.max[1] - y);
123   event->delta.set( event->getScreenX() - _last_x,
124                     event->getScreenY() - _last_y );
125
126   _last_x = event->getScreenX();
127   _last_y = event->getScreenY();
128
129   switch( button )
130   {
131     case PU_LEFT_BUTTON:
132       event->button = osgGA::GUIEventAdapter::LEFT_MOUSE_BUTTON;
133       break;
134     case PU_MIDDLE_BUTTON:
135       event->button = osgGA::GUIEventAdapter::MIDDLE_MOUSE_BUTTON;
136       break;
137     case PU_RIGHT_BUTTON:
138       event->button = osgGA::GUIEventAdapter::RIGHT_MOUSE_BUTTON;
139       break;
140     case PU_SCROLL_UP_BUTTON:
141     case PU_SCROLL_DOWN_BUTTON:
142       // Only let PU_DOWN trigger a scroll wheel event
143       if( updown != PU_DOWN )
144         return;
145
146       event->type = sc::Event::WHEEL;
147       event->delta.y() = button == PU_SCROLL_UP_BUTTON ? 1 : -1;
148
149       _canvas->handleMouseEvent(event);
150
151       return;
152     default:
153       SG_LOG(SG_INPUT, SG_WARN, "CanvasWidget: Unknown button: " << button);
154       return;
155   }
156
157   switch( updown )
158   {
159     case PU_DOWN:
160       event->type = sc::Event::MOUSE_DOWN;
161       puSetActiveWidget(this, x, y);
162       break;
163     case PU_UP:
164       event->type = sc::Event::MOUSE_UP;
165       puDeactivateWidget();
166       break;
167     case PU_DRAG:
168       event->type = sc::Event::DRAG;
169       break;
170     default:
171       SG_LOG(SG_INPUT, SG_WARN, "CanvasWidget: Unknown updown: " << updown);
172       return;
173   }
174
175   _canvas->handleMouseEvent(event);
176 }
177
178 //------------------------------------------------------------------------------
179 int CanvasWidget::checkKey(int key, int updown)
180 {
181   return puObject::checkKey(key, updown);
182 }
183
184 //------------------------------------------------------------------------------
185 void CanvasWidget::setSize(int w, int h)
186 {
187   puObject::setSize(w, h);
188
189   if( _auto_viewport )
190   {
191     _canvas->getProps()->setIntValue("view[0]", w);
192     _canvas->getProps()->setIntValue("view[1]", h);
193   }
194 }
195
196 //------------------------------------------------------------------------------
197 void CanvasWidget::draw(int dx, int dy)
198 {
199   glEnable(GL_TEXTURE_2D);
200   glBindTexture(GL_TEXTURE_2D, _canvas_mgr->getCanvasTexId(_canvas));
201   glBegin( GL_QUADS );
202     glColor3f(1,1,1);
203     glTexCoord2f(0,0); glVertex2f(dx + abox.min[0], dy + abox.min[1]);
204     glTexCoord2f(1,0); glVertex2f(dx + abox.max[0], dy + abox.min[1]);
205     glTexCoord2f(1,1); glVertex2f(dx + abox.max[0], dy + abox.max[1]);
206     glTexCoord2f(0,1); glVertex2f(dx + abox.min[0], dy + abox.max[1]);
207   glEnd();
208   glDisable(GL_TEXTURE_2D);
209 }