X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Flayout.cpp;h=0a9ee2d2b4c5362888c7d9996ef965e91f2da3a5;hb=251270c97a5e5eb8630bc1662a406255dedae90e;hp=05c398d302a33b3fb22bcc968d82d90f21409abe;hpb=6e5d36dbc3f1e4a221d424fa7d57b07998df67a8;p=r2c2.git diff --git a/source/3d/layout.cpp b/source/3d/layout.cpp index 05c398d..0a9ee2d 100644 --- a/source/3d/layout.cpp +++ b/source/3d/layout.cpp @@ -1,18 +1,10 @@ /* $Id$ -This file is part of the MSP Märklin suite -Copyright © 2006-2010 Mikkosoft Productions, Mikko Rasa +This file is part of R²C² +Copyright © 2006-2011 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ -#include -#include -#include -#include -#include -#include -#include -#include #include "layout.h" #include "track.h" #include "vehicle.h" @@ -20,7 +12,7 @@ Distributed under the GPL using namespace std; using namespace Msp; -namespace Marklin { +namespace R2C2 { Layout3D::Layout3D(Layout &l): layout(l), @@ -29,6 +21,7 @@ Layout3D::Layout3D(Layout &l): layout.signal_track_added.connect(sigc::mem_fun(this, &Layout3D::track_added)); layout.signal_track_removed.connect(sigc::mem_fun(this, &Layout3D::track_removed)); layout.signal_vehicle_added.connect(sigc::mem_fun(this, &Layout3D::vehicle_added)); + layout.signal_vehicle_removed.connect(sigc::mem_fun(this, &Layout3D::vehicle_removed)); const set <racks = layout.get_tracks(); for(set::iterator i=ltracks.begin(); i!=ltracks.end(); ++i) @@ -65,42 +58,6 @@ Track3D &Layout3D::get_track(Track &t) const return *i->second; } -Track3D *Layout3D::pick_track(float x, float y, float size) const -{ - vector select_buf; - GL::select_buffer(select_buf); - GL::render_mode(GL::SELECT); - - { - GL::PushMatrix push_mat; - GL::load_identity(); - - GL::ClipPlane(1, 0, x-size, 0).apply_to(0); - GL::ClipPlane(-1, 0, -x-size, 0).apply_to(1); - GL::ClipPlane(0, 1, y-size, 0).apply_to(2); - GL::ClipPlane(0, -1, -y-size, 0).apply_to(3); - } - - scene.render(0); - - GL::ClipPlane::disable(0); - GL::ClipPlane::disable(1); - GL::ClipPlane::disable(2); - GL::ClipPlane::disable(3); - - GL::render_mode(GL::RENDER); - Track3D *track = 0; - unsigned track_depth = numeric_limits::max(); - for(vector::iterator i=select_buf.begin(); i!=select_buf.end(); ++i) - if(i->min_depthnames.empty()) - { - track = reinterpret_cast(i->names.back()); - track_depth = i->min_depth; - } - - return track; -} - void Layout3D::add_vehicle(Vehicle3D &v) { if(vehicles.count(&v.get_vehicle())) @@ -140,4 +97,11 @@ void Layout3D::vehicle_added(Vehicle &v) new Vehicle3D(*this, v); } -} // namespace Marklin +void Layout3D::vehicle_removed(Vehicle &v) +{ + VehicleMap::iterator i = vehicles.find(&v); + if(i!=vehicles.end()) + delete i->second; +} + +} // namespace R2C2