[drape] helper class for create chain of animations

This commit is contained in:
ExMix 2015-06-09 12:37:50 +03:00 committed by r.kuznetsov
parent eba6b49005
commit ccdb358857
2 changed files with 79 additions and 6 deletions

View file

@ -0,0 +1,72 @@
#pragma once
#include "base/buffer_vector.hpp"
#include "base/logging.hpp"
namespace df
{
template <typename TValue>
class ValueMapping
{
/// double = interpolation point [0.0, 1.0]
/// TValue = output value
using TRangePoint = pair<double, TValue>;
using TRangeVector = buffer_vector<TRangePoint, 8>;
using TRangeIter = typename TRangeVector::const_iterator;
public:
ValueMapping() = default;
void AddRangePoint(double t, TValue const & v)
{
#ifdef DEBUG
if (!m_ranges.empty())
ASSERT(m_ranges.back().first < t, ());
#endif
m_ranges.emplace_back(t, v);
}
TValue GetValue(double t)
{
TRangePoint startPoint, endPoint;
GetRangePoints(t, startPoint, endPoint);
double normT = t - startPoint.first;
double rangeT = endPoint.first - startPoint.first;
double rangeV = endPoint.second - startPoint.second;
return startPoint.second + rangeV * normT / rangeT;
}
private:
void GetRangePoints(double t, TRangePoint & startPoint, TRangePoint & endPoint)
{
ASSERT(t >= 0.0 && t <= 1.0, ());
ASSERT(m_ranges.size() > 1, ());
TRangeIter startIter = m_ranges.begin();
if (t < startIter->first)
{
startPoint.first = 0.0;
startPoint.second = TValue();
endPoint = *startIter;
return;
}
TRangeIter endIter = startIter + 1;
while (t > endIter->first)
{
endIter++;
ASSERT(m_ranges.end() != endIter, ());
}
ASSERT(startIter->first <= t && t <= endIter->first, ());
startPoint = *startIter;
endPoint = *endIter;
}
private:
TRangeVector m_ranges;
};
}

View file

@ -14,6 +14,7 @@ SOURCES += \
animation/interpolations.cpp \
animation/model_view_animation.cpp \
animation/opacity_animation.cpp \
animation/show_hide_animation.cpp \
apply_feature_functors.cpp \
area_shape.cpp \
backend_renderer.cpp \
@ -37,7 +38,9 @@ SOURCES += \
read_manager.cpp \
read_mwm_task.cpp \
render_group.cpp \
render_node.cpp \
rule_drawer.cpp \
selection_shape.cpp \
stylist.cpp \
text_layout.cpp \
text_shape.cpp \
@ -52,9 +55,6 @@ SOURCES += \
user_marks_provider.cpp \
viewport.cpp \
visual_params.cpp \
selection_shape.cpp \
animation/show_hide_animation.cpp \
render_node.cpp
HEADERS += \
animation/base_interpolator.hpp \
@ -62,6 +62,8 @@ HEADERS += \
animation/interpolations.hpp \
animation/model_view_animation.hpp \
animation/opacity_animation.hpp \
animation/show_hide_animation.hpp \
animation/value_mapping.hpp \
apply_feature_functors.hpp \
area_shape.hpp \
backend_renderer.hpp \
@ -89,7 +91,9 @@ HEADERS += \
read_manager.hpp \
read_mwm_task.hpp \
render_group.hpp \
render_node.hpp \
rule_drawer.hpp \
selection_shape.hpp \
shape_view_params.hpp \
stylist.hpp \
text_layout.hpp \
@ -105,6 +109,3 @@ HEADERS += \
user_marks_provider.hpp \
viewport.hpp \
visual_params.hpp \
selection_shape.hpp \
animation/show_hide_animation.hpp \
render_node.hpp