X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fdesigner%2Fdesigner.cpp;h=5daa16c3a6d0075c68ee9a1a341585679f20da94;hb=6aa6e3a60c31d71e8f8117be1ddf547897d19bd8;hp=32fe42391d13691d7d1d45a14d614bcd1251fa07;hpb=2220ba2f11705ea9a4e480603d43ab7ed4cf5a89;p=r2c2.git diff --git a/source/designer/designer.cpp b/source/designer/designer.cpp index 32fe423..5daa16c 100644 --- a/source/designer/designer.cpp +++ b/source/designer/designer.cpp @@ -49,26 +49,28 @@ Designer::Designer(int argc, char **argv): window(1280, 960), keyboard(window), mouse(window), - ui_res("r2c2.res"), + ui_res("data/r2c2.res"), root(ui_res, &window, &keyboard, &mouse), base_object(0), cur_route(0), 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)); // Setup catalogue and layout - DataFile::load(catalogue, "tracks.dat"); - DataFile::load(catalogue, "terrain.dat"); + catalogue.add_source("data/Märklin/H0"); cat_layout_3d = new Layout3D(catalogue.get_layout()); layout = new Layout(catalogue); + layout->get_clock().set_current_time(12*Time::hour); layout_3d = new Layout3D(*layout); + layout_3d->tick(); if(argc>1) { @@ -346,6 +348,7 @@ void Designer::tick() cur_tool->update_selection(selection); use_select_tool(); } + keep_status = 0; window.tick(); root.tick(); @@ -465,8 +468,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() @@ -481,7 +486,7 @@ void Designer::button_press(unsigned btn) if(mode==CATALOGUE) { - Object *obj; + Object *obj = 0; if(btn==1) obj = pick_object(pointer); @@ -533,8 +538,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 +563,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 +592,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 +634,9 @@ 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); } } @@ -632,5 +650,6 @@ void Designer::show_zone(const Zone &zone) Track3D &t3d = layout_3d->get_3d(**i); Path3D *path = new Path3D(t3d); path->set_color(GL::Color(0.8, 1.0, 0.5)); + highlight_paths.push_back(path); } }