summaryrefslogtreecommitdiff
path: root/src/mbgl/text/shaping.hpp
blob: 83a9dfd6e200c581b9a20bd6cdc22345792dfd45 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#pragma once

#include <mbgl/renderer/image_atlas.hpp>
#include <mbgl/style/layers/symbol_layer_properties.hpp>
#include <mbgl/style/types.hpp>
#include <mbgl/text/glyph.hpp>
#include <mbgl/text/glyph_atlas.hpp>
#include <mbgl/text/tagged_string.hpp>

#include <utility>

namespace mbgl {

struct AnchorAlignment {
    AnchorAlignment(float horizontal, float vertical)
        : horizontalAlign(horizontal), verticalAlign(vertical) {
    }

    static AnchorAlignment getAnchorAlignment(style::SymbolAnchorType anchor);

    float horizontalAlign;
    float verticalAlign;
};

// Choose the justification that matches the direction of the TextAnchor
style::TextJustifyType getAnchorJustification(style::SymbolAnchorType anchor);

class SymbolFeature;
class BiDi;

class Padding {
public:
    float left = 0;
    float top = 0;
    float right = 0;
    float bottom = 0;

    explicit operator bool() const { return left != 0 || top != 0 || right != 0 || bottom != 0; }

    bool operator==(const Padding& rhs) const {
        return left == rhs.left && top == rhs.top && right == rhs.right && bottom == rhs.bottom;
    }
};

class PositionedIcon {
private:
    PositionedIcon(
        ImagePosition image_, float top_, float bottom_, float left_, float right_, const Padding& collisionPadding_)
        : _image(std::move(image_)),
          _top(top_),
          _bottom(bottom_),
          _left(left_),
          _right(right_),
          _collisionPadding(collisionPadding_) {}

    ImagePosition _image;
    float _top;
    float _bottom;
    float _left;
    float _right;
    Padding _collisionPadding;

public:
    static PositionedIcon shapeIcon(const ImagePosition&,
                                    const std::array<float, 2>& iconOffset,
                                    style::SymbolAnchorType iconAnchor);

    // Updates shaped icon's bounds based on shaped text's bounds and provided
    // layout properties.
    void fitIconToText(const Shaping& shapedText,
                       style::IconTextFitType textFit,
                       const std::array<float, 4>& padding,
                       const std::array<float, 2>& iconOffset,
                       float fontScale);

    const ImagePosition& image() const { return _image; }
    float top() const { return _top; }
    float bottom() const { return _bottom; }
    float left() const { return _left; }
    float right() const { return _right; }
    const Padding& collisionPadding() const { return _collisionPadding; }
};

Shaping getShaping(const TaggedString& string,
                   float maxWidth,
                   float lineHeight,
                   style::SymbolAnchorType textAnchor,
                   style::TextJustifyType textJustify,
                   float spacing,
                   const std::array<float, 2>& translate,
                   WritingModeType,
                   BiDi& bidi,
                   const GlyphMap& glyphMap,
                   const GlyphPositions& glyphPositions,
                   const ImagePositions& imagePositions,
                   float layoutTextSize,
                   float layoutTextSizeAtBucketZoomLevel,
                   bool allowVerticalPlacement);
std::vector<GlyphID> getShapedGlyphs(const TaggedString& formattedString,
                                     const float maxWidth,
                                     const WritingModeType writingMode,
                                     bool allowVerticalPlacement);

} // namespace mbgl