]> git.tdb.fi Git - libs/gl.git/blobdiff - source/animatedobject.cpp
Add a new transform API to Renderer.
[libs/gl.git] / source / animatedobject.cpp
index 0cc367861e905faa3023aa2d8a79dd266ef4f0cc..3a1d9d836ffea98989b79936f87a8ebe8034e20b 100644 (file)
@@ -1,3 +1,4 @@
+#include <algorithm>
 #include <msp/strings/format.h>
 #include "animatedobject.h"
 #include "object.h"
@@ -5,6 +6,8 @@
 #include "renderer.h"
 #include "technique.h"
 
+using namespace std;
+
 namespace Msp {
 namespace GL {
 
@@ -13,12 +16,13 @@ AnimatedObject::AnimatedObject(const Object &o):
        shdata(0)
 {
        if(const Technique *tech = object.get_technique())
-       {
-               // XXX Should create separate ProgramData for each pass
-               const RenderPass &pass = tech->get_pass(Tag());
-               if(const Program *shprog = pass.get_shader_program())
-                       shdata = new ProgramData(*shprog);
-       }
+               if(tech->has_shaders())
+                       shdata = new ProgramData;
+}
+
+AnimatedObject::~AnimatedObject()
+{
+       delete shdata;
 }
 
 void AnimatedObject::set_matrix(const Matrix &m)
@@ -29,14 +33,49 @@ void AnimatedObject::set_matrix(const Matrix &m)
 void AnimatedObject::set_pose_matrix(unsigned link, const Matrix &m)
 {
        if(shdata)
-               shdata->uniform_matrix4(format("pose[%d]", link), m);
+       {
+               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.matrix_stack() *= matrix;
+       renderer.transform(matrix);
        if(shdata)
-               renderer.add_shader_data(shdata);
+               renderer.add_shader_data(*shdata);
+}
+
+
+AnimatedObject::Loader::Loader(AnimatedObject &o):
+       DataFile::ObjectLoader<AnimatedObject>(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