vectozavr-shooter/engine/animation/AScale.h

43 lines
1.3 KiB
C
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 29.01.2021.
//
#ifndef ENGINE_ASCALE_H
#define ENGINE_ASCALE_H
#include "Animation.h"
2021-10-28 16:58:02 +03:00
#include "../physics/RigidBody.h"
2021-09-13 15:53:43 +03:00
class AScale final : public Animation {
2021-09-13 15:53:43 +03:00
private:
2021-10-28 16:58:02 +03:00
const std::weak_ptr<RigidBody> _object;
const Vec3D _scalingValue;
2021-09-13 15:53:43 +03:00
2021-10-28 16:58:02 +03:00
void update() override {
2021-11-09 22:54:20 +03:00
auto obj = _object.lock();
if (obj == nullptr) {
2021-10-28 16:58:02 +03:00
stop();
return;
}
2021-09-13 15:53:43 +03:00
std::vector<Triangle> newTriangles;
2021-11-09 22:54:20 +03:00
newTriangles.reserve(obj->triangles().size());
for (auto &t : obj->triangles()) {
newTriangles.emplace_back(t * Matrix4x4::Scale(Vec3D{1, 1, 1} +
(_scalingValue - Vec3D{1, 1, 1}) * progress())
);
2021-09-13 15:53:43 +03:00
}
2021-11-09 22:54:20 +03:00
obj->setTriangles(std::move(newTriangles));
2021-09-13 15:53:43 +03:00
}
2021-10-31 11:39:08 +03:00
2021-10-28 16:58:02 +03:00
public:
2021-10-31 11:39:08 +03:00
AScale(std::weak_ptr<RigidBody> object, const Vec3D &s, double duration = 1, LoopOut looped = LoopOut::None,
InterpolationType interpolationType = InterpolationType::Bezier) : Animation(duration, looped,
interpolationType),
_object(object), _scalingValue(s) {
2021-10-28 16:58:02 +03:00
}
2021-09-13 15:53:43 +03:00
};
#endif //INC_3DZAVR_ASCALE_H