forked from rive-app/rive-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpls_path.hpp
68 lines (56 loc) · 2 KB
/
pls_path.hpp
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
/*
* Copyright 2022 Rive
*/
#pragma once
#include "rive/math/raw_path.hpp"
#include "rive/renderer.hpp"
namespace rive::pls
{
// RenderPath implementation for Rive's pixel local storage renderer.
class PLSPath : public lite_rtti_override<RenderPath, PLSPath>
{
public:
PLSPath() = default;
PLSPath(FillRule fillRule, RawPath& rawPath);
void rewind() override;
void fillRule(FillRule rule) override { m_fillRule = rule; }
void moveTo(float x, float y) override;
void lineTo(float x, float y) override;
void cubicTo(float ox, float oy, float ix, float iy, float x, float y) override;
void close() override;
void addPath(CommandPath* p, const Mat2D& m) override { addRenderPath(p->renderPath(), m); }
void addRenderPath(RenderPath* path, const Mat2D& matrix) override;
const RawPath& getRawPath() const { return m_rawPath; }
FillRule getFillRule() const { return m_fillRule; }
const AABB& getBounds() const;
// Approximates the area of the path by linearizing it with a coarse tolerance of 8px in
// artboard space.
constexpr static float kCoarseAreaTolerance = 8; // Linearize within 8px of the true curve.
float getCoarseArea() const;
uint64_t getRawPathMutationID() const;
#ifdef DEBUG
// Allows ref holders to guarantee the rawPath doesn't mutate during a specific time.
void lockRawPathMutations() const { ++m_rawPathMutationLockCount; }
void unlockRawPathMutations() const
{
assert(m_rawPathMutationLockCount > 0);
--m_rawPathMutationLockCount;
}
#endif
private:
FillRule m_fillRule = FillRule::nonZero;
RawPath m_rawPath;
mutable AABB m_bounds;
mutable float m_coarseArea;
mutable uint64_t m_rawPathMutationID;
enum Dirt
{
kPathBoundsDirt = 1 << 0,
kRawPathMutationIDDirt = 1 << 1,
kPathCoarseAreaDirt = 1 << 2,
kAllDirt = ~0,
};
mutable uint32_t m_dirt = kAllDirt;
RIVE_DEBUG_CODE(mutable int m_rawPathMutationLockCount = 0;)
};
} // namespace rive::pls