summaryrefslogtreecommitdiff
path: root/include/mbgl/renderer/frame_history.hpp
blob: 61bb59da33cf2756ec4923295ab434045d646aad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef MBGL_RENDERER_FRAME_HISTORY
#define MBGL_RENDERER_FRAME_HISTORY

#include <deque>
#include <cassert>
#include <cmath>

#include <mbgl/platform/platform.hpp>
#include <mbgl/util/time.hpp>

namespace mbgl {

struct FrameSnapshot {
    explicit inline FrameSnapshot(timestamp t_, float z_) : t(t_), z(z_) {}
    float t;
    float z;
};

struct FadeProperties {
    float fadedist;
    float minfadezoom;
    float maxfadezoom;
    float bump;
};

class FrameHistory {
public:
    // Record frame history that will be used to calculate fading params
    void record(timestamp now, float zoom);

    bool needsAnimation(timestamp duration) const;
    FadeProperties getFadeProperties(timestamp duration);

public:
    std::deque<FrameSnapshot> history;
};

}

#endif