runtime: Formatting

This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2019-01-18 17:04:17 +01:00
parent cc1340190e
commit 2196cb8419
119 changed files with 10326 additions and 7798 deletions
+94 -73
View File
@@ -1,142 +1,163 @@
#include "std.hpp"
#include "animation.hpp"
#include "std.hpp"
struct Animation::Rep{
struct Animation::Rep {
int ref_cnt;
typedef map<int,Quat> KeyList;
typedef map<int, Quat> KeyList;
KeyList scale_anim,rot_anim,pos_anim;
KeyList scale_anim, rot_anim, pos_anim;
Rep():
ref_cnt(1){
}
Rep() : ref_cnt(1) {}
Rep( const Rep &t ):
ref_cnt(1),
scale_anim(t.scale_anim),rot_anim(t.rot_anim),pos_anim(t.pos_anim){
}
Rep(const Rep& t) : ref_cnt(1), scale_anim(t.scale_anim), rot_anim(t.rot_anim), pos_anim(t.pos_anim) {}
Vector getLinearValue( const KeyList &keys,float time )const{
KeyList::const_iterator next,curr;
Vector getLinearValue(const KeyList& keys, float time) const
{
KeyList::const_iterator next, curr;
//for( next=keys.begin();next!=keys.end() && time>=next->first;++next ){}
next=keys.upper_bound( (int)time );
next = keys.upper_bound((int)time);
if( next==keys.begin() ) return next->second.v;
curr=next;--curr;
if( next==keys.end() ) return curr->second.v;
if (next == keys.begin())
return next->second.v;
curr = next;
--curr;
if (next == keys.end())
return curr->second.v;
float delta=( time-curr->first )/( next->first-curr->first );
return ( next->second.v-curr->second.v )*delta+curr->second.v;
float delta = (time - curr->first) / (next->first - curr->first);
return (next->second.v - curr->second.v) * delta + curr->second.v;
}
Quat getSlerpValue( const KeyList &keys,float time )const{
KeyList::const_iterator next,curr;
Quat getSlerpValue(const KeyList& keys, float time) const
{
KeyList::const_iterator next, curr;
//for( next=keys.begin();next!=keys.end() && time>=next->first;++next ){}
next=keys.upper_bound( (int)time );
next = keys.upper_bound((int)time);
if( next==keys.begin() ) return next->second;
curr=next;--curr;
if( next==keys.end() ) return curr->second;
if (next == keys.begin())
return next->second;
curr = next;
--curr;
if (next == keys.end())
return curr->second;
float delta=( time-curr->first )/( next->first-curr->first );
return curr->second.slerpTo( next->second,delta );
float delta = (time - curr->first) / (next->first - curr->first);
return curr->second.slerpTo(next->second, delta);
}
void setKey( KeyList &keys,int time,const Quat &value ){
keys[time]=value;
void setKey(KeyList& keys, int time, const Quat& value)
{
keys[time] = value;
}
};
Animation::Animation():
rep( new Rep() ){
}
Animation::Animation() : rep(new Rep()) {}
Animation::Animation( const Animation &t ):
rep( t.rep ){
Animation::Animation(const Animation& t) : rep(t.rep)
{
++rep->ref_cnt;
}
Animation::Animation( const Animation &t,int first,int last ):
rep( new Rep() ){
Animation::Animation(const Animation& t, int first, int last) : rep(new Rep())
{
Rep::KeyList::const_iterator it;
for( it=t.rep->pos_anim.begin();it!=t.rep->pos_anim.end();++it ){
if( it->first<first || it->first>last ) continue;
rep->setKey( rep->pos_anim,it->first-first,it->second );
for (it = t.rep->pos_anim.begin(); it != t.rep->pos_anim.end(); ++it) {
if (it->first < first || it->first > last)
continue;
rep->setKey(rep->pos_anim, it->first - first, it->second);
}
for( it=t.rep->scale_anim.begin();it!=t.rep->scale_anim.end();++it ){
if( it->first<first || it->first>last ) continue;
rep->setKey( rep->scale_anim,it->first-first,it->second );
for (it = t.rep->scale_anim.begin(); it != t.rep->scale_anim.end(); ++it) {
if (it->first < first || it->first > last)
continue;
rep->setKey(rep->scale_anim, it->first - first, it->second);
}
for( it=t.rep->rot_anim.begin();it!=t.rep->rot_anim.end();++it ){
if( it->first<first || it->first>last ) continue;
rep->setKey( rep->rot_anim,it->first-first,it->second );
for (it = t.rep->rot_anim.begin(); it != t.rep->rot_anim.end(); ++it) {
if (it->first < first || it->first > last)
continue;
rep->setKey(rep->rot_anim, it->first - first, it->second);
}
}
Animation::~Animation(){
if( !--rep->ref_cnt ) delete rep;
Animation::~Animation()
{
if (!--rep->ref_cnt)
delete rep;
}
Animation &Animation::operator=( const Animation &t ){
Animation& Animation::operator=(const Animation& t)
{
++t.rep->ref_cnt;
if( !--rep->ref_cnt ) delete rep;
rep=t.rep;
if (!--rep->ref_cnt)
delete rep;
rep = t.rep;
return *this;
}
Animation::Rep *Animation::write(){
if( rep->ref_cnt>1 ){
Animation::Rep* Animation::write()
{
if (rep->ref_cnt > 1) {
--rep->ref_cnt;
rep=new Rep( *rep );
rep = new Rep(*rep);
}
return rep;
}
void Animation::setScaleKey( int time,const Vector &q ){
void Animation::setScaleKey(int time, const Vector& q)
{
write();
rep->setKey( rep->scale_anim,time,Quat( 0,q ) );
rep->setKey(rep->scale_anim, time, Quat(0, q));
}
void Animation::setPositionKey( int time,const Vector &q ){
void Animation::setPositionKey(int time, const Vector& q)
{
write();
rep->setKey( rep->pos_anim,time,Quat( 0,q ) );
rep->setKey(rep->pos_anim, time, Quat(0, q));
}
void Animation::setRotationKey( int time,const Quat &q ){
void Animation::setRotationKey(int time, const Quat& q)
{
write();
rep->setKey( rep->rot_anim,time,q );
rep->setKey(rep->rot_anim, time, q);
}
int Animation::numScaleKeys()const{
int Animation::numScaleKeys() const
{
return rep->scale_anim.size();
}
int Animation::numRotationKeys()const{
int Animation::numRotationKeys() const
{
return rep->rot_anim.size();
}
int Animation::numPositionKeys()const{
int Animation::numPositionKeys() const
{
return rep->pos_anim.size();
}
Vector Animation::getScale( float time )const{
if( !rep->scale_anim.size() ) return Vector(1,1,1);
return rep->getLinearValue( rep->scale_anim,time );
Vector Animation::getScale(float time) const
{
if (!rep->scale_anim.size())
return Vector(1, 1, 1);
return rep->getLinearValue(rep->scale_anim, time);
}
Vector Animation::getPosition( float time )const{
if( !rep->pos_anim.size() ) return Vector(0,0,0);
return rep->getLinearValue( rep->pos_anim,time );
Vector Animation::getPosition(float time) const
{
if (!rep->pos_anim.size())
return Vector(0, 0, 0);
return rep->getLinearValue(rep->pos_anim, time);
}
Quat Animation::getRotation( float time )const{
if( !rep->rot_anim.size() ) return Quat();
return rep->getSlerpValue( rep->rot_anim,time );
Quat Animation::getRotation(float time) const
{
if (!rep->rot_anim.size())
return Quat();
return rep->getSlerpValue(rep->rot_anim, time);
}
/*