2004-07-16 23:47:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2005-04-11 05:14:18 +04:00
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2004-07-16 23:47:03 +04:00
|
|
|
*/
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
/** \file
|
|
|
|
* Content for image/mng, image/png, and image/jng (implementation).
|
|
|
|
*/
|
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
#include <assert.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
2004-09-04 02:44:48 +04:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include "libmng.h"
|
2004-07-16 23:47:03 +04:00
|
|
|
#include "netsurf/utils/config.h"
|
|
|
|
#include "netsurf/content/content.h"
|
2004-09-04 02:44:48 +04:00
|
|
|
#include "netsurf/desktop/browser.h"
|
2004-12-09 13:30:44 +03:00
|
|
|
#include "netsurf/desktop/options.h"
|
2004-10-18 01:12:32 +04:00
|
|
|
#include "netsurf/desktop/plotters.h"
|
2004-09-04 02:44:48 +04:00
|
|
|
#include "netsurf/image/bitmap.h"
|
|
|
|
#include "netsurf/image/mng.h"
|
2004-07-16 23:47:03 +04:00
|
|
|
#include "netsurf/utils/log.h"
|
|
|
|
#include "netsurf/utils/messages.h"
|
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
|
|
|
#ifdef WITH_MNG
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* We do not currently support any form of colour/gamma correction, nor do
|
|
|
|
we support dynamic MNGs.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
static mng_bool nsmng_openstream(mng_handle mng);
|
|
|
|
static mng_bool nsmng_readdata(mng_handle mng, mng_ptr buffer, mng_uint32 size, mng_uint32 *bytesread);
|
|
|
|
static mng_bool nsmng_closestream(mng_handle mng);
|
|
|
|
static mng_bool nsmng_processheader(mng_handle mng, mng_uint32 width, mng_uint32 height);
|
|
|
|
static mng_ptr nsmng_getcanvasline(mng_handle mng, mng_uint32 line);
|
|
|
|
static mng_uint32 nsmng_gettickcount(mng_handle mng);
|
|
|
|
static mng_bool nsmng_refresh(mng_handle mng, mng_uint32 x, mng_uint32 y, mng_uint32 w, mng_uint32 h);
|
|
|
|
static mng_bool nsmng_settimer(mng_handle mng, mng_uint32 msecs);
|
|
|
|
static void nsmng_animate(void *p);
|
|
|
|
static bool nsmng_broadcast_error(struct content *c);
|
2004-08-11 20:26:13 +04:00
|
|
|
static mng_bool nsmng_errorproc(mng_handle mng, mng_int32 code,
|
|
|
|
mng_int8 severity, mng_chunkid chunktype, mng_uint32 chunkseq,
|
|
|
|
mng_int32 extra1, mng_int32 extra2, mng_pchar text);
|
2004-09-04 02:44:48 +04:00
|
|
|
#ifndef MNG_INTERNAL_MEMMNGMT
|
|
|
|
static mng_ptr nsmng_alloc(mng_size_t n);
|
|
|
|
static void nsmng_free(mng_ptr p, mng_size_t n);
|
|
|
|
#endif
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
bool nsmng_create(struct content *c, const char *params[]) {
|
2004-07-26 00:45:16 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
|
|
|
assert(params != NULL);
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
/* Initialise the library
|
2004-07-26 00:45:16 +04:00
|
|
|
*/
|
2004-09-04 02:44:48 +04:00
|
|
|
#ifdef MNG_INTERNAL_MEMMNGMT
|
2004-07-26 00:45:16 +04:00
|
|
|
c->data.mng.handle = mng_initialize(c, MNG_NULL, MNG_NULL, MNG_NULL);
|
2004-09-04 02:44:48 +04:00
|
|
|
#else
|
|
|
|
c->data.mng.handle = mng_initialize(c, nsmng_alloc, nsmng_free, MNG_NULL);
|
|
|
|
#endif
|
2004-07-26 00:45:16 +04:00
|
|
|
if (c->data.mng.handle == MNG_NULL) {
|
|
|
|
LOG(("Unable to initialise MNG library."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* We need to decode in suspension mode
|
|
|
|
*/
|
|
|
|
if (mng_set_suspensionmode(c->data.mng.handle, MNG_TRUE) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set suspension mode."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* We need to register our callbacks
|
|
|
|
*/
|
|
|
|
if (mng_setcb_openstream(c->data.mng.handle, nsmng_openstream) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set openstream callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_readdata(c->data.mng.handle, nsmng_readdata) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set readdata callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_closestream(c->data.mng.handle, nsmng_closestream) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set closestream callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_processheader(c->data.mng.handle, nsmng_processheader) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set processheader callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Register our callbacks for displaying
|
|
|
|
*/
|
|
|
|
if (mng_setcb_getcanvasline(c->data.mng.handle, nsmng_getcanvasline) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set getcanvasline callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_refresh(c->data.mng.handle, nsmng_refresh) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set refresh callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_gettickcount(c->data.mng.handle, nsmng_gettickcount) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set gettickcount callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
if (mng_setcb_settimer(c->data.mng.handle, nsmng_settimer) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set settimer callback."));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-08-11 20:26:13 +04:00
|
|
|
/* register error handling function */
|
|
|
|
if (mng_setcb_errorproc(c->data.mng.handle, nsmng_errorproc) != MNG_NOERROR) {
|
|
|
|
LOG(("Unable to set errorproc"));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Initialise the reading
|
|
|
|
*/
|
|
|
|
c->data.mng.read_start = true;
|
|
|
|
c->data.mng.read_resume = false;
|
|
|
|
c->data.mng.read_size = 0;
|
|
|
|
c->data.mng.waiting = false;
|
|
|
|
return true;
|
2004-07-16 23:47:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* START OF CALLBACKS REQUIRED FOR READING
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
mng_bool nsmng_openstream(mng_handle mng) {
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
2004-07-26 00:45:16 +04:00
|
|
|
return MNG_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mng_bool nsmng_readdata(mng_handle mng, mng_ptr buffer, mng_uint32 size, mng_uint32 *bytesread) {
|
|
|
|
struct content *c;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
assert(buffer != NULL);
|
|
|
|
assert(bytesread != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Get our content back
|
|
|
|
*/
|
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Copy any data we have (maximum of 'size')
|
|
|
|
*/
|
|
|
|
*bytesread = ((c->source_size - c->data.mng.read_size) < size) ?
|
|
|
|
(c->source_size - c->data.mng.read_size) : size;
|
2004-08-11 20:26:13 +04:00
|
|
|
|
|
|
|
LOG(("Read %d, processing %p", *bytesread, mng));
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
if ((*bytesread) > 0) {
|
|
|
|
memcpy(buffer, c->source_data + c->data.mng.read_size, *bytesread);
|
|
|
|
c->data.mng.read_size += *bytesread;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return success
|
|
|
|
*/
|
|
|
|
return MNG_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mng_bool nsmng_closestream(mng_handle mng) {
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
2004-07-26 00:45:16 +04:00
|
|
|
return MNG_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
mng_bool nsmng_processheader(mng_handle mng, mng_uint32 width, mng_uint32 height) {
|
|
|
|
struct content *c;
|
|
|
|
union content_msg_data msg_data;
|
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* This function is called when the header has been read and we know
|
|
|
|
the dimensions of the canvas.
|
|
|
|
*/
|
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
|
|
|
|
2005-01-26 00:42:37 +03:00
|
|
|
LOG(("processing header (%p) %d, %d", c, width, height));
|
|
|
|
|
2005-04-29 05:35:52 +04:00
|
|
|
c->bitmap = bitmap_create(width, height, false);
|
2004-09-04 02:44:48 +04:00
|
|
|
if (!c->bitmap) {
|
2004-07-26 00:45:16 +04:00
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
LOG(("Insufficient memory to create canvas."));
|
|
|
|
return MNG_FALSE;
|
|
|
|
}
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Initialise the content size
|
|
|
|
*/
|
|
|
|
c->width = width;
|
|
|
|
c->height = height;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Set the canvas style
|
|
|
|
*/
|
|
|
|
if (mng_set_canvasstyle(mng, MNG_CANVAS_RGBA8) != MNG_NOERROR) {
|
|
|
|
LOG(("Error setting canvas style."));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return success
|
|
|
|
*/
|
|
|
|
return MNG_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* END OF CALLBACKS REQUIRED FOR READING
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
bool nsmng_process_data(struct content *c, char *data, unsigned int size) {
|
2004-07-26 00:45:16 +04:00
|
|
|
mng_retcode status;
|
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
|
|
|
assert(data != NULL);
|
|
|
|
|
|
|
|
/* We only need to do any processing if we're starting/resuming reading.
|
|
|
|
*/
|
2004-07-26 00:45:16 +04:00
|
|
|
if ((!c->data.mng.read_resume) && (!c->data.mng.read_start)) return true;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Try to start processing, or process some more data
|
|
|
|
*/
|
|
|
|
if (c->data.mng.read_start) {
|
|
|
|
status = mng_read(c->data.mng.handle);
|
|
|
|
c->data.mng.read_start = false;
|
|
|
|
} else {
|
|
|
|
status = mng_read_resume(c->data.mng.handle);
|
|
|
|
}
|
|
|
|
c->data.mng.read_resume = (status == MNG_NEEDMOREDATA);
|
|
|
|
if ((status != MNG_NOERROR) && (status != MNG_NEEDMOREDATA)) {
|
|
|
|
LOG(("Failed to start/continue reading (%i).", status));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Continue onwards
|
2004-07-30 20:14:44 +04:00
|
|
|
*/
|
2004-07-16 23:47:03 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool nsmng_convert(struct content *c, int width, int height) {
|
2004-07-26 00:45:16 +04:00
|
|
|
mng_retcode status;
|
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
union content_msg_data msg_data;
|
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2005-01-26 00:42:37 +03:00
|
|
|
LOG(("Converting %p '%s'", c, c->url));
|
|
|
|
|
|
|
|
/* by this point, the png should have been parsed
|
|
|
|
* and the bitmap created, so ensure that's the case
|
|
|
|
*/
|
|
|
|
if (!c->bitmap)
|
|
|
|
return nsmng_broadcast_error(c);
|
2004-07-26 00:45:16 +04:00
|
|
|
|
|
|
|
/* Set the title
|
|
|
|
*/
|
|
|
|
c->title = malloc(100);
|
2005-01-02 07:04:41 +03:00
|
|
|
if (!c->title) {
|
|
|
|
msg_data.error = messages_get("NoMemory");
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (c->type == CONTENT_MNG) {
|
|
|
|
snprintf(c->title, 100, messages_get("MNGTitle"),
|
|
|
|
c->width, c->height, c->source_size);
|
|
|
|
} else if (c->type == CONTENT_PNG) {
|
|
|
|
snprintf(c->title, 100, messages_get("PNGTitle"),
|
|
|
|
c->width, c->height, c->source_size);
|
|
|
|
} else {
|
|
|
|
snprintf(c->title, 100, messages_get("JNGTitle"),
|
|
|
|
c->width, c->height, c->source_size);
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
2005-01-02 07:04:41 +03:00
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
c->size += c->width * c->height * 4 + 100;
|
2004-07-26 00:45:16 +04:00
|
|
|
c->status = CONTENT_STATUS_DONE;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Start displaying
|
|
|
|
*/
|
|
|
|
status = mng_display(c->data.mng.handle);
|
|
|
|
if ((status != MNG_NOERROR) && (status != MNG_NEEDTIMERWAIT)) {
|
|
|
|
LOG(("Unable to start display (%i)", status));
|
|
|
|
return nsmng_broadcast_error(c);
|
|
|
|
}
|
2004-10-18 01:12:32 +04:00
|
|
|
|
2004-10-05 03:54:42 +04:00
|
|
|
/* Optimise the plotting of JNG/PNGs
|
|
|
|
*/
|
2004-12-16 17:12:04 +03:00
|
|
|
c->data.mng.opaque_test_pending = (c->type == CONTENT_PNG) || (c->type == CONTENT_JNG);
|
2005-04-29 05:35:52 +04:00
|
|
|
if (c->data.mng.opaque_test_pending)
|
|
|
|
bitmap_set_opaque(c->bitmap, false);
|
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* START OF CALLBACKS REQUIRED FOR DISPLAYING
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
mng_ptr nsmng_getcanvasline(mng_handle mng, mng_uint32 line) {
|
|
|
|
struct content *c;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Get our content back
|
|
|
|
*/
|
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Calculate the address
|
|
|
|
*/
|
2004-09-04 02:44:48 +04:00
|
|
|
return bitmap_get_buffer(c->bitmap) +
|
|
|
|
bitmap_get_rowstride(c->bitmap) * line;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
/**
|
|
|
|
* Get the wall-clock time in milliseconds since some fixed time.
|
|
|
|
*/
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
mng_uint32 nsmng_gettickcount(mng_handle mng) {
|
2004-09-04 02:44:48 +04:00
|
|
|
static bool start = true;
|
|
|
|
static time_t t0;
|
|
|
|
struct timeval tv;
|
|
|
|
struct timezone tz;
|
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
gettimeofday(&tv, &tz);
|
|
|
|
if (start) {
|
|
|
|
t0 = tv.tv_sec;
|
|
|
|
start = false;
|
|
|
|
}
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
return (tv.tv_sec - t0) * 1000 + tv.tv_usec / 1000;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
|
2004-09-04 02:44:48 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
mng_bool nsmng_refresh(mng_handle mng, mng_uint32 x, mng_uint32 y, mng_uint32 w, mng_uint32 h) {
|
|
|
|
union content_msg_data data;
|
|
|
|
struct content *c;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Get our content back
|
|
|
|
*/
|
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
2004-07-26 00:45:16 +04:00
|
|
|
|
|
|
|
/* Set the minimum redraw area
|
|
|
|
*/
|
|
|
|
data.redraw.x = x;
|
|
|
|
data.redraw.y = y;
|
|
|
|
data.redraw.width = w;
|
|
|
|
data.redraw.height = h;
|
|
|
|
|
|
|
|
/* Set the redraw area to the whole canvas to ensure that if we can redraw something
|
|
|
|
to trigger animation later then we do
|
|
|
|
*/
|
|
|
|
/* data.redraw.x = 0;
|
|
|
|
data.redraw.y = 0;
|
|
|
|
data.redraw.width = c->width;
|
|
|
|
data.redraw.height = c->height;
|
|
|
|
*/
|
|
|
|
/* Always redraw everything
|
|
|
|
*/
|
|
|
|
data.redraw.full_redraw = true;
|
|
|
|
|
|
|
|
/* Set the object characteristics
|
|
|
|
*/
|
|
|
|
data.redraw.object = c;
|
|
|
|
data.redraw.object_x = 0;
|
|
|
|
data.redraw.object_y = 0;
|
|
|
|
data.redraw.object_width = c->width;
|
|
|
|
data.redraw.object_height = c->height;
|
|
|
|
|
|
|
|
content_broadcast(c, CONTENT_MSG_REDRAW, data);
|
2004-07-30 20:14:44 +04:00
|
|
|
return MNG_TRUE;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
mng_bool nsmng_settimer(mng_handle mng, mng_uint32 msecs) {
|
|
|
|
struct content *c;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Get our content back
|
|
|
|
*/
|
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Perform the scheduling
|
|
|
|
*/
|
|
|
|
schedule(msecs / 10, nsmng_animate, c);
|
2004-07-30 20:14:44 +04:00
|
|
|
return MNG_TRUE;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* END OF CALLBACKS REQUIRED FOR DISPLAYING
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
void nsmng_destroy(struct content *c) {
|
2005-01-02 07:04:41 +03:00
|
|
|
|
|
|
|
assert (c != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Cleanup the MNG structure and release the canvas memory
|
|
|
|
*/
|
|
|
|
schedule_remove(nsmng_animate, c);
|
|
|
|
mng_cleanup(&c->data.mng.handle);
|
2004-09-04 02:44:48 +04:00
|
|
|
if (c->bitmap)
|
|
|
|
bitmap_destroy(c->bitmap);
|
2004-07-30 20:14:44 +04:00
|
|
|
free(c->title);
|
2004-07-16 23:47:03 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-11 20:26:13 +04:00
|
|
|
bool nsmng_redraw(struct content *c, int x, int y,
|
2004-07-16 23:47:03 +04:00
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
2004-08-15 23:06:24 +04:00
|
|
|
float scale, unsigned long background_colour)
|
|
|
|
{
|
|
|
|
bool ret;
|
2005-01-02 07:04:41 +03:00
|
|
|
|
2005-04-11 05:14:18 +04:00
|
|
|
if ((c->bitmap) && (c->data.mng.opaque_test_pending)) {
|
2004-12-16 17:12:04 +03:00
|
|
|
bitmap_set_opaque(c->bitmap, bitmap_test_opaque(c->bitmap));
|
2005-04-11 05:14:18 +04:00
|
|
|
c->data.mng.opaque_test_pending = false;
|
|
|
|
}
|
2004-07-16 23:47:03 +04:00
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
|
|
|
|
2004-10-18 01:12:32 +04:00
|
|
|
ret = plot.bitmap(x, y, width, height,
|
|
|
|
c->bitmap, background_colour);
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* Check if we need to restart the animation
|
|
|
|
*/
|
2004-12-09 13:30:44 +03:00
|
|
|
if ((c->data.mng.waiting) && (option_animate_images))
|
|
|
|
nsmng_animate(c);
|
2004-08-11 20:26:13 +04:00
|
|
|
|
2004-08-15 23:06:24 +04:00
|
|
|
return ret;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Animates to the next frame
|
|
|
|
*/
|
|
|
|
void nsmng_animate(void *p) {
|
2005-01-02 07:04:41 +03:00
|
|
|
struct content *c;
|
|
|
|
|
|
|
|
assert(p != NULL);
|
|
|
|
|
|
|
|
c = (struct content *)p;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
/* If we used the last animation we advance, if not we try again later
|
|
|
|
*/
|
|
|
|
if (c->user_list->next == NULL) {
|
|
|
|
c->data.mng.waiting = true;
|
|
|
|
} else {
|
|
|
|
c->data.mng.waiting = false;
|
|
|
|
mng_display_resume(c->data.mng.handle);
|
2005-04-11 05:14:18 +04:00
|
|
|
c->data.mng.opaque_test_pending = true;
|
2004-07-26 00:45:16 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Broadcasts an error message and returns false
|
|
|
|
*
|
|
|
|
* \param c the content to broadcast for
|
|
|
|
* \return false
|
|
|
|
*/
|
|
|
|
bool nsmng_broadcast_error(struct content *c) {
|
|
|
|
union content_msg_data msg_data;
|
2005-01-02 07:04:41 +03:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2004-07-26 00:45:16 +04:00
|
|
|
if (c->type == CONTENT_MNG) {
|
|
|
|
msg_data.error = messages_get("MNGError");
|
|
|
|
} else if (c->type == CONTENT_PNG) {
|
|
|
|
msg_data.error = messages_get("PNGError");
|
|
|
|
} else {
|
|
|
|
msg_data.error = messages_get("JNGError");
|
|
|
|
}
|
|
|
|
content_broadcast(c, CONTENT_MSG_ERROR, msg_data);
|
|
|
|
return false;
|
2004-07-30 20:14:44 +04:00
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
}
|
2004-08-11 20:26:13 +04:00
|
|
|
|
|
|
|
mng_bool nsmng_errorproc(mng_handle mng, mng_int32 code,
|
|
|
|
mng_int8 severity,
|
|
|
|
mng_chunkid chunktype, mng_uint32 chunkseq,
|
|
|
|
mng_int32 extra1, mng_int32 extra2, mng_pchar text)
|
|
|
|
{
|
|
|
|
struct content *c;
|
|
|
|
char chunk[5];
|
|
|
|
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(mng != NULL);
|
|
|
|
|
2004-08-11 20:26:13 +04:00
|
|
|
c = (struct content *)mng_get_userdata(mng);
|
2005-01-02 07:04:41 +03:00
|
|
|
assert(c != NULL);
|
2004-08-11 20:26:13 +04:00
|
|
|
|
|
|
|
chunk[0] = (char)((chunktype >> 24) & 0xFF);
|
|
|
|
chunk[1] = (char)((chunktype >> 16) & 0xFF);
|
|
|
|
chunk[2] = (char)((chunktype >> 8) & 0xFF);
|
|
|
|
chunk[3] = (char)((chunktype ) & 0xFF);
|
|
|
|
chunk[4] = '\0';
|
|
|
|
|
|
|
|
LOG(("error playing '%s' chunk %s (%d):", c->url, chunk, chunkseq));
|
|
|
|
LOG(("code %d severity %d extra1 %d extra2 %d text:'%s'", code,
|
|
|
|
severity, extra1, extra2, text));
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2004-09-04 02:44:48 +04:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef MNG_INTERNAL_MEMMNGMT
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memory allocation callback for libmng.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mng_ptr nsmng_alloc(mng_size_t n)
|
|
|
|
{
|
|
|
|
return calloc(1, n);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Memory free callback for libmng.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void nsmng_free(mng_ptr p, mng_size_t n)
|
|
|
|
{
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2004-07-16 23:47:03 +04:00
|
|
|
#endif
|