X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCockpit%2Fpanel.cxx;h=03e003c6c218d34375b8975f6c16e3919240849c;hb=f057fd0d4897ef65c4d36159af37ba3fdd544798;hp=de9a7877866653942f97814f17346401ac0caf95;hpb=8e5a884428f713257a1aea1ebce2bbb65b6cd437;p=flightgear.git diff --git a/src/Cockpit/panel.cxx b/src/Cockpit/panel.cxx index de9a78778..03e003c6c 100644 --- a/src/Cockpit/panel.cxx +++ b/src/Cockpit/panel.cxx @@ -29,6 +29,10 @@ #include // sprintf #include +#include + +#include SG_GLU_H + #include #include @@ -53,7 +57,6 @@ // my hardware/driver requires many more. #define POFF_UNITS 4 - //////////////////////////////////////////////////////////////////////// // Local functions. //////////////////////////////////////////////////////////////////////// @@ -165,6 +168,7 @@ FGCroppedTexture::getTexture () static fntRenderer text_renderer; static fntTexFont *default_font = 0; static fntTexFont *led_font = 0; +static sgVec4 panel_color; /** * Constructor. @@ -180,7 +184,8 @@ FGPanel::FGPanel () _jitter(fgGetNode("/sim/panel/jitter", true)), _flipx(fgGetNode("/sim/panel/flip-x", true)), _xsize_node(fgGetNode("/sim/startup/xsize", true)), - _ysize_node(fgGetNode("/sim/startup/ysize", true)) + _ysize_node(fgGetNode("/sim/startup/ysize", true)), + _enable_depth_test(false) { } @@ -379,8 +384,10 @@ FGPanel::draw() glEnable(GL_COLOR_MATERIAL); glEnable(GL_CULL_FACE); glCullFace(GL_BACK); - glDisable(GL_DEPTH_TEST); - sgVec4 panel_color; + if( _enable_depth_test ) + glDepthFunc(GL_ALWAYS); + else + glDisable(GL_DEPTH_TEST); FGLight *l = (FGLight *)(globals->get_subsystem("lighting")); sgCopyVec4( panel_color, l->scene_diffuse()); @@ -448,6 +455,8 @@ FGPanel::draw() // restore some original state + if( _enable_depth_test ) + glDepthFunc(GL_LESS); glPopAttrib(); glPolygonOffset(0, 0); glDisable(GL_POLYGON_OFFSET_FILL); @@ -581,6 +590,10 @@ FGPanel::doMouseAction (int button, int updown, int x, int y) return doLocalMouseAction(button, updown, x, y); } +void FGPanel::setDepthTest (bool enable) { + _enable_depth_test = enable; +} + ////////////////////////////////////////////////////////////////////////. @@ -595,14 +608,14 @@ FGPanelAction::FGPanelAction (int button, int x, int y, int w, int h, bool repeatable) : _button(button), _x(x), _y(y), _w(w), _h(h), _repeatable(repeatable) { - for (unsigned int i = 0; i < 2; i++) { - for (unsigned int j = 0; j < _bindings[i].size(); j++) - delete _bindings[i][j]; - } } FGPanelAction::~FGPanelAction () { + for (unsigned int i = 0; i < 2; i++) { + for (unsigned int j = 0; j < _bindings[i].size(); j++) + delete _bindings[i][j]; + } } void @@ -944,15 +957,6 @@ FGTexturedLayer::draw () // From Curt: turn on the panel // lights after sundown. - sgVec4 panel_color; - - FGLight *l = (FGLight *)(globals->get_subsystem("lighting")); - sgCopyVec4( panel_color, l->scene_diffuse()); - if ( fgGetDouble("/systems/electrical/outputs/instrument-lights") > 1.0 ) { - if ( panel_color[0] < 0.7 ) panel_color[0] = 0.7; - if ( panel_color[1] < 0.2 ) panel_color[1] = 0.2; - if ( panel_color[2] < 0.2 ) panel_color[2] = 0.2; - } glColor4fv( panel_color ); glTexCoord2f(_texture.getMinX(), _texture.getMinY()); glVertex2f(-w2, -h2); @@ -1092,8 +1096,9 @@ FGTextLayer::Chunk::Chunk (const string &text, const string &fmt) } FGTextLayer::Chunk::Chunk (ChunkType type, const SGPropertyNode * node, - const string &fmt, float mult, float offs) - : _type(type), _fmt(fmt), _mult(mult), _offs(offs) + const string &fmt, float mult, float offs, + bool truncation) + : _type(type), _fmt(fmt), _mult(mult), _offs(offs), _trunc(truncation) { if (_fmt.empty()) { if (type == TEXT_VALUE) @@ -1117,7 +1122,9 @@ FGTextLayer::Chunk::getValue () const sprintf(_buf, _fmt.c_str(), _node->getStringValue()); break; case DOUBLE_VALUE: - sprintf(_buf, _fmt.c_str(), _offs + _node->getFloatValue() * _mult); + double d = _offs + _node->getFloatValue() * _mult; + if (_trunc) d = (d < 0) ? -floor(-d) : floor(d); + sprintf(_buf, _fmt.c_str(), d); break; } return _buf;