X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=4726b4c007daed4e665d64b13cadf76e28e8fc2b;hb=601e9fbcfdb26b53aff4d44805bb596f0b73208a;hp=f2797f9058ad66fe8633256c286eb3b794fe8cab;hpb=73afd124ab87e8bace98db55517a56c797a9b8c7;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index f2797f9..4726b4c 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,27 +12,27 @@ 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; 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); } @@ -64,9 +58,14 @@ Part::Loader::~Loader() } } +void Part::Loader::graphic_normal(const string &n) +{ + graphic(NORMAL, n); +} + void Part::Loader::graphic(State s, const string &n) { - Graphic *grph = get_collection().get(n); + Graphic *grph = &get_collection().get(n); for(int i=0; i