X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCockpit%2Fpanel_io.cxx;h=dd1f1036155c0df275f02c9f1e1ed391a0ebe5e4;hb=b07ad149aebeb1d060bc9a0d505fdc1ca1081654;hp=6c624e2fce4fb48213f8f1a41e54c826f76a31f0;hpb=c9813d1b5d79b4aad13c263690a0223086af25ac;p=flightgear.git diff --git a/src/Cockpit/panel_io.cxx b/src/Cockpit/panel_io.cxx index 6c624e2fc..dd1f10361 100644 --- a/src/Cockpit/panel_io.cxx +++ b/src/Cockpit/panel_io.cxx @@ -22,10 +22,6 @@ # include #endif -#ifdef HAVE_WINDOWS_H -# include -#endif - #include // for strcmp() #include @@ -34,9 +30,9 @@ #include #include -#include STL_IOSTREAM -#include STL_FSTREAM -#include STL_STRING +#include +#include +#include #include
#include
@@ -50,9 +46,9 @@ //built-in layers #include "built_in/FGMagRibbon.hxx" -SG_USING_STD(istream); -SG_USING_STD(ifstream); -SG_USING_STD(string); +using std::istream; +using std::ifstream; +using std::string; @@ -178,7 +174,7 @@ readAction (const SGPropertyNode * node, float w_scale, float h_scale) // button-less actions are fired initially if (!node->hasValue("w") || !node->hasValue("h")) { for (i = 0; i < bindings.size(); i++) { - FGBinding b(bindings[i]); + SGBinding b(bindings[i], globals->get_props()); b.fire(); } return 0; @@ -207,7 +203,7 @@ readAction (const SGPropertyNode * node, float w_scale, float h_scale) binding = dest->getChild("binding", j, true); copyProperties(bindings[i], binding); - action->addBinding(new FGBinding(binding), 0); + action->addBinding(new SGBinding(binding, globals->get_props()), 0); } if (node->hasChild("mod-up")) { @@ -219,7 +215,7 @@ readAction (const SGPropertyNode * node, float w_scale, float h_scale) binding = dest->getChild("binding", j, true); copyProperties(bindings[i], binding); - action->addBinding(new FGBinding(binding), 1); + action->addBinding(new SGBinding(binding, globals->get_props()), 1); } } @@ -287,21 +283,8 @@ readTransformation (const SGPropertyNode * node, float w_scale, float h_scale) const SGPropertyNode * trans_table = node->getNode("interpolation"); if (trans_table != 0) { SG_LOG( SG_COCKPIT, SG_INFO, "Found interpolation table with " - << trans_table->nChildren() << "children" ); - t->table = new SGInterpTable(); - for(int i = 0; i < trans_table->nChildren(); i++) { - const SGPropertyNode * node = trans_table->getChild(i); - if (!strcmp(node->getName(), "entry")) { - double ind = node->getDoubleValue("ind", 0.0); - double dep = node->getDoubleValue("dep", 0.0); - SG_LOG( SG_COCKPIT, SG_INFO, "Adding interpolation entry " - << ind << "==>" << dep ); - t->table->addEntry(ind, dep); - } else { - SG_LOG( SG_COCKPIT, SG_INFO, "Skipping " << node->getName() - << " in interpolation" ); - } - } + << trans_table->nChildren() << " children" ); + t->table = new SGInterpTable(trans_table); } else { t->table = 0; } @@ -491,7 +474,7 @@ readLayer (const SGPropertyNode * node, float w_scale, float h_scale) tlayer->setPointSize(pointSize); // Set the font. - string fontName = node->getStringValue("font", "default"); + string fontName = node->getStringValue("font", "Helvetica"); tlayer->setFontName(fontName); const SGPropertyNode * chunk_group = node->getNode("chunks"); @@ -693,6 +676,8 @@ readPanel (const SGPropertyNode * root) if (!fgHasNode("/sim/panel/y-offset")) fgSetInt("/sim/panel/y-offset", root->getIntValue("y-offset", 0)); + panel->setAutohide(root->getBoolValue("autohide", true)); + // // Assign the background texture, if any, or a bogus chequerboard. // @@ -769,10 +754,10 @@ readPanel (const SGPropertyNode * root) FGPanelInstrument * instrument = readInstrument(node); if (instrument != 0) panel->addInstrument(instrument); - } else if(!strcmp(node->getName(), "special-instrument")) { + } else if (!strcmp(node->getName(), "special-instrument")) { //cout << "Special instrument found in instruments section!\n"; const string name = node->getStringValue("name"); - if(name == "KLN89 GPS") { + if (name == "KLN89 GPS") { //cout << "Special instrument is KLN89\n"; int x = node->getIntValue("x", -1); @@ -804,7 +789,7 @@ readPanel (const SGPropertyNode * root) // Warning - hardwired size!!! RenderArea2D* instrument = new RenderArea2D(158, 40, 158, 40, x, y); KLN89* gps = (KLN89*)globals->get_subsystem("kln89"); - if(gps == NULL) { + if (gps == NULL) { gps = new KLN89(instrument); globals->add_subsystem("kln89", gps); }