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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
|
//
// "$Id: Fl_Shared_Image.cxx,v 1.23.2.1 2001/11/24 02:46:19 easysw Exp $"
//
// Shared image code for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2001 by Bill Spitzak and others.
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Library General Public
// License as published by the Free Software Foundation; either
// version 2 of the License, or (at your option) any later version.
//
// This library 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
// Library General Public License for more details.
//
// You should have received a copy of the GNU Library General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
// USA.
//
// Please report all bugs and problems to "fltk-bugs@fltk.org".
//
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <FL/Fl.H>
#include <FL/Fl_Shared_Image.H>
#include <FL/Fl_GIF_Image.H>
#include <FL/Fl_JPEG_Image.H>
#include <FL/Fl_PNG_Image.H>
//#include <FL/Fl_XBM_Image.H>
//#include <FL/Fl_XPM_Image.H>
//
// Global class vars...
//
Fl_Shared_Image **Fl_Shared_Image::images_ = 0; // Shared images
int Fl_Shared_Image::num_images_ = 0; // Number of shared images
int Fl_Shared_Image::alloc_images_ = 0; // Allocated shared images
//
// Typedef the C API sort function type the only way I know how...
//
extern "C" {
typedef int (*compare_func_t)(const void *, const void *);
}
//
// 'Fl_Shared_Image::compare()' - Compare two shared images...
//
int
Fl_Shared_Image::compare(Fl_Shared_Image **i0, // I - First image
Fl_Shared_Image **i1) { // I - Second image
int i = strcmp((*i0)->name(), (*i1)->name());
if (i) return i;
else if (((*i0)->w() == 0 && (*i1)->original_) ||
((*i1)->w() == 0 && (*i0)->original_)) return 0;
else if ((*i0)->w() != (*i1)->w()) return (*i0)->w() - (*i1)->w();
else return (*i0)->h() - (*i1)->h();
}
//
// 'Fl_Shared_Image::Fl_Shared_Image()' - Basic constructor.
//
Fl_Shared_Image::Fl_Shared_Image() : Fl_Image(0,0,0) {
name_ = 0;
refcount_ = 1;
original_ = 0;
image_ = 0;
alloc_image_ = 0;
}
//
// 'Fl_Shared_Image::Fl_Shared_Image()' - Add an image to the image cache.
//
Fl_Shared_Image::Fl_Shared_Image(const char *n, // I - Filename
Fl_Image *img) // I - Image
: Fl_Image(0,0,0) {
name_ = new char[strlen(n) + 1];
strcpy((char *)name_, n);
refcount_ = 1;
image_ = img;
alloc_image_ = 0;
original_ = 1;
if (!img) reload();
else update();
}
//
// 'Fl_Shared_Image::add()' - Add a shared image to the array.
//
void
Fl_Shared_Image::add() {
Fl_Shared_Image **temp; // New image pointer array...
if (num_images_ >= alloc_images_) {
// Allocate more memory...
temp = new Fl_Shared_Image *[alloc_images_ + 32];
if (alloc_images_) {
memcpy(images_, temp, sizeof(Fl_Shared_Image *));
delete[] images_;
}
images_ = temp;
alloc_images_ += 32;
}
images_[num_images_] = this;
num_images_ ++;
if (num_images_ > 1) {
qsort(images_, num_images_, sizeof(Fl_Shared_Image *),
(compare_func_t)compare);
}
}
//
// 'Fl_Shared_Image::update()' - Update the dimensions of the shared images.
//
void
Fl_Shared_Image::update() {
if (image_) {
w(image_->w());
h(image_->h());
d(image_->d());
data(image_->data(), image_->count());
}
}
//
// 'Fl_Shared_Image::~Fl_Shared_Image()' - Destroy a shared image...
//
Fl_Shared_Image::~Fl_Shared_Image() {
if (name_) delete name_;
if (alloc_image_) delete image_;
}
//
// 'Fl_Shared_Image::release()' - Release and possibly destroy a shared image.
//
void
Fl_Shared_Image::release() {
int i; // Looping var...
refcount_ --;
if (refcount_ > 0) return;
for (i = 0; i < num_images_; i ++)
if (images_[i] == this) {
num_images_ --;
if (i < num_images_) {
memcpy(images_ + i, images_ + i + 1,
(num_images_ - i) * sizeof(Fl_Shared_Image *));
}
break;
}
delete this;
if (num_images_ == 0 && images_) {
delete[] images_;
images_ = 0;
alloc_images_ = 0;
}
}
//
// 'Fl_Shared_Image::reload()' - Reload the shared image...
//
void
Fl_Shared_Image::reload() {
// Load image from disk...
FILE *fp; // File pointer
uchar header[16]; // Buffer for auto-detecting files
Fl_Image *img; // New image
if (!name_) return;
if ((fp = fopen(name_, "rb")) != NULL) {
fread(header, 1, sizeof(header), fp);
fclose(fp);
} else {
memset(header, 0, sizeof(header));
}
// Load the image as appropriate...
if (memcmp(header, "GIF87a", 6) == 0 ||
memcmp(header, "GIF89a", 6) == 0)
img = new Fl_GIF_Image(name_);
else if (memcmp(header, "\211PNG", 4) == 0)
img = new Fl_PNG_Image(name_);
else if (memcmp(header, "\377\330\377", 3) == 0 && // Start-of-Image
header[3] >= 0xe0 && header[3] <= 0xef) // APPn
img = new Fl_JPEG_Image(name_);
else
img = 0;
if (img) {
if (alloc_image_) delete image_;
image_ = img;
alloc_image_ = 1;
if ((img->w() != w() && w()) || (img->h() != h() && h())) {
// Make sure the reloaded image is the same size as the existing one.
Fl_Image *temp = img->copy(w(), h());
delete img;
img = temp;
}
update();
}
}
//
// 'Fl_Shared_Image::copy()' - Copy and resize a shared image...
//
Fl_Image *
Fl_Shared_Image::copy(int W, int H) {
Fl_Image *temp_image; // New image file
Fl_Shared_Image *temp_shared; // New shared image
// Make a copy of the image we're sharing...
if (!image_) temp_image = 0;
else temp_image = image_->copy(W, H);
// Then make a new shared image...
temp_shared = new Fl_Shared_Image();
temp_shared->name_ = new char[strlen(name_) + 1];
strcpy((char *)temp_shared->name_, name_);
temp_shared->refcount_ = 1;
temp_shared->image_ = temp_image;
temp_shared->alloc_image_ = 0;
temp_shared->update();
return temp_shared;
}
//
// 'Fl_Shared_Image::color_average()' - Blend colors...
//
void
Fl_Shared_Image::color_average(Fl_Color c, // I - Color to blend with
float i) { // I - Blend fraction
if (!image_) return;
image_->color_average(c, i);
update();
}
//
// 'Fl_Shared_Image::desaturate()' - Convert the image to grayscale...
//
void
Fl_Shared_Image::desaturate() {
if (!image_) return;
image_->desaturate();
update();
}
//
// 'Fl_Shared_Image::draw()' - Draw a shared image...
//
void
Fl_Shared_Image::draw(int X, int Y, int W, int H, int cx, int cy) {
if (image_) image_->draw(X, Y, W, H, cx, cy);
else Fl_Image::draw(X, Y, W, H, cx, cy);
}
//
// 'Fl_Shared_Image::find()' - Find a shared image...
//
Fl_Shared_Image *
Fl_Shared_Image::find(const char *n, int W, int H) {
Fl_Shared_Image *key, // Image key
**match; // Matching image
if (num_images_) {
key = new Fl_Shared_Image();
key->name_ = new char[strlen(n) + 1];
strcpy((char *)key->name_, n);
key->w(W);
key->h(H);
match = (Fl_Shared_Image **)bsearch(&key, images_, num_images_,
sizeof(Fl_Shared_Image *),
(compare_func_t)compare);
delete key;
if (match) {
(*match)->refcount_ ++;
return *match;
}
}
return 0;
}
//
// 'Fl_Shared_Image::get()' - Get a shared image...
//
Fl_Shared_Image *
Fl_Shared_Image::get(const char *n, int W, int H) {
Fl_Shared_Image *temp; // Image
if ((temp = find(n, W, H)) != NULL) return temp;
if ((temp = find(n)) == NULL) {
temp = new Fl_Shared_Image(n);
temp->add();
}
if ((temp->w() != W || temp->h() != H) && W && H) {
temp = (Fl_Shared_Image *)temp->copy(W, H);
temp->add();
}
return temp;
}
//
// End of "$Id: Fl_Shared_Image.cxx,v 1.23.2.1 2001/11/24 02:46:19 easysw Exp $".
//
|