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
|
#include "image.h"
#include <cstring>
#include <cstdint>
#include <cstdlib>
#include <cassert>
#include <hugin.hpp>
#include "resource.h"
#include "lodepng/lodepng.h"
namespace GUI
{
Image::Image(const char* data, size_t size)
{
load(data, size);
}
Image::Image(const std::string& filename)
: filename(filename)
{
Resource rc(filename);
load(rc.data(), rc.size());
}
Image::Image(Image&& other)
: _width(other._width)
, _height(other._height)
, image_data(std::move(other.image_data))
, filename(other.filename)
{
other._width = 0;
other._height = 0;
}
Image::~Image()
{
}
Image& Image::operator=(Image&& other)
{
image_data.clear();
image_data = std::move(other.image_data);
_width = other._width;
_height = other._height;
other._width = 0;
other._height = 0;
return *this;
}
void Image::setError()
{
Resource rc(":resources/png_error");
const unsigned char* ptr = (const unsigned char*)rc.data();
std::uint32_t iw, ih;
std::memcpy(&iw, ptr, sizeof(uint32_t));
ptr += sizeof(uint32_t);
std::memcpy(&ih, ptr, sizeof(uint32_t));
ptr += sizeof(uint32_t);
_width = iw;
_height = ih;
image_data.clear();
image_data.reserve(_width * _height);
for(std::size_t y = 0; y < _height; ++y)
{
for(std::size_t x = 0; x < _width; ++x)
{
image_data.emplace_back(Colour{ptr[0] / 255.0f, ptr[1] / 255.0f,
ptr[2] / 255.0f, ptr[3] / 255.0f});
}
}
assert(image_data.size() == (_width * _height));
}
void Image::load(const char* data, size_t size)
{
unsigned int iw{0}, ih{0};
unsigned char* char_image_data{nullptr};
unsigned int res = lodepng_decode32((unsigned char**)&char_image_data,
&iw, &ih,
(const unsigned char*)data, size);
if(res != 0)
{
ERR(image, "Error in lodepng_decode32: %d while loading '%s'",
res, filename.c_str());
setError();
return;
}
_width = iw;
_height = ih;
image_data.clear();
image_data.reserve(_width * _height);
for(std::size_t y = 0; y < _height; ++y)
{
for(std::size_t x = 0; x < _width; ++x)
{
unsigned char* ptr = &char_image_data[(x + y * _width) * 4];
image_data.emplace_back(Colour{ptr[0] / 255.0f, ptr[1] / 255.0f,
ptr[2] / 255.0f, ptr[3] / 255.0f});
}
}
assert(image_data.size() == (_width * _height));
std::free(char_image_data);
}
size_t Image::width() const
{
return _width;
}
size_t Image::height() const
{
return _height;
}
const Colour& Image::getPixel(size_t x, size_t y) const
{
if(x > _width || y > _height)
{
return out_of_range;
}
return image_data[x + y * _width];
}
}
|