summaryrefslogtreecommitdiff
path: root/test/programs/symbol_program.test.cpp
blob: 4d30e5dc3d10eb1ad1f8a6e0f85ccc30cac7ce2c (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#include <mbgl/test/util.hpp>

#include <mbgl/programs/symbol_program.hpp>
#include <mbgl/style/expression/dsl.hpp>

using namespace mbgl;
using namespace mbgl::style::expression::dsl;

TEST(SymbolProgram, SymbolSizeBinder) {
    auto binder = SymbolSizeBinder::create(5.0f, 12.0f, 0.0f);
    auto uniformValues = binder->uniformValues(5.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_size>(), 12.0f);

    binder = SymbolSizeBinder::create(1.0f, style::PropertyExpression<float>(
        interpolate(
            linear(),
            zoom(),
            0., literal(8.),
            10., literal(18.))), 0.0f);
    uniformValues = binder->uniformValues(1.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), false);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_size>(), 9.5f);
    
    binder = SymbolSizeBinder::create(0.0f, style::PropertyExpression<float>(
        interpolate(
            linear(),
            zoom(),
            1., literal(8.),
            11., literal(18.))), 0.0f);
    uniformValues = binder->uniformValues(0.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), false);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_size>(), 8.0f);
    
    binder = SymbolSizeBinder::create(12.0f, style::PropertyExpression<float>(
        interpolate(
            linear(),
            zoom(),
            1., literal(8.),
            11., literal(18.))), 0.0f);
    uniformValues = binder->uniformValues(12.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), false);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_size>(), 18.0f);
    
    binder = SymbolSizeBinder::create(0.0f, style::PropertyExpression<float>(
        interpolate(
            linear(),
            number(get("x")),
            1., literal(8.),
            11., literal(18.))), 0.0f);
    uniformValues = binder->uniformValues(12.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), true);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), false);

    binder = SymbolSizeBinder::create(5.0f, style::PropertyExpression<float>(
        interpolate(
            linear(),
            zoom(),
            1., interpolate(linear(), number(get("x")), 0., literal(8.), 100., literal(18.)),
            11., interpolate(linear(), number(get("x")), 0., literal(12.), 100., literal(24.9)))), 0.0f);
    uniformValues = binder->uniformValues(5.5f);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_zoom_constant>(), false);
    EXPECT_EQ(uniformValues.get<uniforms::u_is_size_feature_constant>(), false);
    EXPECT_EQ(uniformValues.get<uniforms::u_size_t>(), 0.45f);
}