X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=72c8921b1c03663181645623ac8485386afe83e8;hb=202abf876bc54c0f82c1afcd26b3b79fd1cd4815;hp=1f58b6187d679c983ad044310b20b5b739e1a6c5;hpb=50bf1ef2e2c3c38de20f6996a6c5ed0066111177;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index 1f58b61..72c8921 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; @@ -18,33 +12,32 @@ namespace GLtk { Part::Part(const string &n): name(n) { - for(unsigned i=0; i(0)); } const Graphic *Part::get_graphic(State state) const { if(state>N_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, PartCache &cache) const { - if(!graphic[state]) + if(!graphic[state] || !graphic[state]->get_texture()) return; - Geometry rgeom=geom; + 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.create_mesh(*this, *graphic[state]->get_texture())); + 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,43 +49,49 @@ 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); } } +void Part::Loader::graphic_normal(const string &n) +{ + graphic(NORMAL, n); +} + void Part::Loader::graphic(State s, const string &n) { - Graphic *grph=res.get(n); + Graphic *grph = (n.empty() ? 0 : &get_collection().get(n)); for(int i=0; i