X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=7037d4b3384374568bc662a9edc1df3299776ba3;hb=b51fd94242badcd3807a39c339979f4f358120cd;hp=0ba03a3d3e1d027e2e50021212db4b1cfabd8862;hpb=c1faa54a3218b53757b8b55de0ff8aa64412253b;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index 0ba03a3..7037d4b 100644 --- a/source/part.cpp +++ b/source/part.cpp @@ -1,6 +1,7 @@ -#include +#include #include "geometry.h" #include "part.h" +#include "partcache.h" #include "resources.h" using namespace std; @@ -23,15 +24,22 @@ const Graphic *Part::get_graphic(State state) const 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; + } + + 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); } @@ -59,7 +67,7 @@ Part::Loader::~Loader() 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