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

skin_generator.cpp « skin_generator - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6f5611d334bf57432d4fb0163b19129308030d96 (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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#include "skin_generator.hpp"

#include "3party/lodepng/lodepng_io.hpp"

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

#include "std/algorithm.hpp"
#include "std/iterator.hpp"
#include "std/fstream.hpp"
#include "std/iostream.hpp"
#include "std/bind.hpp"

#include <QtXml/QDomElement>
#include <QtXml/QDomDocument>
#include <QtCore/QDir>

namespace tools
{
  SkinGenerator::SkinGenerator(bool needColorCorrection)
    : m_needColorCorrection(needColorCorrection)
  {}

  struct GreaterHeight
  {
    bool operator() (SkinGenerator::SymbolInfo const & left,
                     SkinGenerator::SymbolInfo const & right) const
    {
      return (left.m_size.height() > right.m_size.height());
    }
  };

  struct MaxDimensions
  {
    int & m_width;
    int & m_height;

    MaxDimensions(int & width, int & height)
      : m_width(width), m_height(height)
    {
      m_width = 0;
      m_height = 0;
    }

    void operator()(SkinGenerator::SymbolInfo const & info)
    {
      m_width = max(max(m_width, m_height), info.m_size.width());
      m_height = max(max(m_width, m_height), info.m_size.height());
    }
  };

  int NextPowerOf2(int n)
  {
    n = n - 1;
    n |= (n >> 1);
    n |= (n >> 2);
    n |= (n >> 4);
    n |= (n >> 8);
    n |= (n >> 16);

    return n + 1;
  }

  void DoPatchSize(QString const & name, string const & skinName, QSize & size)
  {
    if (name.startsWith("placemark-") || name.startsWith("current-position") || name.startsWith("api_pin"))
    {
      if (skinName.rfind("-mdpi") != string::npos)
        size = QSize(24, 24);
      else if (skinName.rfind("-hdpi") != string::npos)
        size = QSize(36, 36);
      else if (skinName.rfind("-xhdpi") != string::npos)
        size = QSize(48, 48);
      else if (skinName.rfind("-xxhdpi") != string::npos)
        size = QSize(72, 72);
    }
  }

  void SkinGenerator::processSymbols(string const & svgDataDir,
                                     string const & skinName,
                                     vector<QSize> const & symbolSizes,
                                     vector<string> const & suffixes)
  {
    for (size_t j = 0; j < symbolSizes.size(); ++j)
    {
      QDir dir(QString(svgDataDir.c_str()));
      QStringList fileNames = dir.entryList(QDir::Files);

      QDir pngDir = dir.absolutePath() + "/" + "png";
      fileNames += pngDir.entryList(QDir::Files);

      /// separate page for symbols
      m_pages.push_back(SkinPageInfo());
      SkinPageInfo & page = m_pages.back();

      page.m_dir = skinName.substr(0, skinName.find_last_of("/") + 1);
      page.m_suffix = suffixes[j];
      page.m_fileName = page.m_dir + "symbols" + page.m_suffix;

      for (size_t i = 0; i < fileNames.size(); ++i)
      {
        QString const & fileName = fileNames.at(i);
        QString symbolID = fileName.left(fileName.lastIndexOf("."));
        if (fileName.endsWith(".svg"))
        {
          QString fullFileName = QString(dir.absolutePath()) + "/" + fileName;
          if (m_svgRenderer.load(fullFileName))
          {
            QSize defaultSize = m_svgRenderer.defaultSize();

            QSize symbolSize = symbolSizes[j];
            DoPatchSize(fileName, skinName, symbolSize);

            QSize size = defaultSize * (symbolSize.width() / 24.0);

            /// fitting symbol into symbolSize, saving aspect ratio

            if (size.width() > symbolSize.width())
            {
              size.setHeight((float)size.height() * symbolSize.width() / (float)size.width());
              size.setWidth(symbolSize.width());
            }

            if (size.height() > symbolSize.height())
            {
              size.setWidth((float)size.width() * symbolSize.height() / (float)size.height());
              size.setHeight(symbolSize.height());
            }

            page.m_symbols.push_back(SymbolInfo(size + QSize(4, 4), fullFileName, symbolID));
          }
        }
        else if (fileName.toLower().endsWith(".png"))
        {
          QString fullFileName = QString(pngDir.absolutePath()) + "/" + fileName;
          QPixmap pix(fullFileName);
          QSize s = pix.size();
          page.m_symbols.push_back(SymbolInfo(s + QSize(4, 4), fullFileName, symbolID));
        }
      }
    }
  }

  namespace
  {
    void correctColors(gil::bgra8_image_t & image)
    {
      gil::bgra8_view_t view = gil::view(image);
      for (gil::bgra8_view_t::y_coord_t y = 0; y < view.height(); ++y)
      {
        for (gil::bgra8_view_t::x_coord_t x = 0; x < view.width(); ++x)
        {
          gil::bgra8_pixel_t pixel = view(x, y);
          unsigned char color = my::clamp(0.07 * pixel[0] + 0.5 * pixel[1] + 0.22  * pixel[2], 0, 255);

          view(x, y)[0] = color;
          view(x, y)[1] = color;
          view(x, y)[2] = color;
        }
      }
    }
  }

  bool SkinGenerator::renderPages(uint32_t maxSize)
  {
    for (TSkinPages::iterator pageIt = m_pages.begin(); pageIt != m_pages.end(); ++pageIt)
    {
      SkinPageInfo & page = *pageIt;
      sort(page.m_symbols.begin(), page.m_symbols.end(), GreaterHeight());

      MaxDimensions dim(page.m_width, page.m_height);
      for_each(page.m_symbols.begin(), page.m_symbols.end(), dim);

      page.m_width = NextPowerOf2(page.m_width);
      page.m_height = NextPowerOf2(page.m_height);

      /// packing until we find a suitable rect
      while (true)
      {
        page.m_packer = m2::Packer(page.m_width, page.m_height);
        page.m_packer.addOverflowFn(bind(&SkinGenerator::markOverflow, this), 10);

        m_overflowDetected = false;

        for (TSymbols::iterator it = page.m_symbols.begin(); it != page.m_symbols.end(); ++it)
        {
          it->m_handle = page.m_packer.pack(it->m_size.width(), it->m_size.height());
          if (m_overflowDetected)
            break;
        }

        if (m_overflowDetected)
        {
          /// enlarge packing area and try again
          if (page.m_width == page.m_height)
            page.m_width *= 2;
          else
            page.m_height *= 2;

          if (page.m_width > maxSize)
          {
            page.m_width = maxSize;
            page.m_height *= 2;
            if (page.m_height > maxSize)
              return false;
          }

          continue;
        }

        break;
      }

      gil::bgra8_image_t gilImage(page.m_width, page.m_height);
      gil::fill_pixels(gil::view(gilImage), gil::rgba8_pixel_t(0, 0, 0, 0));
      QImage img((uchar*)&gil::view(gilImage)(0, 0), page.m_width, page.m_height, QImage::Format_ARGB32);
      QPainter painter(&img);
      painter.setClipping(true);

      for (TSymbols::const_iterator it = page.m_symbols.begin(); it != page.m_symbols.end(); ++it)
      {
        m2::RectU dstRect = page.m_packer.find(it->m_handle).second;
        QRect dstRectQt(dstRect.minX(), dstRect.minY(), dstRect.SizeX(), dstRect.SizeY());

        painter.fillRect(dstRectQt, QColor(0, 0, 0, 0));

        painter.setClipRect(dstRect.minX() + 2, dstRect.minY() + 2, dstRect.SizeX() - 4, dstRect.SizeY() - 4);
        QRect renderRect(dstRect.minX() + 2, dstRect.minY() + 2, dstRect.SizeX() - 4, dstRect.SizeY() - 4);

        QString fullLowerCaseName = it->m_fullFileName.toLower();
        if (fullLowerCaseName.endsWith(".svg"))
        {
          m_svgRenderer.load(it->m_fullFileName);
          m_svgRenderer.render(&painter, renderRect);
        }
        else if (fullLowerCaseName.endsWith(".png"))
        {
          QPixmap pix(it->m_fullFileName);
          painter.drawPixmap(renderRect, pix);
        }
      }

      string s = page.m_fileName + ".png";
      LOG(LINFO, ("saving skin image into: ", s));
      if (m_needColorCorrection)
        correctColors(gilImage);
      img.save(s.c_str());
    }

    return true;
  }

  void SkinGenerator::markOverflow()
  {
    m_overflowDetected = true;
  }

  void SkinGenerator::writeToFileNewStyle(const string & skinName)
  {
    QDomDocument doc = QDomDocument("skin");
    QDomElement rootElem = doc.createElement("root");
    doc.appendChild(rootElem);

    for (vector<SkinPageInfo>::const_iterator pageIt = m_pages.begin(); pageIt != m_pages.end(); ++pageIt)
    {
      QDomElement fileNode = doc.createElement("file");
      fileNode.setAttribute("width", pageIt->m_width);
      fileNode.setAttribute("height", pageIt->m_height);
      rootElem.appendChild(fileNode);

      for (vector<SymbolInfo>::const_iterator symbolIt = pageIt->m_symbols.begin();
           symbolIt != pageIt->m_symbols.end(); ++symbolIt)
      {
        m2::RectU r = pageIt->m_packer.find(symbolIt->m_handle).second;
        QDomElement symbol = doc.createElement("symbol");
        symbol.setAttribute("minX", r.minX());
        symbol.setAttribute("minY", r.minY());
        symbol.setAttribute("maxX", r.maxX());
        symbol.setAttribute("maxY", r.maxY());
        symbol.setAttribute("name", symbolIt->m_symbolID.toLower());
        fileNode.appendChild(symbol);
      }
    }
    string extName = ".sdf";
    QFile file(QString((skinName + extName).c_str()));
    if (!file.open(QIODevice::ReadWrite | QIODevice::Truncate))
      throw std::exception();
    QTextStream ts(&file);
    ts.setCodec("UTF-8");
    ts << doc.toString();
  }
}