summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Benau/go_rlottie/vector_vrle.h
blob: a47893fcbfbc2cca60beb7c8ea653a66cc249ffd (plain) (blame)
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*
 * Copyright (c) 2020 Samsung Electronics Co., Ltd. All rights reserved.

 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:

 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.

 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */

#ifndef VRLE_H
#define VRLE_H

#include <vector>
#include "vector_vcowptr.h"
#include "vector_vglobal.h"
#include "vector_vpoint.h"
#include "vector_vrect.h"

V_BEGIN_NAMESPACE

class VRle {
public:
    struct Span {
        short  x{0};
        short  y{0};
        ushort len{0};
        uchar  coverage{0};
    };
    using VRleSpanCb = void (*)(size_t count, const VRle::Span *spans,
                                void *userData);
    bool  empty() const { return d->empty(); }
    VRect boundingRect() const { return d->bbox(); }
    void  setBoundingRect(const VRect &bbox) { d->setBbox(bbox); }
    void  addSpan(const VRle::Span *span, size_t count)
    {
        d.write().addSpan(span, count);
    }

    void reset() { d.write().reset(); }
    void translate(const VPoint &p) { d.write().translate(p); }

    void operator*=(uchar alpha) { d.write() *= alpha; }

    void intersect(const VRect &r, VRleSpanCb cb, void *userData) const;
    void intersect(const VRle &rle, VRleSpanCb cb, void *userData) const;

    void operator&=(const VRle &o);
    VRle operator&(const VRle &o) const;
    VRle operator-(const VRle &o) const;
    VRle operator+(const VRle &o) const { return opGeneric(o, Data::Op::Add); }
    VRle operator^(const VRle &o) const { return opGeneric(o, Data::Op::Xor); }

    friend VRle operator-(const VRect &rect, const VRle &o);
    friend VRle operator&(const VRect &rect, const VRle &o);

    bool   unique() const { return d.unique(); }
    size_t refCount() const { return d.refCount(); }
    void   clone(const VRle &o) { d.write().clone(o.d.read()); }

public:
    struct View {
        Span * _data;
        size_t _size;
        View(const Span *data, size_t sz) : _data((Span *)data), _size(sz) {}
        Span * data() { return _data; }
        size_t size() { return _size; }
    };
    struct Data {
        enum class Op { Add, Xor, Substract };
        VRle::View view() const
        {
            return VRle::View(mSpans.data(), mSpans.size());
        }
        bool  empty() const { return mSpans.empty(); }
        void  addSpan(const VRle::Span *span, size_t count);
        void  updateBbox() const;
        VRect bbox() const;
        void  setBbox(const VRect &bbox) const;
        void  reset();
        void  translate(const VPoint &p);
        void  operator*=(uchar alpha);
        void  opGeneric(const VRle::Data &, const VRle::Data &, Op code);
        void  opSubstract(const VRle::Data &, const VRle::Data &);
        void  opIntersect(VRle::View a, VRle::View b);
        void  opIntersect(const VRect &, VRle::VRleSpanCb, void *) const;
        void  addRect(const VRect &rect);
        void  clone(const VRle::Data &);

        std::vector<VRle::Span> mSpans;
        VPoint                  mOffset;
        mutable VRect           mBbox;
        mutable bool            mBboxDirty = true;
    };

private:
    VRle opGeneric(const VRle &o, Data::Op opcode) const;

    vcow_ptr<Data> d;
};

inline void VRle::intersect(const VRect &r, VRleSpanCb cb, void *userData) const
{
    d->opIntersect(r, cb, userData);
}

V_END_NAMESPACE

#endif  // VRLE_H