Welcome to mirror list, hosted at ThFree Co, Russian Federation.

packer.cpp « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 183af8d4e82cebb52443255843fc5ad6563e290b (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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
#include "geometry/packer.hpp"

#include "base/assert.hpp"
#include "base/logging.hpp"

namespace m2
{
  Packer::Packer()
    : m_currentX(0),
    m_currentY(0),
    m_yStep(0),
    m_width(0),
    m_height(0),
    m_currentHandle(0),
    m_maxHandle(0),
    m_invalidHandle(0x00FFFFFF)
  {}

  Packer::Packer(unsigned width, unsigned height, uint32_t maxHandle)
    : m_currentX(0),
    m_currentY(0),
    m_yStep(0),
    m_width(width),
    m_height(height),
    m_currentHandle(0),
    m_maxHandle(maxHandle),
    m_invalidHandle(0x00FFFFFF)
  {
  }

  uint32_t Packer::invalidHandle() const
  {
    return m_invalidHandle;
  }

  Packer::handle_t Packer::pack(unsigned width, unsigned height)
  {
    ASSERT(width <= m_width, ());
    ASSERT(height <= m_height, ());

    if ((width > m_width) || (height > m_height))
      return m_invalidHandle;

    /// checking whether there is enough space on X axis

    if (m_currentX + width > m_width)
    {
      m_currentY += m_yStep;
      m_currentX = 0;
      m_yStep = 0;
    }

    /// checking whether there is enough space on Y axis
    if (m_currentY + height > m_height)
    {
      /// texture overflow detected. all packed rects should be forgotten.
      callOverflowFns();
      reset();
    }
    /// check handleOverflow
    if (m_currentHandle == m_maxHandle)
    {
      /// handles overflow detected. all packed rects should be forgotten.
      callOverflowFns();
      reset();
      m_currentHandle = 0;
    }

    /// can pack
    m_yStep = max(height, m_yStep);
    handle_t curHandle = m_currentHandle++;
    m_rects[curHandle] = m2::RectU(m_currentX, m_currentY, m_currentX + width, m_currentY + height);
    m_currentX += width;

    return curHandle;
  }

  Packer::handle_t Packer::freeHandle()
  {
    if (m_currentHandle == m_maxHandle)
    {
      callOverflowFns();
      reset();
      m_currentHandle = 0;
    }

    return m_currentHandle++;
  }

  bool Packer::hasRoom(unsigned width, unsigned height) const
  {
    return ((m_width >= width) && (m_height - m_currentY - m_yStep >= height))
        || ((m_width - m_currentX >= width ) && (m_height - m_currentY >= height));
  }

  bool Packer::hasRoom(m2::PointU const * sizes, size_t cnt) const
  {
    unsigned currentX = m_currentX;
    unsigned currentY = m_currentY;
    unsigned yStep = m_yStep;

    for (unsigned i = 0; i < cnt; ++i)
    {
      unsigned width = sizes[i].x;
      unsigned height = sizes[i].y;

      if (width <= m_width - currentX)
      {
        if (height <= m_height - currentY)
        {
          yStep = max(height, yStep);
          currentX += width;
        }
        else
          return false;
      }
      else
      {
        currentX = 0;
        currentY += yStep;
        yStep = 0;

        if (width <= m_width - currentX)
        {
          if (height <= m_height - currentY)
          {
            yStep = max(height, yStep);
            currentX += width;
          }
          else
            return false;
        }
      }
    }

    return true;
  }

  bool Packer::isPacked(handle_t handle)
  {
    return m_rects.find(handle) != m_rects.end();
  }

  Packer::find_result_t Packer::find(handle_t handle) const
  {
    rects_t::const_iterator it = m_rects.find(handle);
    std::pair<bool, m2::RectU> res;
    res.first = (it != m_rects.end());
    if (res.first)
      res.second = it->second;
    return res;
  }

  void Packer::remove(handle_t handle)
  {
    m_rects.erase(handle);
  }

  void Packer::reset()
  {
    m_rects.clear();
    m_currentX = 0;
    m_currentY = 0;
    m_yStep = 0;
    m_currentHandle = 0;
  }

  void Packer::addOverflowFn(overflowFn fn, int priority)
  {
    m_overflowFns.push(std::pair<size_t, overflowFn>(priority, fn));
  }

  void Packer::callOverflowFns()
  {
    LOG(LDEBUG, ("Texture|Handles Overflow"));
    overflowFns handlersCopy = m_overflowFns;
    while (!handlersCopy.empty())
    {
      handlersCopy.top().second();
      handlersCopy.pop();
    }
  }
}