2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
2004-03-19 21:14:50 +03:00
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2003-07-19 01:02:29 +04:00
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
2004-03-18 00:05:44 +03:00
|
|
|
* Copyright 2004 Richard Wilson <not_ginger_matt@sourceforge.net>
|
2003-06-05 17:24:28 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
2003-07-19 01:02:29 +04:00
|
|
|
#include <stdbool.h>
|
2003-06-05 17:24:28 +04:00
|
|
|
#include <stdlib.h>
|
2004-03-13 20:59:04 +03:00
|
|
|
#include <swis.h>
|
2004-03-19 21:14:50 +03:00
|
|
|
#include "oslib/osfile.h"
|
2003-06-05 17:24:28 +04:00
|
|
|
#include "oslib/osspriteop.h"
|
2004-01-05 05:10:59 +03:00
|
|
|
#include "netsurf/utils/config.h"
|
2003-06-05 17:24:28 +04:00
|
|
|
#include "netsurf/content/content.h"
|
|
|
|
#include "netsurf/riscos/gif.h"
|
2004-04-07 03:13:25 +04:00
|
|
|
#include "netsurf/riscos/gifread.h"
|
2004-03-21 15:50:10 +03:00
|
|
|
#include "netsurf/riscos/gui.h"
|
2004-03-13 20:59:04 +03:00
|
|
|
#include "netsurf/riscos/options.h"
|
2004-03-09 15:58:57 +03:00
|
|
|
#include "netsurf/riscos/tinct.h"
|
2003-06-05 17:24:28 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
2004-06-11 00:41:26 +04:00
|
|
|
#include "netsurf/utils/messages.h"
|
2003-06-05 17:24:28 +04:00
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
2004-03-18 00:05:44 +03:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* GIF FUNCTIONALITY
|
|
|
|
=================
|
2004-03-18 00:05:44 +03:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
All GIFs are dynamically decompressed using the routines that gifread.c
|
|
|
|
provides. Whilst this allows support for progressive decoding, it is
|
|
|
|
not implemented here as NetSurf currently does not provide such support.
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
[rjw] - Sun 4th April 2004
|
2004-03-18 00:05:44 +03:00
|
|
|
*/
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#ifdef WITH_GIF
|
|
|
|
|
2004-03-21 15:50:10 +03:00
|
|
|
static void nsgif_animate(void *p);
|
2003-06-05 17:24:28 +04:00
|
|
|
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool nsgif_create(struct content *c, const char *params[]) {
|
|
|
|
union content_msg_data msg_data;
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Initialise our data structure
|
|
|
|
*/
|
2004-06-11 00:41:26 +04:00
|
|
|
c->data.gif.gif = calloc(sizeof(gif_animation), 1);
|
|
|
|
if (!c->data.gif.gif) {
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return false;
|
|
|
|
}
|
2004-04-07 03:13:25 +04:00
|
|
|
c->data.gif.current_frame = 0;
|
2004-06-11 00:41:26 +04:00
|
|
|
return true;
|
2004-03-19 21:14:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool nsgif_convert(struct content *c, int iwidth, int iheight) {
|
|
|
|
int res;
|
2004-04-07 03:13:25 +04:00
|
|
|
struct gif_animation *gif;
|
2004-06-11 00:41:26 +04:00
|
|
|
union content_msg_data msg_data;
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Create our animation
|
2004-03-19 21:14:50 +03:00
|
|
|
*/
|
2004-04-07 03:13:25 +04:00
|
|
|
gif = c->data.gif.gif;
|
|
|
|
gif->gif_data = c->source_data;
|
|
|
|
gif->buffer_size = c->source_size;
|
|
|
|
gif->buffer_position = 0; // Paranoid
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Initialise the GIF
|
2004-03-19 21:14:50 +03:00
|
|
|
*/
|
2004-06-11 00:41:26 +04:00
|
|
|
res = gif_initialise(gif);
|
|
|
|
if (res < 0) {
|
|
|
|
if (res == GIF_INSUFFICIENT_MEMORY) {
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
} else {
|
|
|
|
msg_data.error = messages_get("BadGIF");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-05-09 20:12:24 +04:00
|
|
|
/* Abort on bad GIFs
|
|
|
|
*/
|
2004-06-11 00:41:26 +04:00
|
|
|
if ((gif->frame_count_partial == 0) || (gif->width == 0) ||
|
|
|
|
(gif->height == 0)) {
|
|
|
|
msg_data.error = messages_get("BadGIF");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
|
|
|
}
|
2004-05-09 20:12:24 +04:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Store our content width
|
2004-03-19 21:14:50 +03:00
|
|
|
*/
|
2004-04-07 03:13:25 +04:00
|
|
|
c->width = gif->width;
|
|
|
|
c->height = gif->height;
|
2004-03-19 21:14:50 +03:00
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
/* Initialise the first frame so if we try to use the image data directly prior to
|
|
|
|
a plot we get some sensible data
|
|
|
|
*/
|
|
|
|
res = gif_decode_frame(c->data.gif.gif, 0);
|
|
|
|
if (res < 0 && res != GIF_INSUFFICIENT_FRAME_DATA) {
|
|
|
|
msg_data.error = messages_get("BadGIF");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Schedule the animation if we have one
|
2004-03-19 21:14:50 +03:00
|
|
|
*/
|
2004-04-07 03:13:25 +04:00
|
|
|
if (gif->frame_count > 1) {
|
2004-05-09 20:12:24 +04:00
|
|
|
schedule(gif->frames[0].frame_delay, nsgif_animate, c);
|
2004-03-19 21:14:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Exit as a success
|
|
|
|
*/
|
2004-04-07 03:13:25 +04:00
|
|
|
c->status = CONTENT_STATUS_DONE;
|
2004-06-11 00:41:26 +04:00
|
|
|
return true;
|
2003-06-05 17:24:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
void nsgif_redraw(struct content *c, int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
2004-03-18 00:05:44 +03:00
|
|
|
float scale) {
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
int previous_frame;
|
2004-05-10 01:05:24 +04:00
|
|
|
unsigned int frame, current_frame;
|
|
|
|
unsigned int tinct_options;
|
2004-04-25 03:42:32 +04:00
|
|
|
|
2004-05-10 01:05:24 +04:00
|
|
|
/* If we have a gui_window then we work from there, if not we use the global
|
|
|
|
settings. We default to the first image if we don't have a GUI as we are
|
|
|
|
drawing a thumbnail unless something has gone very wrong somewhere else.
|
|
|
|
*/
|
|
|
|
if (ro_gui_current_redraw_gui) {
|
2004-06-10 00:05:14 +04:00
|
|
|
tinct_options = (ro_gui_current_redraw_gui->option_filter_sprites?tinct_BILINEAR_FILTER:0) |
|
|
|
|
(ro_gui_current_redraw_gui->option_dither_sprites?tinct_DITHER:0);
|
2004-05-10 01:05:24 +04:00
|
|
|
if (ro_gui_current_redraw_gui->option_animate_images) {
|
|
|
|
current_frame = c->data.gif.current_frame;
|
|
|
|
} else {
|
2004-06-01 01:51:35 +04:00
|
|
|
current_frame = 0;
|
2004-05-10 01:05:24 +04:00
|
|
|
}
|
|
|
|
} else {
|
2004-06-01 01:51:35 +04:00
|
|
|
if (c->data.gif.gif->loop_count == 0) {
|
|
|
|
current_frame = 0;
|
|
|
|
} else {
|
|
|
|
current_frame = c->data.gif.gif->frame_count - 1;
|
|
|
|
}
|
2004-06-10 00:05:14 +04:00
|
|
|
tinct_options = (option_filter_sprites?tinct_BILINEAR_FILTER:0) |
|
|
|
|
(option_dither_sprites?tinct_DITHER:0);
|
2004-05-10 01:05:24 +04:00
|
|
|
}
|
|
|
|
|
2004-04-07 03:13:25 +04:00
|
|
|
/* Decode from the last frame to the current frame
|
2004-03-19 21:14:50 +03:00
|
|
|
*/
|
2004-05-10 01:05:24 +04:00
|
|
|
if (current_frame < c->data.gif.gif->decoded_frame) {
|
2004-05-05 20:33:15 +04:00
|
|
|
previous_frame = 0;
|
2004-05-10 01:05:24 +04:00
|
|
|
} else {
|
2004-05-05 20:33:15 +04:00
|
|
|
previous_frame = c->data.gif.gif->decoded_frame + 1;
|
|
|
|
|
2004-05-10 01:05:24 +04:00
|
|
|
}
|
|
|
|
for (frame = previous_frame; frame <= current_frame; frame++) {
|
2004-04-07 03:13:25 +04:00
|
|
|
gif_decode_frame(c->data.gif.gif, frame);
|
2004-03-18 00:05:44 +03:00
|
|
|
}
|
2004-03-13 20:30:56 +03:00
|
|
|
|
2004-03-09 15:58:57 +03:00
|
|
|
/* Tinct currently only handles 32bpp sprites that have an embedded alpha mask. Any
|
|
|
|
sprites not matching the required specifications are ignored. See the Tinct
|
|
|
|
documentation for further information.
|
|
|
|
*/
|
2004-03-18 00:05:44 +03:00
|
|
|
_swix(Tinct_PlotScaledAlpha, _IN(2) | _IN(3) | _IN(4) | _IN(5) | _IN(6) | _IN(7),
|
2004-04-07 03:13:25 +04:00
|
|
|
(char *)c->data.gif.gif->frame_image,
|
2004-03-09 15:58:57 +03:00
|
|
|
x, (int)(y - height),
|
|
|
|
width, height,
|
2004-05-10 01:05:24 +04:00
|
|
|
tinct_options);
|
2004-03-18 00:05:44 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-03-21 15:57:14 +03:00
|
|
|
void nsgif_destroy(struct content *c)
|
|
|
|
{
|
2004-03-18 00:05:44 +03:00
|
|
|
/* Free all the associated memory buffers
|
|
|
|
*/
|
2004-03-21 15:57:14 +03:00
|
|
|
schedule_remove(nsgif_animate, c);
|
2004-04-07 03:13:25 +04:00
|
|
|
gif_finalise(c->data.gif.gif);
|
2004-06-11 00:41:26 +04:00
|
|
|
free(c->data.gif.gif);
|
2004-03-18 00:05:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** Performs any necessary animation.
|
|
|
|
|
|
|
|
@param c The content to animate
|
2004-03-13 21:22:22 +03:00
|
|
|
*/
|
2004-03-21 15:50:10 +03:00
|
|
|
void nsgif_animate(void *p)
|
|
|
|
{
|
|
|
|
struct content *c = p;
|
2004-04-25 03:42:32 +04:00
|
|
|
union content_msg_data data;
|
2004-05-25 00:50:57 +04:00
|
|
|
int delay;
|
2004-05-11 02:53:36 +04:00
|
|
|
|
2004-05-11 02:14:33 +04:00
|
|
|
/* Advance by a frame, updating the loop count accordingly
|
|
|
|
*/
|
2004-03-21 15:50:10 +03:00
|
|
|
c->data.gif.current_frame++;
|
2004-04-07 03:13:25 +04:00
|
|
|
if (c->data.gif.current_frame == c->data.gif.gif->frame_count) {
|
2004-05-10 01:05:24 +04:00
|
|
|
c->data.gif.current_frame = 0;
|
2004-05-11 02:53:36 +04:00
|
|
|
|
2004-05-11 02:14:33 +04:00
|
|
|
/* A loop count of 0 has a special meaning of infinite
|
|
|
|
*/
|
|
|
|
if (c->data.gif.gif->loop_count != 0) {
|
|
|
|
c->data.gif.gif->loop_count--;
|
|
|
|
if (c->data.gif.gif->loop_count == 0) {
|
2004-05-11 02:53:36 +04:00
|
|
|
c->data.gif.current_frame = c->data.gif.gif->frame_count - 1;
|
2004-05-11 02:14:33 +04:00
|
|
|
c->data.gif.gif->loop_count = -1;
|
|
|
|
}
|
|
|
|
}
|
2004-03-21 15:50:10 +03:00
|
|
|
}
|
|
|
|
|
2004-05-11 02:14:33 +04:00
|
|
|
|
|
|
|
/* Continue animating if we should
|
|
|
|
*/
|
|
|
|
if (c->data.gif.gif->loop_count >= 0) {
|
2004-05-25 00:50:57 +04:00
|
|
|
delay = c->data.gif.gif->frames[c->data.gif.current_frame].frame_delay;
|
|
|
|
if (delay < option_minimum_gif_delay) delay = option_minimum_gif_delay;
|
|
|
|
schedule(delay, nsgif_animate, c);
|
2004-05-11 02:14:33 +04:00
|
|
|
}
|
2004-03-21 15:50:10 +03:00
|
|
|
|
2004-05-10 01:05:24 +04:00
|
|
|
/* area within gif to redraw */
|
2004-05-09 20:12:24 +04:00
|
|
|
data.redraw.x = c->data.gif.gif->frames[c->data.gif.current_frame].redraw_x;
|
|
|
|
data.redraw.y = c->data.gif.gif->frames[c->data.gif.current_frame].redraw_y;
|
|
|
|
data.redraw.width = c->data.gif.gif->frames[c->data.gif.current_frame].redraw_width;
|
|
|
|
data.redraw.height = c->data.gif.gif->frames[c->data.gif.current_frame].redraw_height;
|
2004-04-25 03:42:32 +04:00
|
|
|
|
|
|
|
/* redraw background (true) or plot on top (false) */
|
2004-05-09 20:12:24 +04:00
|
|
|
data.redraw.full_redraw =
|
|
|
|
c->data.gif.gif->frames[c->data.gif.current_frame].redraw_required;
|
2004-04-25 03:42:32 +04:00
|
|
|
|
|
|
|
/* other data */
|
|
|
|
data.redraw.object = c;
|
|
|
|
data.redraw.object_x = 0;
|
|
|
|
data.redraw.object_y = 0;
|
2004-04-26 17:47:51 +04:00
|
|
|
data.redraw.object_width = c->width;
|
|
|
|
data.redraw.object_height = c->height;
|
2004-05-25 00:50:57 +04:00
|
|
|
|
2004-04-25 03:42:32 +04:00
|
|
|
content_broadcast(c, CONTENT_MSG_REDRAW, data);
|
2004-03-21 15:50:10 +03:00
|
|
|
}
|
|
|
|
|
2004-01-05 05:10:59 +03:00
|
|
|
#endif
|