X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fcatalogue.cpp;h=d84e2d0d5b1535709c2b924d028f0897fcaf75b4;hb=5929b101ee38b5668b328e7b1eac4bf49c912412;hp=6cb7558157eb4c3339354b162d4b4fc8e14a92a7;hpb=754ac497179474d0266b55e881a084fef7d5d6a1;p=r2c2.git diff --git a/source/3d/catalogue.cpp b/source/3d/catalogue.cpp index 6cb7558..d84e2d0 100644 --- a/source/3d/catalogue.cpp +++ b/source/3d/catalogue.cpp @@ -1,16 +1,7 @@ -/* $Id$ - -This file is part of R²C² -Copyright © 2010-2011 Mikkosoft Productions, Mikko Rasa -Distributed under the GPL -*/ - -#include +#include #include -#include -#include -#include #include "catalogue.h" +#include "signaltype.h" #include "tracktype.h" #include "vehicletype.h" @@ -20,77 +11,62 @@ using namespace Msp; namespace R2C2 { Catalogue3D::Catalogue3D(Catalogue &c): - catalogue(c), - endpoint_mesh((GL::NORMAL3, GL::VERTEX3)) + catalogue(c) { - add_creator(&Catalogue3D::create); - add_creator(&Catalogue3D::create); - add_creator(&Catalogue3D::create2); - add_creator(&Catalogue3D::create); - add_creator(&Catalogue3D::create2); - - catalogue.signal_track_added.connect(sigc::mem_fun(this, &Catalogue3D::track_added)); - catalogue.signal_vehicle_added.connect(sigc::mem_fun(this, &Catalogue3D::vehicle_added)); + src.add_directory("."); + src.add_directory("data"); + add_source(src); - const Catalogue::TrackMap &trks = catalogue.get_tracks(); - for(Catalogue::TrackMap::const_iterator i=trks.begin(); i!=trks.end(); ++i) - track_added(*i->second); + catalogue.signal_object_added.connect(sigc::mem_fun(this, &Catalogue3D::object_added)); - build_endpoint_mesh(); + const Catalogue::ObjectMap &objs = catalogue.get_all(); + for(Catalogue::ObjectMap::const_iterator i=objs.begin(); i!=objs.end(); ++i) + object_added(*i->second); } Catalogue3D::~Catalogue3D() { - for(map::iterator i=tracks.begin(); i!=tracks.end(); ++i) - delete i->second; - for(map::iterator i=vehicles.begin(); i!=vehicles.end(); ++i) + for(map::iterator i=objects.begin(); i!=objects.end(); ++i) delete i->second; } -const TrackType3D &Catalogue3D::get_track(const TrackType &tt) const +void Catalogue3D::object_added(const ObjectType &ot) { - map::const_iterator i = tracks.find(&tt); - if(i==tracks.end()) - throw KeyError("Unknown track type"); - - return *i->second; + if(const TrackType *tt = dynamic_cast(&ot)) + { + objects[&ot] = new TrackType3D(*this, *tt); + const TrackAppearance &appearance = tt->get_appearance(); + if(!endpoint_meshes.count(&appearance)) + build_endpoint_mesh(appearance); + } + else if(const SignalType *st = dynamic_cast(&ot)) + objects[&ot] = new SignalType3D(*this, *st); + else if(const VehicleType *vt = dynamic_cast(&ot)) + objects[&ot] = new VehicleType3D(*this, *vt); } -const VehicleType3D &Catalogue3D::get_vehicle(const VehicleType &vt) const +const ObjectType3D &Catalogue3D::get_3d(const ObjectType &ot) const { - map::const_iterator i = vehicles.find(&vt); - if(i==vehicles.end()) - throw KeyError("Unknown vehicle type"); - - return *i->second; + return *get_item(objects, &ot); } -void Catalogue3D::track_added(const TrackType &track) +void Catalogue3D::build_endpoint_mesh(const TrackAppearance &appearance) { - tracks[&track] = new TrackType3D(*this, track); -} + const Profile &ballast_profile = appearance.get_ballast_profile(); + const Vector &ballast_min = ballast_profile.get_min_coords(); + const Vector &ballast_max = ballast_profile.get_max_coords(); -void Catalogue3D::vehicle_added(const VehicleType &veh) -{ - vehicles[&veh] = new VehicleType3D(*this, veh); -} + const Profile &rail_profile = appearance.get_rail_profile(); + const Vector &rail_min = rail_profile.get_min_coords(); + const Vector &rail_max = rail_profile.get_max_coords(); -void Catalogue3D::build_endpoint_mesh() -{ - const Profile &ballast_profile = catalogue.get_ballast_profile(); - const Point &ballast_min = ballast_profile.get_min_coords(); - const Point &ballast_max = ballast_profile.get_max_coords(); - - const Profile &rail_profile = catalogue.get_rail_profile(); - const Point &rail_min = rail_profile.get_min_coords(); - const Point &rail_max = rail_profile.get_max_coords(); - - float gauge = catalogue.get_gauge(); + float gauge = appearance.get_gauge(); float width = max(max(-ballast_min.x, ballast_max.x)*2, gauge+(rail_max.x-rail_min.x)*2)+0.004; float height = ballast_max.y-ballast_min.y+rail_max.y-rail_min.y+0.01; - GL::MeshBuilder bld(endpoint_mesh); + GL::Mesh *mesh = new GL::Mesh((GL::NORMAL3, GL::VERTEX3)); + GL::MeshBuilder bld(*mesh); bld.normal(1, 0, 0); bld.begin(GL::QUADS); bld.vertex(0, width/2, 0); @@ -98,34 +74,13 @@ void Catalogue3D::build_endpoint_mesh() bld.vertex(0, -width/2, height); bld.vertex(0, -width/2, 0); bld.end(); -} - -FS::Path Catalogue3D::locate_file(const string &name) -{ - if(FS::exists(name)) - return name; - FS::Path path = FS::Path("data")/name; - if(FS::exists(path)) - return path; - - throw Exception("Can't locate "+name); -} - -template -T *Catalogue3D::create(const string &name) -{ - RefPtr obj = new T; - DataFile::load(*obj, locate_file(name).str()); - return obj.release(); + endpoint_meshes[&appearance] = mesh; } -template -T *Catalogue3D::create2(const string &name) +const GL::Mesh &Catalogue3D::get_endpoint_mesh(const TrackAppearance &appearance) const { - RefPtr obj = new T; - DataFile::load(*obj, locate_file(name).str(), *this); - return obj.release(); + return *get_item(endpoint_meshes, &appearance); } } // namespace R2C2