X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fanimatedobject.cpp;h=390b90b869ce6acc9eb5a5a93a6fbe701776429e;hb=refs%2Fheads%2Fmaster;hp=3a1d9d836ffea98989b79936f87a8ebe8034e20b;hpb=6db6b7e49848e6bbc14f3ec8113ee5a941e4af07;p=libs%2Fgl.git diff --git a/source/animatedobject.cpp b/source/animatedobject.cpp deleted file mode 100644 index 3a1d9d83..00000000 --- a/source/animatedobject.cpp +++ /dev/null @@ -1,82 +0,0 @@ -#include -#include -#include "animatedobject.h" -#include "object.h" -#include "programdata.h" -#include "renderer.h" -#include "technique.h" - -using namespace std; - -namespace Msp { -namespace GL { - -AnimatedObject::AnimatedObject(const Object &o): - ObjectInstance(o), - shdata(0) -{ - if(const Technique *tech = object.get_technique()) - if(tech->has_shaders()) - shdata = new ProgramData; -} - -AnimatedObject::~AnimatedObject() -{ - delete shdata; -} - -void AnimatedObject::set_matrix(const Matrix &m) -{ - matrix = m; -} - -void AnimatedObject::set_pose_matrix(unsigned link, const Matrix &m) -{ - if(shdata) - { - if(link*16>=pose_data.size()) - pose_data.resize((link+1)*16); - copy(m.data(), m.data()+16, &pose_data[link*16]); - shdata->uniform_matrix4_array("pose[0]", pose_data.size()/16, &pose_data[0]); - } -} - -void AnimatedObject::setup_render(Renderer &renderer, const Tag &) const -{ - renderer.transform(matrix); - if(shdata) - renderer.add_shader_data(*shdata); -} - - -AnimatedObject::Loader::Loader(AnimatedObject &o): - DataFile::ObjectLoader(o) -{ - add("position", &Loader::position); - add("rotation", &Loader::rotation); - add("scale", &Loader::scale); - add("scale", &Loader::scale_uniform); -} - -void AnimatedObject::Loader::position(float x, float y, float z) -{ - obj.matrix.translate(x, y, z); -} - -void AnimatedObject::Loader::rotation(float a, float x, float y, float z) -{ - obj.matrix.rotate_deg(a, x, y, z); -} - -void AnimatedObject::Loader::scale(float x, float y, float z) -{ - obj.matrix.scale(x, y, z); -} - -void AnimatedObject::Loader::scale_uniform(float s) -{ - obj.matrix.scale(s); -} - -} // namespace GL -} // namespace Msp