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
|
/* Copyright 2016 Pierre Ossman for Cendio AB
*
* This is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this software; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
* USA.
*/
#include <assert.h>
#include <ApplicationServices/ApplicationServices.h>
#include <FL/Fl_RGB_Image.H>
#include <FL/Fl_Window.H>
#include <FL/x.H>
#include <rdr/Exception.h>
#include "Surface.h"
static void render(CGContextRef gc, CGImageRef image,
CGBlendMode mode, CGFloat alpha,
int src_x, int src_y,
int x, int y, int w, int h)
{
CGRect rect;
CGImageRef subimage;
rect.origin.x = src_x;
rect.origin.y = src_y;
rect.size.width = w;
rect.size.height = h;
subimage = CGImageCreateWithImageInRect(image, rect);
if (!subimage)
throw rdr::Exception("CGImageCreateImageWithImageInRect");
CGContextSaveGState(gc);
CGContextSetBlendMode(gc, mode);
CGContextSetAlpha(gc, alpha);
rect.origin.x = x;
rect.origin.y = y;
rect.size.width = w;
rect.size.height = h;
CGContextDrawImage(gc, rect, subimage);
CGContextRestoreGState(gc);
CGImageRelease(subimage);
}
static CGContextRef make_bitmap(int width, int height, unsigned char* data)
{
CGColorSpaceRef lut;
CGContextRef bitmap;
lut = CGDisplayCopyColorSpace(kCGDirectMainDisplay);
if (!lut) {
lut = CGColorSpaceCreateDeviceRGB();
if (!lut)
throw rdr::Exception("CGColorSpaceCreateDeviceRGB");
}
bitmap = CGBitmapContextCreate(data, width, height, 8, width*4, lut,
kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Little);
CGColorSpaceRelease(lut);
if (!bitmap)
throw rdr::Exception("CGBitmapContextCreate");
return bitmap;
}
void Surface::clear(unsigned char r, unsigned char g, unsigned char b, unsigned char a)
{
unsigned char* out;
int x, y;
r = (unsigned)r * a / 255;
g = (unsigned)g * a / 255;
b = (unsigned)b * a / 255;
out = data;
for (y = 0;y < width();y++) {
for (x = 0;x < height();x++) {
*out++ = b;
*out++ = g;
*out++ = r;
*out++ = a;
}
}
}
void Surface::draw(int src_x, int src_y, int x, int y, int w, int h)
{
CGContextSaveGState(fl_gc);
// Reset the transformation matrix back to the default identity
// matrix as otherwise we get a massive performance hit
CGContextConcatCTM(fl_gc, CGAffineTransformInvert(CGContextGetCTM(fl_gc)));
// macOS Coordinates are from bottom left, not top left
y = Fl_Window::current()->h() - (y + h);
render(fl_gc, image, kCGBlendModeCopy, 1.0,
src_x, src_y, x, y, w, h);
CGContextRestoreGState(fl_gc);
}
void Surface::draw(Surface* dst, int src_x, int src_y, int x, int y, int w, int h)
{
CGContextRef bitmap;
bitmap = make_bitmap(dst->width(), dst->height(), dst->data);
// macOS Coordinates are from bottom left, not top left
y = dst->height() - (y + h);
render(bitmap, image, kCGBlendModeCopy, 1.0,
src_x, src_y, x, y, w, h);
CGContextRelease(bitmap);
}
void Surface::blend(int src_x, int src_y, int x, int y, int w, int h, int a)
{
CGContextSaveGState(fl_gc);
// Reset the transformation matrix back to the default identity
// matrix as otherwise we get a massive performance hit
CGContextConcatCTM(fl_gc, CGAffineTransformInvert(CGContextGetCTM(fl_gc)));
// macOS Coordinates are from bottom left, not top left
y = Fl_Window::current()->h() - (y + h);
render(fl_gc, image, kCGBlendModeNormal, (CGFloat)a/255.0,
src_x, src_y, x, y, w, h);
CGContextRestoreGState(fl_gc);
}
void Surface::blend(Surface* dst, int src_x, int src_y, int x, int y, int w, int h, int a)
{
CGContextRef bitmap;
bitmap = make_bitmap(dst->width(), dst->height(), dst->data);
// macOS Coordinates are from bottom left, not top left
y = dst->height() - (y + h);
render(bitmap, image, kCGBlendModeNormal, (CGFloat)a/255.0,
src_x, src_y, x, y, w, h);
CGContextRelease(bitmap);
}
void Surface::alloc()
{
CGColorSpaceRef lut;
CGDataProviderRef provider;
data = new unsigned char[width() * height() * 4];
lut = CGDisplayCopyColorSpace(kCGDirectMainDisplay);
if (!lut) {
lut = CGColorSpaceCreateDeviceRGB();
if (!lut)
throw rdr::Exception("CGColorSpaceCreateDeviceRGB");
}
provider = CGDataProviderCreateWithData(NULL, data,
width() * height() * 4, NULL);
if (!provider)
throw rdr::Exception("CGDataProviderCreateWithData");
image = CGImageCreate(width(), height(), 8, 32, width() * 4, lut,
kCGImageAlphaPremultipliedFirst | kCGBitmapByteOrder32Little,
provider, NULL, false, kCGRenderingIntentDefault);
CGColorSpaceRelease(lut);
CGDataProviderRelease(provider);
if (!image)
throw rdr::Exception("CGImageCreate");
}
void Surface::dealloc()
{
CGImageRelease(image);
delete [] data;
}
void Surface::update(const Fl_RGB_Image* image)
{
int x, y;
const unsigned char* in;
unsigned char* out;
assert(image->w() == width());
assert(image->h() == height());
// Convert data and pre-multiply alpha
in = (const unsigned char*)image->data()[0];
out = data;
for (y = 0;y < image->h();y++) {
for (x = 0;x < image->w();x++) {
switch (image->d()) {
case 1:
*out++ = in[0];
*out++ = in[0];
*out++ = in[0];
*out++ = 0xff;
break;
case 2:
*out++ = (unsigned)in[0] * in[1] / 255;
*out++ = (unsigned)in[0] * in[1] / 255;
*out++ = (unsigned)in[0] * in[1] / 255;
*out++ = in[1];
break;
case 3:
*out++ = in[2];
*out++ = in[1];
*out++ = in[0];
*out++ = 0xff;
break;
case 4:
*out++ = (unsigned)in[2] * in[3] / 255;
*out++ = (unsigned)in[1] * in[3] / 255;
*out++ = (unsigned)in[0] * in[3] / 255;
*out++ = in[3];
break;
}
in += image->d();
}
if (image->ld() != 0)
in += image->ld() - image->w() * image->d();
}
}
|