X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2F3d%2Fcatalogue.cpp;h=c3b9e1f3693fdafa18ab4b326090a7f67586c6c5;hb=cb222b6df855da4196a331c5b9859750c4321fa0;hp=8641013fe3559256a052644267aaf77d7e0869b7;hpb=1ff06c5bc46a677fa389ef86c6b26664368f1653;p=r2c2.git diff --git a/source/3d/catalogue.cpp b/source/3d/catalogue.cpp index 8641013..c3b9e1f 100644 --- a/source/3d/catalogue.cpp +++ b/source/3d/catalogue.cpp @@ -5,7 +5,11 @@ Copyright © 2010 Mikkosoft Productions, Mikko Rasa Distributed under the GPL */ +#include #include +#include +#include +#include #include "catalogue.h" #include "tracktype.h" #include "vehicletype.h" @@ -19,6 +23,12 @@ Catalogue3D::Catalogue3D(Catalogue &c): catalogue(c), endpoint_mesh((GL::NORMAL3, GL::VERTEX3)) { + 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)); @@ -26,9 +36,6 @@ Catalogue3D::Catalogue3D(Catalogue &c): for(Catalogue::TrackMap::const_iterator i=trks.begin(); i!=trks.end(); ++i) track_added(*i->second); - ballast_material.set_diffuse(GL::Color(0.25, 0.25, 0.25)); - rail_material.set_diffuse(GL::Color(0.85, 0.85, 0.85)); - build_endpoint_mesh(); } @@ -93,4 +100,32 @@ void Catalogue3D::build_endpoint_mesh() 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(); +} + +template +T *Catalogue3D::create2(const string &name) +{ + RefPtr obj = new T; + DataFile::load(*obj, locate_file(name).str(), *this); + return obj.release(); +} + } // namespace R2C2