X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fengineer%2Fengineer.cpp;h=aa82dcb66b0b50475dfa16b87dbf3c23ee34969f;hb=dabab2f3bfb5c8548b9c36f3fe40065563653990;hp=bb29591094fae7e8852f2438ada6eb39d8267fe6;hpb=78bc40c2d1a5fcc5715143bd2326716fbb143730;p=r2c2.git diff --git a/source/engineer/engineer.cpp b/source/engineer/engineer.cpp index bb29591..aa82dcb 100644 --- a/source/engineer/engineer.cpp +++ b/source/engineer/engineer.cpp @@ -1,485 +1,406 @@ +#include #include +#include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "libr2c2/driver.h" +#include "libr2c2/trackcircuit.h" +#include "libr2c2/tracktype.h" +#include "3d/allocation.h" +#include "3d/path.h" +#include "3d/track.h" +#include "3d/trackcircuit.h" +#include "3d/vehicle.h" #include "engineer.h" -#include "mainpanel.h" -#include "trainpanel.h" +#include "mainwindow.h" +#include "newtraindialog.h" +#include "traindialog.h" +#include "trainview.h" using namespace std; -using namespace Marklin; +using namespace R2C2; using namespace Msp; -#include - Engineer::Engineer(int argc, char **argv): - screen_w(1280), - screen_h(960), - fullscreen(false), - layout(catalogue), + options(argc, argv), + window(options.screen_w, options.screen_h, options.fullscreen), + keyboard(window), + mouse(window), + ui_res("r2c2.res"), + import_active(false), + layout(catalogue, (options.driver.empty() ? 0 : Driver::create(options.driver))), layout_3d(layout), - no_lighting(false), - placing_train(0) + server(0), + main_view(layout_3d, window.get_width(), window.get_height()), + emergency_blink_state(0) { - string res; - bool debug=false; - string device="/dev/ttyS0"; - unsigned quality=4; - - GetOpt getopt; - getopt.add_option('r', "resolution", res, GetOpt::REQUIRED_ARG); - getopt.add_option('f', "fullscreen", fullscreen, GetOpt::NO_ARG); - getopt.add_option('g', "debug", debug, GetOpt::NO_ARG); - getopt.add_option('d', "device", device, GetOpt::REQUIRED_ARG); - getopt.add_option('q', "quality", quality, GetOpt::REQUIRED_ARG); - getopt.add_option( "no-lighting", no_lighting, GetOpt::NO_ARG); - getopt(argc, argv); - - if(!res.empty()) + // Setup GUI + window.set_title("Railroad Engineer"); + window.signal_close.connect(sigc::bind(sigc::mem_fun(this, &Engineer::exit), 0)); + + root = new GLtk::Root(ui_res, &window, &keyboard, &mouse); + GLtk::Layout *root_layout = new GLtk::Layout; + root->set_layout(root_layout); + root_layout->set_margin(GLtk::Sides()); + root_arrangement = new GLtk::FloatingArrangement(*root_layout); + mouse.signal_button_press.connect(sigc::bind_return(sigc::mem_fun(this, &Engineer::button_press), false)); + mouse.signal_axis_motion.connect(sigc::bind_return(sigc::mem_fun(this, &Engineer::axis_motion), false)); + root->set_visible(true); + + main_wnd = new MainWindow(*this); + root->add(*main_wnd); + main_wnd->autosize(); + main_wnd->set_position(0, window.get_height()-main_wnd->get_geometry().h); + + overlay = new Overlay3D(ui_res.get_default_font()); + + // Setup railroad control + DataFile::load(catalogue, "tracks.dat"); + DataFile::load(catalogue, "locos.dat"); + DataFile::load(catalogue, "wagons.dat"); + DataFile::load(catalogue, "terrain.dat"); + DataFile::load(layout, options.layout_fn); + + if(layout.has_driver()) { - if(RegMatch m=Regex("([1-9][0-9]*)x([1-9][0-9]*)").match(res)) - { - screen_w=lexical_cast(m[1].str); - screen_h=lexical_cast(m[2].str); - } - else - throw UsageError("Invalid resolution"); + Driver &driver = layout.get_driver(); + driver.signal_locomotive_detected.connect(sigc::mem_fun(this, &Engineer::locomotive_detected)); + driver.signal_halt.connect(sigc::mem_fun(this, &Engineer::halt_event)); + } + layout.signal_train_added.connect(sigc::mem_fun(this, &Engineer::train_added)); + layout.signal_emergency.connect(sigc::mem_fun(this, &Engineer::emergency)); + const set &blocks = layout.get_all(); + for(set::const_iterator i=blocks.begin(); i!=blocks.end(); ++i) + if(TrackCircuit *tc = (*i)->get_sensor()) + new TrackCircuit3D(layout_3d, *tc); + + const set &tracks = layout.get_all(); + for(set::const_iterator i=tracks.begin(); i!=tracks.end(); ++i) + if((*i)->get_type().is_turnout()) + new Path3D(layout_3d.get_3d(**i)); + + if(FS::exists(options.state_fn)) + DataFile::load(layout, options.state_fn); + + if(options.network) + { + server = new Server(layout); + server->use_event_dispatcher(event_disp); } - if(device!="none") - control.open(device); + // Setup 3D view + GL::Pipeline &pipeline = main_view.get_pipeline(); - control.set_debug(debug); + GL::Pipeline::Pass *pass = &pipeline.add_pass("unlit"); + pass->set_depth_test(&GL::DepthTest::lequal()); + pipeline.add_renderable_for_pass(layout_3d.get_path_scene(), "unlit"); - layout_3d.set_quality(quality); + pass = &pipeline.add_pass("overlay"); + pass->set_blend(&GL::Blend::alpha()); + pipeline.add_renderable_for_pass(*overlay, "overlay"); - catalogue.load("tracks.dat"); + view_all(); - const list &args=getopt.get_args(); - if(args.empty()) - throw UsageError("No layout given"); - layout.load(args.front()); + // Catch various signals so we can stop the trains in case we get terminated + catch_signal(SIGINT); + catch_signal(SIGTERM); + catch_signal(SIGSEGV); + catch_signal(SIGILL); + catch_signal(SIGFPE); + catch_signal(SIGABRT); +} - trfc_mgr=new TrafficManager(control, layout); +Engineer::~Engineer() +{ + if(!options.simulate) + { + layout.save_dynamic(options.state_fn+".tmp"); + FS::rename(options.state_fn+".tmp", options.state_fn); + } - view_all(); + layout.get_driver().halt(true); + layout.get_driver().flush(); - /*const TrackSeq &tracks=layout.get_tracks(); + delete overlay; + delete root_arrangement; + delete root; - for(TrackSeq::const_iterator i=tracks.begin(); i!=tracks.end(); ++i) - { - if(unsigned trnt_id=(*i)->get_turnout_id()) - { - Turnout *trnt=new Turnout(control, trnt_id); - trnt->signal_route_changed.connect(sigc::mem_fun(this, &Engineer::turnout_route_changed)); - } - if(unsigned sens_id=(*i)->get_sensor_id()) - { - Sensor *sens=new Sensor(control, sens_id); - sens->signal_state_changed.connect(sigc::bind(sigc::mem_fun(this, &Engineer::sensor_state_changed), sens_id)); - } - }*/ + delete server; } -Engineer::~Engineer() +void Engineer::set_status(const string &text) { + main_wnd->set_status_text(text); + status_timeout = Time::now()+10*Time::sec; } -void Engineer::add_train(unsigned addr) +void Engineer::add_train_view(TrainView &tv) { - if(control.get_locomotive(addr)) - return; - - Locomotive *loco=new Locomotive(control, addr); - Train *train=new Train(*trfc_mgr, *loco); - - TrainPanel *tpanel=new TrainPanel(*this, ui_res, *train); - int y=main_panel->get_geometry().y; - for(TrainPanelSeq::iterator i=train_panels.begin(); i!=train_panels.end(); ++i) - y-=(*i)->get_geometry().h; - tpanel->set_position(0, y-tpanel->get_geometry().h); - train_panels.push_back(tpanel); + train_views.push_back(&tv); +} - placing_train=train; +void Engineer::remove_train_view(TrainView &tv) +{ + train_views.erase(remove(train_views.begin(), train_views.end(), &tv), train_views.end()); } int Engineer::main() { - SDL_Init(SDL_INIT_VIDEO); - SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); - SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 4); - SDL_Surface *screen=SDL_SetVideoMode(screen_w, screen_h, 32, SDL_OPENGL|(fullscreen?SDL_FULLSCREEN:0)); - if(!screen) - { - SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, 0); - screen=SDL_SetVideoMode(screen_w, screen_h, 32, SDL_OPENGL|(fullscreen?SDL_FULLSCREEN:0)); - } - if(!screen) - { - SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 0); - screen=SDL_SetVideoMode(screen_w, screen_h, 32, SDL_OPENGL|(fullscreen?SDL_FULLSCREEN:0)); - } - if(!screen) - throw Exception("Couldn't create window"); - - glEnableClientState(GL_VERTEX_ARRAY); - glColorMaterial(GL_FRONT_AND_BACK, GL_AMBIENT_AND_DIFFUSE); - glEnable(GL_COLOR_MATERIAL); - glDepthFunc(GL_LEQUAL); - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - - font=new GL::Font(); - if(screen_w>=1024) - { - font_size=20; - Parser::load(*font, "dejavu-20.font"); - } - else - { - font_size=12; - Parser::load(*font, "dejavu-12.font"); - } - - Parser::load(ui_res, "engineer.res"); - main_panel=new MainPanel(*this, ui_res); - main_panel->set_position(0, screen_h-main_panel->get_geometry().h); + window.show(); - Application::main(); - - delete font; - delete main_panel; - - SDL_Quit(); - - return exit_code; + return Application::main(); } void Engineer::tick() { - //cout<<"tick\n"; - - SDL_Event event; - while(SDL_PollEvent(&event)) - { - switch(event.type) - { - case SDL_MOUSEBUTTONDOWN: - button_press(event.button.x, screen_h-1-event.button.y, event.button.button); - break; - case SDL_MOUSEBUTTONUP: - button_release(event.button.x, screen_h-1-event.button.y, event.button.button); - break; - case SDL_MOUSEMOTION: - pointer_motion(event.motion.x, screen_h-1-event.motion.y); - break; - case SDL_KEYDOWN: - key_press(event.key.keysym.sym, event.key.keysym.mod); - break; - case SDL_QUIT: - exit(0); - break; - } - } + window.get_display().tick(); - control.tick(); + for(list::iterator i=new_trains.begin(); i!=new_trains.end(); ++i) + process_new_train(**i); + new_trains.clear(); - glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT); + layout.tick(); + event_disp.tick(Time::zero); - project_3d(); - glLoadIdentity(); - glRotatef(-cam_rot*180/M_PI, 0, 0, 1); - glTranslatef(-cam_pos.x, -cam_pos.y, -cam_pos.z); + for(list::iterator i=train_views.begin(); i!=train_views.end(); ++i) + (*i)->prepare(); - if(!no_lighting) + Time::TimeStamp t = Time::now(); + if(status_timeout && t>status_timeout) { - glEnable(GL_LIGHTING); - glEnable(GL_LIGHT0); - float params[4]; - params[0]=0; - params[1]=-0.2; - params[2]=1; - params[3]=0; - glLightfv(GL_LIGHT0, GL_POSITION, params); + main_wnd->set_status_text(string()); + status_timeout = Time::TimeStamp(); } - - //glEnable(GL_DEPTH_TEST); - glEnable(GL_MULTISAMPLE); - - layout_3d.render(); - - glDisable(GL_LIGHTING); - glColor4f(1, 1, 1, 1); - const Track3DSeq <racks=layout_3d.get_tracks(); - for(Track3DSeq::const_iterator i=ltracks.begin(); i!=ltracks.end(); ++i) + if(!emergencies.empty() && t>emergency_blink_timeout) { - Track &track=(*i)->get_track(); - if(track.get_turnout_id()) - { - Turnout *trnt=control.get_turnout(track.get_turnout_id()); - if(trnt) - (*i)->render_route(trnt->get_route()); - else - (*i)->render_route(-1); - } - else - (*i)->render_route(-1); + emergency_blink_state = (emergency_blink_state+1)%2; + GL::Color color(1.0f/(1+emergency_blink_state), 0.0f, 0.0f); + for(list::iterator i=emergencies.begin(); i!=emergencies.end(); ++i) + (*i)->set_color(color); + emergency_blink_timeout = t+0.5*Time::sec; } - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); - glOrtho(0, screen_w, 0, screen_h, 0, 1); - glMatrixMode(GL_MODELVIEW); - glLoadIdentity(); - - glDisable(GL_DEPTH_TEST); - glDisable(GL_LIGHTING); - glDisable(GL_MULTISAMPLE); - - main_panel->render(); - for(TrainPanelSeq::iterator i=train_panels.begin(); i!=train_panels.end(); ++i) - (*i)->render(); + GL::Framebuffer::system().clear(GL::COLOR_BUFFER_BIT|GL::DEPTH_BUFFER_BIT); - glLoadIdentity(); - glTranslatef(340, 10, 0); - glScalef(20, 20, 20); - glColor4f(1, 1, 1, 1); - font->draw_string(status_text); + main_view.render(); - SDL_GL_SwapBuffers(); -} + root->render(); -void Engineer::key_press(unsigned, unsigned) -{ + window.swap_buffers(); } -void Engineer::button_press(int x, int y, unsigned btn) +void Engineer::button_press(unsigned btn) { - if(main_panel->get_geometry().is_inside(x, y)) + if(btn==1) { - main_panel->button_press(x, y, btn); - return; - } - for(TrainPanelSeq::iterator i=train_panels.begin(); i!=train_panels.end(); ++i) - if((*i)->get_geometry().is_inside(x, y)) + Object *obj = pick_object(pointer); + if(Track *track = dynamic_cast(obj)) { - (*i)->button_press(x, y, btn); - return; - } - - Track3D *track=pick_track(x, y); - if(track) - { - if(placing_train) - { - Block *block=trfc_man->get_block_by_track(&track->get_track()); + if(track->get_type().is_turnout()) + { + Block &block = track->get_block(); + if(block.get_train() && block.get_train()->is_block_critical(block)) + set_status("Turnout is busy"); + else + { + unsigned paths = track->get_type().get_paths(); + unsigned i = track->get_active_path()+1; + while(!(paths&(1<>i)) + i = 0; + else + ++i; + } + track->set_active_path(i); + set_status(format("Turnout %d", track->get_turnout_address())); + } + } + if(unsigned saddr = track->get_sensor_address()) + { + if(options.simulate) + layout.get_driver().set_sensor(saddr, !layout.get_driver().get_sensor(saddr)); + set_status(format("Sensor %d", saddr)); + } } - else + else if(Vehicle *veh = dynamic_cast(obj)) { - Turnout *turnout=control.get_turnout(track->get_track().get_turnout_id()); - if(turnout) - turnout->set_route(1-turnout->get_route()); + TrainDialog *dlg = new TrainDialog(*this, *veh->get_train()); + root->add(*dlg); + dlg->autosize(); } } } -void Engineer::button_release(int x, int y, unsigned btn) +void Engineer::axis_motion(unsigned axis, float value, float) { - if(main_panel->get_geometry().is_inside(x, y)) - { - main_panel->button_release(x, y, btn); - return; - } - for(TrainPanelSeq::iterator i=train_panels.begin(); i!=train_panels.end(); ++i) - if((*i)->get_geometry().is_inside(x, y)) - { - (*i)->button_release(x, y, btn); - return; - } + if(axis==0) + pointer.x = value; + if(axis==1) + pointer.y = value; } -void Engineer::pointer_motion(int x, int y) +void Engineer::view_all() { - if(main_panel->get_geometry().is_inside(x, y)) + const Layout3D::ObjectMap &objects = layout_3d.get_all(); + + float view_aspect = float(window.get_width())/window.get_height(); + float view_height = tan(main_view.get_camera().get_field_of_view()/2.0f)*2.0f; + float best_score = 0; + GL::Vector3 pos; + GL::Vector3 up; + for(Angle angle; anglepointer_motion(x, y); - return; - } - for(TrainPanelSeq::iterator i=train_panels.begin(); i!=train_panels.end(); ++i) - if((*i)->get_geometry().is_inside(x, y)) + Transform trans = Transform::rotation(-angle, Vector(0, 0, 1)); + BoundingBox bbox; + for(Layout3D::ObjectMap::const_iterator i=objects.begin(); i!=objects.end(); ++i) + bbox = bbox|trans.transform(i->second->get_object().get_bounding_box()); + + const Vector &minp = bbox.get_minimum_point(); + const Vector &maxp = bbox.get_maximum_point(); + + float width = maxp.x-minp.x; + float height = maxp.y-minp.y; + float aspect = width/height; + float score = min(aspect/view_aspect, view_aspect/aspect); + + if(score>best_score) { - (*i)->pointer_motion(x, y); - return; - } + best_score = score; - Track3D *track=pick_track(x, y); - if(track && track->get_track().get_turnout_id()) - { - ostringstream ss; - ss<<"Turnout "<get_track().get_turnout_id(); - status_text=ss.str(); + float size = max(width/view_aspect, height); + float c = cos(angle); + float s = sin(angle); + float x = (minp.x+maxp.x)/2; + float y = (minp.y+maxp.y)/2; + float z = max(size*1.05/view_height, 0.15); + + pos = GL::Vector3(c*x-s*y, s*x+c*y, z); + up = GL::Vector3(-s, c, 0); + } } - else - status_text=""; + + GL::Camera &camera = main_view.get_camera(); + camera.set_position(pos); + camera.set_up_direction(up); + camera.set_look_direction(GL::Vector3(0, 0, -1)); + camera.set_aspect(float(window.get_width())/window.get_height()); + camera.set_depth_clip(pos.z*0.5, pos.z*1.5); } -void Engineer::view_all() +Object *Engineer::pick_object(const Vector &p) { - const Track3DSeq &tracks=layout_3d.get_tracks(); + const GL::Vector3 &start = main_view.get_camera().get_position(); + GL::Vector4 ray = main_view.get_camera().unproject(GL::Vector4(p.x, p.y, 0, 0)); - cam_rot=0; - float best_height=-1; - float mid_x=0; - float mid_y=0; - for(float angle=0; angleget_bounds(angle, minp, maxp); - min_x=min(min_x, minp.x); - max_x=max(max_x, maxp.x); - min_y=min(min_y, minp.y); - max_y=max(max_y, maxp.y); - } + // XXX Do this better; make this function a template? + if(Vehicle *veh = layout.pick(Ray(start, Vector(ray)))) + return veh; + return layout.pick(Ray(start, Vector(ray))); +} - float width=max_x-min_x; - float height=max_y-min_y; - height=max(height, width); +void Engineer::emergency(Block *block, const string &msg) +{ + set_status(msg); + TrackChain3D *tch3d = new TrackChain3D(layout_3d, *block); + tch3d->set_color(GL::Color(1.0f, 0.0f, 0.0f)); + emergencies.push_back(tch3d); +} - if(height::iterator i=emergencies.begin(); i!=emergencies.end(); ++i) + delete *i; + emergencies.clear(); } - - float c=cos(cam_rot); - float s=sin(cam_rot); - cam_pos.x=c*mid_x-s*mid_y; - cam_pos.y=s*mid_x+c*mid_y; - cam_pos.z=max(best_height*1.05/0.82843, 0.15); } -void Engineer::turnout_route_changed(unsigned) +void Engineer::locomotive_detected(const Driver::DetectedLocomotive &loco) { + if(!import_active) + { + NewTrainDialog *dlg = new NewTrainDialog(*this); + dlg->prefill(loco); + dlg->signal_response.connect(sigc::mem_fun(this, &Engineer::import_finished)); + root->add(*dlg); + import_active = true; + } } -void Engineer::sensor_state_changed(bool state, unsigned addr) +void Engineer::import_finished(int) { - const Track3DSeq <racks=layout_3d.get_tracks(); - for(Track3DSeq::const_iterator i=ltracks.begin(); i!=ltracks.end(); ++i) - if((*i)->get_track().get_sensor_id()==addr) - { - if(state) - (*i)->set_color(Color(1, 0, 0)); - else - (*i)->set_color(Color(1, 1, 1)); - } + import_active = false; } -void Engineer::project_3d() +void Engineer::process_new_train(Train &train) { - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); - //glFrustum(-0.055228, 0.055228, -0.041421, 0.041421, 0.1, 10); - glFrustum(-0.069036, 0.041421, -0.041421, 0.041421, 0.1, 10); - glMatrixMode(GL_MODELVIEW); + Vehicle3D &loco3d = layout_3d.get_3d(train.get_vehicle(0)); + overlay->set_label(loco3d, train.get_name()); + train.signal_name_changed.connect(sigc::bind<0>(sigc::mem_fun(overlay, &Overlay3D::set_label), sigc::ref(loco3d))); } -Track3D *Engineer::pick_track(int x, int y) +void Engineer::train_added(Train &train) { - float xx=((float)(x-(int)screen_w*5/8)/screen_h)*0.82843; - //float xx=((float)(x-(int)screen_w/2)/screen_h)*0.82843; - float yy=((float)y/screen_h-0.5)*0.82843; - float size=(float)4/screen_h*0.82843; - - project_3d(); - glLoadIdentity(); - glRotatef(-cam_rot*180/M_PI, 0, 0, 1); - glTranslatef(-cam_pos.x, -cam_pos.y, -cam_pos.z); - - return layout_3d.pick_track(xx, yy, size); - - /*unsigned select_buf[1024]; - glSelectBuffer(1024, select_buf); - glRenderMode(GL_SELECT); - - //XXX Hardcoded values - float xn=((float)(x-800)/960)*0.082843; - float yn=((float)(y-480)/960)*0.082843; - float size=(float)4/960*0.082843; - - project_3d(); - glLoadIdentity(); - - double clip[4]; - clip[0]=0.1; - clip[1]=0; - clip[2]=xn-size; - clip[3]=0; - glClipPlane(GL_CLIP_PLANE0, clip); - glEnable(GL_CLIP_PLANE0); - - clip[0]=-0.1; - clip[2]=-(xn+size); - glClipPlane(GL_CLIP_PLANE1, clip); - glEnable(GL_CLIP_PLANE1); - - clip[0]=0; - clip[1]=0.1; - clip[2]=yn-size; - glClipPlane(GL_CLIP_PLANE2, clip); - glEnable(GL_CLIP_PLANE2); - - clip[1]=-0.1; - clip[2]=-(yn+size); - glClipPlane(GL_CLIP_PLANE3, clip); - glEnable(GL_CLIP_PLANE3); - - glRotatef(-cam_rot*180/M_PI, 0, 0, 1); - glTranslatef(-cam_pos.x, -cam_pos.y, -cam_pos.z); - - layout_3d.render(); - - glDisable(GL_CLIP_PLANE0); - glDisable(GL_CLIP_PLANE1); - glDisable(GL_CLIP_PLANE2); - glDisable(GL_CLIP_PLANE3); - - unsigned n_records=glRenderMode(GL_RENDER); - if(n_records) + new_trains.push_back(&train); + + GL::Color best_color; + float best_d_sq = 0; + for(unsigned i=0; i<10; ++i) { - Track *track=0; - unsigned i=0; - unsigned track_depth=numeric_limits::max(); - for(unsigned j=0; j::const_iterator j=train_colors.begin(); j!=train_colors.end(); ++j) { - unsigned ns_size=select_buf[i++]; - unsigned min_depth=select_buf[i++]; - ++i; // Skip max_depth - if(min_depthsecond.r; + float dg = color.g-j->second.g; + float db = color.b-j->second.b; + float d_sq = dr*dr+dg*dg+db*db; + if(d_sqbest_d_sq) + { + best_color = color; + best_d_sq = min_d_sq; } - - return track; } + train_colors[&train] = best_color; - return 0;*/ + Allocation3D *alloc = new Allocation3D(layout_3d, train); + alloc->set_color(best_color); } -Application::RegApp Engineer::reg; +void Engineer::sighandler(int sig) +{ + if(sig==SIGSEGV || sig==SIGILL || sig==SIGFPE || sig==SIGABRT) + { + signal(sig, SIG_DFL); + IO::print(IO::cerr, "Fatal signal received, terminating\n"); + layout.get_driver().halt(true); + layout.get_driver().flush(); + raise(sig); + } + else if(sig==SIGTERM || sig==SIGINT) + exit(0); +}