summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer/frame_history.hpp
blob: f56b39125617fde626bb21ea3ecff97bbb36cecb (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 <chrono>

#include <mbgl/platform/platform.hpp>

namespace mbgl {

struct FrameSnapshot {
    explicit inline FrameSnapshot(std::chrono::steady_clock::time_point now_, float z_) : now(now_), z(z_) {}
    std::chrono::steady_clock::time_point now;
    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(std::chrono::steady_clock::time_point now, float zoom);

    bool needsAnimation(std::chrono::steady_clock::duration duration) const;
    FadeProperties getFadeProperties(std::chrono::steady_clock::duration duration);

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

}

#endif