]> git.tdb.fi Git - libs/gl.git/blob - source/animatedobject.cpp
Some fixes to assignment management in UnusedVariableLocator
[libs/gl.git] / source / animatedobject.cpp
1 #include <algorithm>
2 #include <msp/strings/format.h>
3 #include "animatedobject.h"
4 #include "error.h"
5 #include "object.h"
6 #include "programdata.h"
7 #include "renderer.h"
8 #include "technique.h"
9
10 using namespace std;
11
12 namespace Msp {
13 namespace GL {
14
15 AnimatedObject::AnimatedObject(const Object &o):
16         ObjectInstance(o),
17         shdata(0)
18 {
19         if(const Technique *tech = object.get_technique())
20                 if(tech->has_shaders())
21                         shdata = new ProgramData;
22 }
23
24 AnimatedObject::~AnimatedObject()
25 {
26         delete shdata;
27 }
28
29 void AnimatedObject::set_matrix(const Matrix &m)
30 {
31         matrix = m;
32 }
33
34 void AnimatedObject::set_pose_matrix(unsigned link, const Matrix &m)
35 {
36         if(shdata)
37         {
38                 if(link*16>=pose_data.size())
39                         pose_data.resize((link+1)*16);
40                 copy(m.data(), m.data()+16, &pose_data[link*16]);
41                 shdata->uniform_matrix4_array("pose", pose_data.size()/16, &pose_data[0]);
42         }
43 }
44
45 void AnimatedObject::set_uniform(const string &name, const KeyFrame::AnimatedUniform &uni)
46 {
47         if(!shdata)
48                 throw invalid_operation("AnimatedObject::set_uniform");
49
50         if(uni.size==1)
51                 shdata->uniform(name, uni.values[0]);
52         else if(uni.size==2)
53                 shdata->uniform2(name, uni.values);
54         else if(uni.size==3)
55                 shdata->uniform3(name, uni.values);
56         else if(uni.size==4)
57                 shdata->uniform4(name, uni.values);
58         else
59                 throw invalid_argument("AnimatedObject::set_uniform");
60 }
61
62 void AnimatedObject::setup_render(Renderer &renderer, const Tag &) const
63 {
64         renderer.transform(matrix);
65         if(shdata)
66                 renderer.add_shader_data(*shdata);
67 }
68
69
70 AnimatedObject::Loader::Loader(AnimatedObject &o):
71         DataFile::ObjectLoader<AnimatedObject>(o)
72 {
73         add("position", &Loader::position);
74         add("rotation", &Loader::rotation);
75         add("scale", &Loader::scale);
76         add("scale", &Loader::scale_uniform);
77 }
78
79 void AnimatedObject::Loader::position(float x, float y, float z)
80 {
81         obj.matrix.translate(x, y, z);
82 }
83
84 void AnimatedObject::Loader::rotation(float a, float x, float y, float z)
85 {
86         obj.matrix.rotate_deg(a, x, y, z);
87 }
88
89 void AnimatedObject::Loader::scale(float x, float y, float z)
90 {
91         obj.matrix.scale(x, y, z);
92 }
93
94 void AnimatedObject::Loader::scale_uniform(float s)
95 {
96         obj.matrix.scale(s);
97 }
98
99 } // namespace GL
100 } // namespace Msp