File: Fl_OSG.cxx

package info (click to toggle)
fgrun 3.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,352 kB
  • ctags: 701
  • sloc: cpp: 7,615; sh: 507; makefile: 26; ansic: 8
file content (290 lines) | stat: -rw-r--r-- 10,542 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
#include <FL/Fl.H>

#include "Fl_OSG.h"
#include "i18n.h"
#include <cmath>

#include <osg/LineWidth>
#include <osgGA/TrackballManipulator>
#include <osgViewer/ViewerEventHandlers>
#include <osgDB/Registry>
#include <osg/MatrixTransform>

#define HUD_SCALE_FACTOR    1.5

Fl_OSG::Fl_OSG( int x, int y, int w, int h, const char *label )
: AdapterWidget(x,y,w,h,label) {
    getCamera()->setViewport( new osg::Viewport( 0, 0, w, h ) );
    getCamera()->setProjectionMatrixAsPerspective( 30.0f, static_cast<double>(w)/static_cast<double>(h), 1.0f, 10000.0f );
    getCamera()->setGraphicsContext( getGraphicsWindow() );
    setThreadingModel( osgViewer::Viewer::SingleThreaded );

    hud = new osg::Camera;
    hud->setProjectionMatrix( osg::Matrix::ortho( 0, w*HUD_SCALE_FACTOR, 0, h*HUD_SCALE_FACTOR, 0, -1 ) );
    hud->setReferenceFrame( osg::Transform::ABSOLUTE_RF );
    hud->setViewMatrix( osg::Matrix::identity() );
    hud->setClearMask( GL_DEPTH_BUFFER_BIT );
    hud->setRenderOrder( osg::Camera::POST_RENDER );
    hud->setAllowEventFocus( false );

    setCameraManipulator( new osgGA::TrackballManipulator );
    addEventHandler( new osgViewer::StatsHandler );
    setSceneData( new osg::Node );
}

void Fl_OSG::draw() {
    frame();
}

static
osg::Geometry *drawStar( osg::Vec3 position, int xincr, double size, double depth, osg::Vec4 color ) {
    osg::Geometry* geom = new osg::Geometry;
    osg::Vec3Array* vertices = new osg::Vec3Array;
    osg::DrawElementsUByte *de = new osg::DrawElementsUByte( GL_TRIANGLES );

    osg::Vec3 delta( 110+xincr, 7, 0 );
    double innerScale = cos( 2.*M_PI / 5. ) / cos( M_PI / 5. );
    double dAngle = M_PI / 5.;
    for ( int i = 0; i < 5; ++i ) {
        double angle = (2. * i * M_PI / 5.) + (M_PI / 2.);
        vertices->push_back( position+delta+osg::Vec3( cos( angle )*size, sin( angle )*size, depth ) );
        vertices->push_back( position+delta+osg::Vec3( cos( angle+dAngle )*size*innerScale, sin( angle+dAngle )*size*innerScale, depth ) );
        de->push_back( (2*i + 9) % 10 );
        de->push_back( 2*i );
        de->push_back( 2*i + 1 );
    }
    geom->setVertexArray(vertices);
    de->push_back(1); de->push_back(3); de->push_back(5);
    de->push_back(5); de->push_back(7); de->push_back(9);
    de->push_back(1); de->push_back(5); de->push_back(9);

    osg::Vec3Array* normals = new osg::Vec3Array;
    normals->push_back(osg::Vec3(0.0f,0.0f,1.0f));
    geom->setNormalArray(normals);
    geom->setNormalBinding(osg::Geometry::BIND_OVERALL);

    osg::Vec4Array* colors = new osg::Vec4Array;
    colors->push_back(color);
    geom->setColorArray(colors);
    geom->setColorBinding(osg::Geometry::BIND_OVERALL);

    osg::StateSet* stateset = geom->getOrCreateStateSet();
    stateset->setMode(GL_BLEND,osg::StateAttribute::ON);
    stateset->setRenderingHint(osg::StateSet::TRANSPARENT_BIN);

    geom->addPrimitiveSet(de);
    return geom;
}

static
osg::Geometry *drawUnrated( osg::Vec3 position, int xincr ) {
    osg::Geometry* geom = new osg::Geometry;
    osg::Vec3Array* vertices = new osg::Vec3Array;
    osg::Vec3 delta( 110+xincr, 7, 0 );
    vertices->push_back(osg::Vec3(position.x()+100+xincr,position.y()-2,0));
    vertices->push_back(osg::Vec3(position.x()+225+xincr,position.y()+14,0));
    geom->setVertexArray(vertices);

    osg::Vec3Array* normals = new osg::Vec3Array;
    normals->push_back(osg::Vec3(0.0f,0.0f,1.0f));
    geom->setNormalArray(normals);
    geom->setNormalBinding(osg::Geometry::BIND_OVERALL);

    osg::Vec4Array* colors = new osg::Vec4Array;
    colors->push_back(osg::Vec4(1.,0.,0.,7.));
    geom->setColorArray(colors);
    geom->setColorBinding(osg::Geometry::BIND_OVERALL);

    osg::StateSet* stateset = geom->getOrCreateStateSet();
    stateset->setAttributeAndModes( new osg::LineWidth(1) );

    geom->addPrimitiveSet(new osg::DrawArrays(GL_LINES,0,2));
    //geom->setEventCallback( 
    return geom;
}

static
void addBar( osg::Geode *geode, osg::Vec3 &position, int xincr, int val ) {
    for ( int i = 0; i < 5; ++i ) {
        geode->addDrawable( drawStar( position+osg::Vec3(25*i,0,0), xincr, 12, -0.1, osg::Vec4( 1., 1., .8, 0.2 ) ) );
    }

    for ( int i=0; i < val; ++i ) {
        geode->addDrawable( drawStar( position+osg::Vec3(25*i,0,0), xincr, 9, 0, osg::Vec4( 1., 1., 0., 0.7 ) ) );
    }
    if (val < 0)
        geode->addDrawable( drawUnrated( position, xincr ) );
}

void Fl_OSG::set_fg_root( const char *fgr ) {
    font = SGPath( fgr );
    font.append("Fonts/LiberationFonts/LiberationSans-Regular.ttf");
}


osgText::Text *Fl_OSG::drawText( const char *t, osg::Vec3 position ) {
    osgText::Text* text = new osgText::Text;
    text->setFont(font.str());
    text->setPosition(position);
    text->setCharacterSize( 20.0 );
    text->setText(t);
    return text;
}

void Fl_OSG::drawRating( osg::Geode *geode, osg::Vec3 position, const char *t, int rating, int xincr ) {
    geode->addDrawable( drawText( t, position ) );
    addBar( geode, position, xincr, ( rating >= 0 && rating <= 5 ) ? rating : -1 );
}

void Fl_OSG::set_model( osg::Node *m, int fdm, int systems, int cockpit, int model ) {
    osg::ref_ptr<osg::Group> root = new osg::Group;
    root->addChild( m );

    thumbnailTransform.release();
    hud->removeChildren( 0, hud->getNumChildren() );
    drawRatings( root, fdm, systems, cockpit, model );
}

void Fl_OSG::setThumbnailTransform(int w, int h) {
    if (!thumbnailTransform.valid())
        return;
    float hudAspect = float(w) / float(h);
    osg::Vec2 origin(0,0);
    float scale;
    if (imgAspect > hudAspect) {
        scale = 0.75 * w*HUD_SCALE_FACTOR / imgAspect;
    } else {
        scale = 0.75 * h*HUD_SCALE_FACTOR;
    }
    if (scale > 1000.0)
        scale = 1000.0;
    origin.x() = (w*HUD_SCALE_FACTOR - imgAspect*scale) / 2.0;
    origin.y() = (h*HUD_SCALE_FACTOR - scale) / 2.0;

    thumbnailTransform->setMatrix(osg::Matrix::scale(scale, scale, 1.0) * osg::Matrix::translate(osg::Vec3(origin,0.0)));
}

void Fl_OSG::set_thumbnail( const char *path, int fdm, int systems, int cockpit, int model ) {
    hud->removeChildren( 0, hud->getNumChildren() );
    osg::ref_ptr<osg::Group> root = new osg::Group;
#if 1
    osgDB::ReaderWriter::ReadResult rr = osgDB::Registry::instance()->readImage( path, 0 );
    if (rr.validImage()) {
        osg::ref_ptr<osg::Texture2D> tex = new osg::Texture2D;
        tex->setImage( rr.getImage() );
        tex->setResizeNonPowerOfTwoHint( false );
        tex->setFilter( osg::Texture2D::MIN_FILTER,osg::Texture2D::LINEAR );
        tex->setFilter( osg::Texture2D::MAG_FILTER,osg::Texture2D::LINEAR );
        tex->setWrap( osg::Texture::WRAP_S, osg::Texture::CLAMP_TO_EDGE );
        tex->setWrap( osg::Texture::WRAP_T, osg::Texture::CLAMP_TO_EDGE );

        imgAspect = float(rr.getImage()->s()) / float(rr.getImage()->t());
        thumbnailTransform = new osg::MatrixTransform;

        osg::Geometry *geom = osg::createTexturedQuadGeometry( osg::Vec3(0,0,0), osg::Vec3(imgAspect,0,0), osg::Vec3(0,1,0) );
        osg::Geode *g = new osg::Geode;
        g->addDrawable(geom);
        osg::StateSet *ss = g->getOrCreateStateSet();
        ss->setTextureAttributeAndModes( 0, tex, osg::StateAttribute::ON );
        ss->setTextureAttributeAndModes( 0, new osg::TexEnv(osg::TexEnv::DECAL), osg::StateAttribute::ON );
        thumbnailTransform->addChild(g);
        setThumbnailTransform(w(), h());
        hud->addChild(thumbnailTransform);
    }
#endif

    drawRatings( root, fdm, systems, cockpit, model, path );
}

void Fl_OSG::drawRatings( osg::Group *root, int fdm, int systems, int cockpit, int model, const char *path ) {

    osg::Geode *geode = new osg::Geode;
    osg::StateSet* stateset = geode->getOrCreateStateSet();
    stateset->setMode(GL_LIGHTING,osg::StateAttribute::OFF);

    osg::Vec3 position(30.0f,10.0f,0.0f);
    osg::Vec3 deltaY(0.0f,22.0f,0.0f);
    osg::Vec3 deltaX(20.0f,0.0f,0.0f);
    int xincr = atoi( _("RatingPos") );

    bool hasRating = false;
    if (model >= 0 && model <= 5 ) {
        drawRating( geode, position, _("Model : "), model, xincr );
        position += deltaY;
        hasRating = true;
    }
    if (cockpit >= 0 && cockpit <= 5 ) {
        drawRating( geode, position, _("Cockpit : "), cockpit, xincr );
        position += deltaY;
        hasRating = true;
    }
    if (systems >= 0 && systems <= 5 ) {
        drawRating( geode, position, _("Systems : "), systems, xincr );
        position += deltaY;
        hasRating = true;
    }
    if (fdm >= 0 && fdm <= 5 ) {
        drawRating( geode, position, _("FDM : "), fdm, xincr );
        position += deltaY;
        hasRating = true;
    }

    position -= deltaX;
    if (hasRating) {
        geode->addDrawable( drawText( _("Rating"), position ) );
    } else {
        geode->addDrawable( drawText( _("No Rating"), position ) );
    }
    position += deltaY;

    hud->addChild( geode );

    root->addChild( hud );
    setSceneData( root );
}

void Fl_OSG::resize(int x, int y, int w, int h) {
    setThumbnailTransform(w, h);
    hud->setProjectionMatrix( osg::Matrix::ortho( 0, w*HUD_SCALE_FACTOR, 0, h*HUD_SCALE_FACTOR, 0, -1 ) );
    AdapterWidget::resize(x, y, w, h);
}

void idle_cb()
{
    Fl::redraw();
}

AdapterWidget::AdapterWidget( int x, int y, int w, int h, const char *label )
: Fl_Gl_Window(x, y, w, h, label ) {
    _gw = new osgViewer::GraphicsWindowEmbedded( x, y, w, h );
}

void AdapterWidget::resize(int x, int y, int w, int h) {
    _gw->getEventQueue()->windowResize( x, y, w, h );
    _gw->resized( x, y, w, h );
    Fl_Gl_Window::resize( x, y, w, h );
}

int AdapterWidget::handle(int event) {
    switch(event) {
        case FL_PUSH:
            _gw->getEventQueue()->mouseButtonPress(Fl::event_x(), Fl::event_y(), Fl::event_button());
            return 1;
        case FL_MOVE:
        case FL_DRAG:
            _gw->getEventQueue()->mouseMotion(Fl::event_x(), Fl::event_y());
            return 1;
        case FL_RELEASE:
            _gw->getEventQueue()->mouseButtonRelease(Fl::event_x(), Fl::event_y(), Fl::event_button());
            return 1;
        case FL_KEYDOWN:
            _gw->getEventQueue()->keyPress((osgGA::GUIEventAdapter::KeySymbol)Fl::event_key());
            return 1;
        case FL_KEYUP:
            _gw->getEventQueue()->keyRelease((osgGA::GUIEventAdapter::KeySymbol)Fl::event_key());
            return 1;
        default:
            // pass other events to the base class
            return Fl_Gl_Window::handle(event);
    }
}