X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fdesigner.cpp;h=744f975799f32c0834457df1104dd4b012e52b24;hb=759fee443361cdcafe6fb259df3ba1b05bea0b21;hp=ac870a469f4e01d72f7efedfc34782cf5d666134;hpb=269b667175f68821a3f2b871a097d4899d7abd78;p=r2c2.git diff --git a/source/designer/designer.cpp b/source/designer/designer.cpp index ac870a4..744f975 100644 --- a/source/designer/designer.cpp +++ b/source/designer/designer.cpp @@ -56,7 +56,8 @@ Designer::Designer(int argc, char **argv): cur_zone(0), mode(TOOL), sel_wrap(selection), - cur_tool(0) + cur_tool(0), + keep_status(0) { window.set_title("Railway Designer"); window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &Designer::exit), 0)); @@ -346,6 +347,7 @@ void Designer::tick() cur_tool->update_selection(selection); use_select_tool(); } + keep_status = 0; window.tick(); root.tick(); @@ -465,8 +467,10 @@ void Designer::use_tool(Tool *tool) cur_tool = tool; cur_tool->signal_status.connect(sigc::mem_fun(this, &Designer::tool_status)); - tool_status(cur_tool->get_status()); + if(keep_status<2) + tool_status(tool->get_status()); mode = TOOL; + keep_status = 1; } void Designer::use_select_tool() @@ -533,8 +537,9 @@ void Designer::update_object_icon(Object &obj) overlay->add_graphic(obj3d, "trackcircuit"); overlay->set_label(obj3d, lexical_cast(saddr)); } - else if(unsigned taddr = track->get_turnout_address()) + else if(track->get_type().is_turnout()) { + unsigned taddr = track->get_turnout_address(); if(taddr<0x800) { overlay->add_graphic(obj3d, "turnout"); @@ -557,6 +562,8 @@ void Designer::update_object_icon(Object &obj) void Designer::tool_status(const string &status) { lbl_status->set_text(status); + if(keep_status==1) + keep_status = 2; } void Designer::object_properties_response(int) @@ -584,16 +591,25 @@ string Designer::tooltip(int x, int y) if(Object *obj = pick_object(Vector(x*2.0f/rgeom.w-1.0f, y*2.0f/rgeom.h-1.0f, 0))) { const ObjectType &otype = obj->get_type(); - string info = format("%d %s", otype.get_article_number(), otype.get_description()); + string info = format("%d %s", otype.get_article_number(), otype.get_name()); if(Track *track = dynamic_cast(obj)) { if(mode!=CATALOGUE && abs(track->get_tilt()).radians()>1e-4) info += format(" (slope %.1f%%)", abs(tan(track->get_tilt())*100)); - if(track->get_turnout_address()) + if(track->get_type().is_turnout()) info += format(" (turnout %d)", track->get_turnout_address()); else if(track->get_sensor_address()) info += format(" (sensor %d)", track->get_sensor_address()); } + if(mode==CATALOGUE) + { + const string &descr = otype.get_description(); + if(!descr.empty()) + { + info += '\n'; + info += otype.get_description(); + } + } return info; } @@ -617,8 +633,8 @@ void Designer::show_route(const Route &route) Track3D &t3d = layout_3d->get_3d(**i); Path3D *path = new Path3D(t3d); path->set_color(GL::Color(0.5, 0.8, 1.0)); - if(unsigned taddr = (*i)->get_turnout_address()) - path->set_path(route.get_turnout(taddr)); + if((*i)->get_type().is_turnout()) + path->set_path(route.get_turnout((*i)->get_turnout_address())); highlight_paths.push_back(path); } }