]> git.tdb.fi Git - libs/gl.git/blob - source/animatedobject.cpp
Check for OES_mapbuffer in Buffer::unmap
[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_pose_matrix(unsigned link, const Matrix &m)
30 {
31         if(shdata)
32         {
33                 if(link*16>=pose_data.size())
34                         pose_data.resize((link+1)*16);
35                 copy(m.data(), m.data()+16, &pose_data[link*16]);
36                 shdata->uniform_matrix4_array("pose", pose_data.size()/16, &pose_data[0]);
37         }
38 }
39
40 ProgramData &AnimatedObject::get_shader_data()
41 {
42         if(!shdata)
43                 throw invalid_operation("AnimatedObject::get_shader_data");
44         return *shdata;
45 }
46
47 void AnimatedObject::set_uniform(const string &name, const KeyFrame::AnimatedUniform &uni)
48 {
49         if(!shdata)
50                 throw invalid_operation("AnimatedObject::set_uniform");
51
52         if(uni.size==1)
53                 shdata->uniform(name, uni.values[0]);
54         else if(uni.size==2)
55                 shdata->uniform2(name, uni.values);
56         else if(uni.size==3)
57                 shdata->uniform3(name, uni.values);
58         else if(uni.size==4)
59                 shdata->uniform4(name, uni.values);
60         else
61                 throw invalid_argument("AnimatedObject::set_uniform");
62 }
63
64 void AnimatedObject::setup_render(Renderer &renderer, const Tag &) const
65 {
66         renderer.transform(matrix);
67         if(shdata)
68                 renderer.add_shader_data(*shdata);
69 }
70
71
72 AnimatedObject::Loader::Loader(AnimatedObject &o):
73         DataFile::ObjectLoader<AnimatedObject>(o)
74 {
75         add("position", &Loader::position);
76         add("rotation", &Loader::rotation);
77         add("scale", &Loader::scale);
78         add("scale", &Loader::scale_uniform);
79 }
80
81 void AnimatedObject::Loader::position(float x, float y, float z)
82 {
83         obj.matrix.translate(x, y, z);
84 }
85
86 void AnimatedObject::Loader::rotation(float a, float x, float y, float z)
87 {
88         obj.matrix.rotate_deg(a, x, y, z);
89 }
90
91 void AnimatedObject::Loader::scale(float x, float y, float z)
92 {
93         obj.matrix.scale(x, y, z);
94 }
95
96 void AnimatedObject::Loader::scale_uniform(float s)
97 {
98         obj.matrix.scale(s);
99 }
100
101 } // namespace GL
102 } // namespace Msp