X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpart.cpp;h=21dacc64da547123209388128b0f246b4d6f8014;hb=9f38197854e699a6093a906ab43f4238f3cd2388;hp=127397924f19cf5039b2fe8f1b34df780be8ed8f;hpb=e5f9004b672b038e43cf2b20c3fc9327f2b55ffd;p=libs%2Fgltk.git diff --git a/source/part.cpp b/source/part.cpp index 1273979..21dacc6 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; @@ -10,10 +11,7 @@ namespace GLtk { Part::Part(const string &n): name(n) -{ - for(unsigned i=0; iget_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.transform(GL::Matrix::translation(rgeom.x, rgeom.y, 0)); + graphic[state]->build(rgeom.w, rgeom.h, bld); } @@ -57,9 +56,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 = (n.empty() ? 0 : &get_collection().get(n)); for(int i=0; i