X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=7037d4b3384374568bc662a9edc1df3299776ba3;hb=815194201203afd6fa59e650e1007a355c829544;hp=a74c91141ca717c86262c8a634f8db75ff359226;hpb=c435423919a20a87d100e1ee4cd1fc6ce223040c;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index a74c911..7037d4b 100644 --- a/source/part.cpp +++ b/source/part.cpp @@ -1,13 +1,7 @@ -/* $Id$ - -This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - -#include +#include #include "geometry.h" #include "part.h" +#include "partcache.h" #include "resources.h" using namespace std; @@ -19,32 +13,38 @@ Part::Part(const string &n): name(n) { for(unsigned i=0; iN_STATES_) - throw InvalidParameterValue("Invalid state"); + throw invalid_argument("Part::get_graphic"); return graphic[state]; } -void Part::render(const Geometry &parent, State state) const +void Part::build(const Geometry &parent, State state, CachedPart &cache) const { if(!graphic[state]) + { + cache.texture = 0; return; + } - Geometry rgeom=geom; + cache.texture = graphic[state]->get_texture(); + cache.clear_mesh(); + + Geometry rgeom = geom; align.apply(rgeom, parent, margin); - GL::translate(rgeom.x, rgeom.y, 0); - graphic[state]->render(rgeom.w, rgeom.h); + GL::MeshBuilder bld(*cache.mesh); + bld.matrix() *= GL::Matrix::translation(rgeom.x, rgeom.y, 0); + graphic[state]->build(rgeom.w, rgeom.h, bld); } Part::Loader::Loader(Part &p, Resources &r): - part(p), - res(r) + DataFile::CollectionObjectLoader(p, &r) { add("graphic", &Loader::graphic); add("align", &Loader::align); @@ -56,44 +56,44 @@ Part::Loader::Loader(Part &p, Resources &r): Part::Loader::~Loader() { for(unsigned i=0; iget_shadow(); - part.geom.w=max(part.geom.w, part.graphic[i]->get_width()-shadow.left-shadow.right); - part.geom.h=max(part.geom.h, part.graphic[i]->get_height()-shadow.bottom-shadow.top); + const Graphic &grph = *obj.graphic[i]; + const Sides &shadow = grph.get_shadow(); + obj.geom.w = max(obj.geom.w, grph.get_width()-shadow.left-shadow.right); + obj.geom.h = max(obj.geom.h, grph.get_height()-shadow.bottom-shadow.top); } - else - part.graphic[i]=part.graphic[NORMAL]; - } } void Part::Loader::graphic(State s, const string &n) { - part.graphic[s]=res.get(n); + Graphic *grph = &get_collection().get(n); + for(int i=0; i