2004-02-25 18:12:58 +03:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
2004-04-10 22:19:35 +04:00
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2004-02-25 18:12:58 +03:00
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2005-06-23 21:24:23 +04:00
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Page thumbnail creation (implementation).
|
|
|
|
*
|
|
|
|
* Thumbnails are created by redirecting output to a sprite and rendering the
|
|
|
|
* page at a small scale.
|
|
|
|
*/
|
|
|
|
|
2005-09-08 00:22:33 +04:00
|
|
|
#include <assert.h>
|
2004-04-10 22:19:35 +04:00
|
|
|
#include <string.h>
|
|
|
|
#include <swis.h>
|
2005-02-20 16:19:19 +03:00
|
|
|
#include "rufl.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "oslib/colourtrans.h"
|
2004-04-10 22:19:35 +04:00
|
|
|
#include "oslib/osfile.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "oslib/osspriteop.h"
|
|
|
|
#include "netsurf/content/content.h"
|
2005-06-23 21:24:23 +04:00
|
|
|
#include "netsurf/content/url_store.h"
|
2004-10-20 01:16:12 +04:00
|
|
|
#include "netsurf/desktop/plotters.h"
|
2005-06-23 21:24:23 +04:00
|
|
|
#include "netsurf/image/bitmap.h"
|
2004-11-03 05:29:01 +03:00
|
|
|
#include "netsurf/render/font.h"
|
2005-06-23 21:24:23 +04:00
|
|
|
#include "netsurf/riscos/bitmap.h"
|
2004-10-20 01:16:12 +04:00
|
|
|
#include "netsurf/riscos/gui.h"
|
2004-04-10 22:19:35 +04:00
|
|
|
#include "netsurf/riscos/options.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "netsurf/riscos/thumbnail.h"
|
2004-04-10 22:19:35 +04:00
|
|
|
#include "netsurf/riscos/tinct.h"
|
2004-02-25 18:12:58 +03:00
|
|
|
#include "netsurf/utils/log.h"
|
|
|
|
|
|
|
|
|
2004-04-10 22:19:35 +04:00
|
|
|
/* Whether we can use 32bpp sprites
|
|
|
|
*/
|
|
|
|
static int thumbnail_32bpp_available = -1;
|
|
|
|
|
|
|
|
|
|
|
|
/* Sprite output context saving
|
|
|
|
*/
|
|
|
|
struct thumbnail_save_area {
|
|
|
|
osspriteop_save_area *save_area;
|
|
|
|
int context1;
|
|
|
|
int context2;
|
|
|
|
int context3;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* Internal prototypes
|
|
|
|
*/
|
2005-06-23 21:24:23 +04:00
|
|
|
static osspriteop_area *thumbnail_create_8bpp(struct bitmap *bitmap);
|
2004-04-10 22:19:35 +04:00
|
|
|
static void thumbnail_test(void);
|
2005-06-23 21:24:23 +04:00
|
|
|
static struct thumbnail_save_area* thumbnail_switch_output(
|
|
|
|
osspriteop_area *sprite_area,
|
|
|
|
osspriteop_header *sprite_header);
|
2004-04-10 22:19:35 +04:00
|
|
|
static void thumbnail_restore_output(struct thumbnail_save_area *save_area);
|
2004-05-21 14:29:54 +04:00
|
|
|
|
2004-04-10 22:19:35 +04:00
|
|
|
|
2004-02-25 18:12:58 +03:00
|
|
|
/**
|
|
|
|
* Create a thumbnail of a page.
|
|
|
|
*
|
|
|
|
* \param content content structure to thumbnail
|
2005-06-23 21:24:23 +04:00
|
|
|
* \param bitmap the bitmap to draw to
|
|
|
|
* \param url the URL the thumnail belongs to, or NULL
|
2004-02-25 18:12:58 +03:00
|
|
|
*/
|
2005-06-23 21:24:23 +04:00
|
|
|
bool thumbnail_create(struct content *content, struct bitmap *bitmap,
|
2005-09-08 00:22:33 +04:00
|
|
|
const char *url)
|
|
|
|
{
|
2004-11-03 02:23:07 +03:00
|
|
|
float scale = 1.0;
|
2004-04-10 22:19:35 +04:00
|
|
|
struct thumbnail_save_area *save_area;
|
2005-06-23 21:24:23 +04:00
|
|
|
osspriteop_area *sprite_area = NULL;
|
|
|
|
osspriteop_header *sprite_header = NULL;
|
|
|
|
_kernel_oserror *error;
|
|
|
|
|
2005-09-08 00:22:33 +04:00
|
|
|
assert(content);
|
|
|
|
assert(bitmap);
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* check if we have access to 32bpp sprites natively */
|
|
|
|
if (thumbnail_32bpp_available == -1)
|
|
|
|
thumbnail_test();
|
|
|
|
|
|
|
|
/* if we don't support 32bpp sprites then we redirect to an 8bpp
|
|
|
|
* image and then convert back. */
|
|
|
|
if (thumbnail_32bpp_available != 1) {
|
2005-09-08 00:22:33 +04:00
|
|
|
sprite_area = thumbnail_create_8bpp(bitmap);
|
|
|
|
if (!sprite_area)
|
|
|
|
return false;
|
2005-06-23 21:24:23 +04:00
|
|
|
sprite_header = (osspriteop_header *)(sprite_area + 1);
|
2004-11-11 01:39:33 +03:00
|
|
|
} else {
|
2005-09-08 00:22:33 +04:00
|
|
|
char *pixbufp = bitmap_get_buffer(bitmap);
|
|
|
|
if (!pixbufp || !bitmap->sprite_area)
|
|
|
|
return false;
|
2005-06-23 21:24:23 +04:00
|
|
|
sprite_area = bitmap->sprite_area;
|
|
|
|
sprite_header = (osspriteop_header *)(sprite_area + 1);
|
2004-11-11 01:39:33 +03:00
|
|
|
}
|
2004-05-21 14:29:54 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* set up the plotters */
|
2004-11-03 02:23:07 +03:00
|
|
|
plot = ro_plotters;
|
|
|
|
ro_plot_origin_x = 0;
|
2005-06-23 21:24:23 +04:00
|
|
|
ro_plot_origin_y = bitmap->height * 2;
|
|
|
|
if (content->width)
|
|
|
|
scale = (float)bitmap->width / (float)content->width;
|
2004-11-03 02:23:07 +03:00
|
|
|
ro_plot_set_scale(scale);
|
2005-04-15 09:54:44 +04:00
|
|
|
current_redraw_browser = NULL; /* no selection */
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* switch output and redraw */
|
|
|
|
save_area = thumbnail_switch_output(sprite_area, sprite_header);
|
2005-09-08 00:22:33 +04:00
|
|
|
if (!save_area) {
|
2005-06-23 21:24:23 +04:00
|
|
|
if (thumbnail_32bpp_available != 1)
|
|
|
|
free(sprite_area);
|
|
|
|
return false;
|
2004-11-03 02:23:07 +03:00
|
|
|
}
|
2005-06-23 21:24:23 +04:00
|
|
|
rufl_invalidate_cache();
|
2004-11-03 02:23:07 +03:00
|
|
|
colourtrans_set_gcol(os_COLOUR_WHITE, colourtrans_SET_BG,
|
|
|
|
os_ACTION_OVERWRITE, 0);
|
|
|
|
os_clg();
|
2005-06-23 21:24:23 +04:00
|
|
|
content_redraw(content, 0, 0, bitmap->width, bitmap->height,
|
|
|
|
0, 0, bitmap->width, bitmap->height, scale, 0xFFFFFF);
|
2004-11-03 02:23:07 +03:00
|
|
|
thumbnail_restore_output(save_area);
|
2005-02-20 16:19:19 +03:00
|
|
|
rufl_invalidate_cache();
|
2004-11-03 02:23:07 +03:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* if we changed to 8bpp then go back to 32bpp */
|
|
|
|
if (thumbnail_32bpp_available != 1) {
|
2005-09-08 00:22:33 +04:00
|
|
|
char *pixbufp = bitmap_get_buffer(bitmap);
|
|
|
|
if (!pixbufp || !bitmap->sprite_area) {
|
|
|
|
free(sprite_area);
|
|
|
|
return false;
|
|
|
|
}
|
2005-06-23 21:24:23 +04:00
|
|
|
error = _swix(Tinct_ConvertSprite, _INR(2,3),
|
|
|
|
sprite_header,
|
|
|
|
(osspriteop_header *)(bitmap->sprite_area + 1));
|
|
|
|
free(sprite_area);
|
|
|
|
if (error)
|
|
|
|
return false;
|
2004-04-11 18:30:18 +04:00
|
|
|
}
|
2005-09-08 00:22:33 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* register the thumbnail with the URL */
|
|
|
|
if (url)
|
|
|
|
url_store_add_thumbnail(url, bitmap);
|
|
|
|
bitmap_modified(bitmap);
|
|
|
|
return true;
|
2004-04-10 22:19:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2005-06-23 21:24:23 +04:00
|
|
|
* Convert a bitmap to 8bpp.
|
2004-04-10 22:19:35 +04:00
|
|
|
*
|
2005-06-23 21:24:23 +04:00
|
|
|
* \param bitmap the bitmap to convert
|
|
|
|
* \return a sprite area containing an 8bpp sprite
|
|
|
|
*/
|
2005-09-08 00:22:33 +04:00
|
|
|
osspriteop_area *thumbnail_convert_8bpp(struct bitmap *bitmap)
|
|
|
|
{
|
2005-06-23 21:24:23 +04:00
|
|
|
struct thumbnail_save_area *save_area;
|
|
|
|
osspriteop_area *sprite_area = NULL;
|
|
|
|
osspriteop_header *sprite_header = NULL;
|
|
|
|
|
2005-09-08 00:22:33 +04:00
|
|
|
sprite_area = thumbnail_create_8bpp(bitmap);
|
2005-06-23 21:24:23 +04:00
|
|
|
if (!sprite_area)
|
|
|
|
return NULL;
|
|
|
|
sprite_header = (osspriteop_header *)(sprite_area + 1);
|
|
|
|
|
|
|
|
|
|
|
|
/* switch output and redraw */
|
|
|
|
save_area = thumbnail_switch_output(sprite_area, sprite_header);
|
|
|
|
if (save_area == NULL) {
|
|
|
|
if (thumbnail_32bpp_available != 1)
|
|
|
|
free(sprite_area);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
_swix(Tinct_Plot, _IN(2) | _IN(3) | _IN(4) | _IN(7),
|
|
|
|
(osspriteop_header *)(bitmap->sprite_area + 1),
|
|
|
|
0, 0,
|
|
|
|
tinct_ERROR_DIFFUSE);
|
|
|
|
thumbnail_restore_output(save_area);
|
2005-09-08 00:22:33 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
return sprite_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates an 8bpp canvas.
|
2004-04-10 22:19:35 +04:00
|
|
|
*
|
2005-06-23 21:24:23 +04:00
|
|
|
* \param bitmap the bitmap to clone the size of
|
|
|
|
* \return a sprite area containing an 8bpp sprite
|
2004-04-10 22:19:35 +04:00
|
|
|
*/
|
2005-09-08 00:22:33 +04:00
|
|
|
osspriteop_area *thumbnail_create_8bpp(struct bitmap *bitmap)
|
|
|
|
{
|
2004-04-10 22:19:35 +04:00
|
|
|
unsigned int area_size;
|
2005-06-23 21:24:23 +04:00
|
|
|
osspriteop_area *sprite_area = NULL;
|
|
|
|
osspriteop_header *sprite_header = NULL;
|
2004-04-10 22:19:35 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* clone the sprite */
|
|
|
|
area_size = sizeof(osspriteop_area) +
|
|
|
|
sizeof(osspriteop_header) +
|
|
|
|
((bitmap->width + 3) & ~3) * bitmap->height +
|
|
|
|
2048;
|
|
|
|
sprite_area = (osspriteop_area *)malloc(area_size);
|
|
|
|
if (!sprite_area) {
|
|
|
|
LOG(("no memory for malloc()"));
|
2004-04-10 22:19:35 +04:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
sprite_area->size = area_size;
|
|
|
|
sprite_area->sprite_count = 1;
|
|
|
|
sprite_area->first = 16;
|
|
|
|
sprite_area->used = area_size;
|
|
|
|
sprite_header = (osspriteop_header *)(sprite_area + 1);
|
|
|
|
sprite_header->size = area_size - sizeof(osspriteop_area);
|
|
|
|
memset(sprite_header->name, 0x00, 12);
|
2005-06-23 21:24:23 +04:00
|
|
|
strcpy(sprite_header->name, "bitmap");
|
2004-04-10 22:19:35 +04:00
|
|
|
sprite_header->left_bit = 0;
|
2005-06-23 21:24:23 +04:00
|
|
|
sprite_header->height = bitmap->height - 1;
|
|
|
|
sprite_header->mode = os_MODE8BPP90X90;
|
|
|
|
sprite_header->right_bit = ((bitmap->width << 3) - 1) & 31;
|
|
|
|
sprite_header->width = ((bitmap->width + 3) >> 2) - 1;
|
|
|
|
sprite_header->image = sizeof(osspriteop_header) + 2048;
|
|
|
|
sprite_header->mask = sizeof(osspriteop_header) + 2048;
|
|
|
|
|
|
|
|
/* create the palette. we don't read the necessary size like
|
|
|
|
* we really should as we know it's going to have 256 entries
|
|
|
|
* of 8 bytes = 2048. */
|
|
|
|
xcolourtrans_read_palette((osspriteop_area *)os_MODE8BPP90X90,
|
|
|
|
(osspriteop_id)0,
|
2004-04-10 22:19:35 +04:00
|
|
|
(os_palette *)(sprite_header + 1), 2048,
|
2005-06-23 21:24:23 +04:00
|
|
|
(colourtrans_palette_flags)(1 << 1), 0);
|
2004-04-10 22:19:35 +04:00
|
|
|
return sprite_area;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/**
|
|
|
|
* Check to see whether 32bpp sprites are available.
|
|
|
|
*
|
|
|
|
* Rather than using Wimp_ReadSysInfo we test if 32bpp sprites are available
|
|
|
|
* in case the user has a 3rd party patch to enable them.
|
2004-04-10 22:19:35 +04:00
|
|
|
*/
|
2005-09-08 00:22:33 +04:00
|
|
|
static void thumbnail_test(void)
|
|
|
|
{
|
2004-04-10 22:19:35 +04:00
|
|
|
unsigned int area_size;
|
|
|
|
osspriteop_area *sprite_area;
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* try to create a 1x1 32bpp sprite */
|
2004-04-10 22:19:35 +04:00
|
|
|
area_size = sizeof(osspriteop_area) +
|
|
|
|
sizeof(osspriteop_header) + sizeof(int);
|
|
|
|
if ((sprite_area = (osspriteop_area *)malloc(area_size)) == NULL) {
|
|
|
|
LOG(("Insufficient memory to perform sprite test."));
|
2004-02-25 18:12:58 +03:00
|
|
|
return;
|
|
|
|
}
|
2004-04-10 22:19:35 +04:00
|
|
|
sprite_area->size = area_size + 1;
|
|
|
|
sprite_area->sprite_count = 0;
|
|
|
|
sprite_area->first = 16;
|
|
|
|
sprite_area->used = 16;
|
|
|
|
if (xosspriteop_create_sprite(osspriteop_NAME, sprite_area,
|
2005-06-23 21:24:23 +04:00
|
|
|
"test", false, 1, 1, (os_mode)tinct_SPRITE_MODE))
|
2004-04-10 22:19:35 +04:00
|
|
|
thumbnail_32bpp_available = 0;
|
2005-06-23 21:24:23 +04:00
|
|
|
else
|
2004-04-10 22:19:35 +04:00
|
|
|
thumbnail_32bpp_available = 1;
|
|
|
|
free(sprite_area);
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/**
|
|
|
|
* Switches output to the specified sprite and returns the previous context.
|
|
|
|
*/
|
|
|
|
static struct thumbnail_save_area* thumbnail_switch_output(
|
|
|
|
osspriteop_area *sprite_area,
|
2005-09-08 00:22:33 +04:00
|
|
|
osspriteop_header *sprite_header)
|
|
|
|
{
|
2004-04-10 22:19:35 +04:00
|
|
|
struct thumbnail_save_area *save_area;
|
|
|
|
int size;
|
2004-05-21 14:29:54 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* create a save area */
|
2004-04-10 22:19:35 +04:00
|
|
|
save_area = calloc(sizeof(struct thumbnail_save_area), 1);
|
|
|
|
if (save_area == NULL) return NULL;
|
2004-05-21 14:29:54 +04:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* allocate OS_SpriteOp save area */
|
2004-04-10 22:19:35 +04:00
|
|
|
if (xosspriteop_read_save_area_size(osspriteop_PTR, sprite_area,
|
|
|
|
(osspriteop_id)sprite_header, &size)) {
|
|
|
|
free(save_area);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-02-25 18:12:58 +03:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* create the save area */
|
2004-04-10 22:19:35 +04:00
|
|
|
save_area->save_area = malloc((unsigned)size);
|
|
|
|
if (save_area->save_area == NULL) {
|
2004-04-11 18:30:18 +04:00
|
|
|
free(save_area);
|
2004-04-10 22:19:35 +04:00
|
|
|
return NULL;
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|
2004-04-10 22:19:35 +04:00
|
|
|
save_area->save_area->a[0] = 0;
|
2004-02-26 20:23:02 +03:00
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/* switch output to sprite */
|
2004-04-10 22:19:35 +04:00
|
|
|
if (xosspriteop_switch_output_to_sprite(osspriteop_PTR, sprite_area,
|
|
|
|
(osspriteop_id)sprite_header, save_area->save_area,
|
|
|
|
0, &save_area->context1, &save_area->context2,
|
|
|
|
&save_area->context3)) {
|
|
|
|
free(save_area->save_area);
|
|
|
|
free(save_area);
|
|
|
|
return NULL;
|
|
|
|
}
|
2004-04-11 18:30:18 +04:00
|
|
|
return save_area;
|
2004-04-10 22:19:35 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-06-23 21:24:23 +04:00
|
|
|
/**
|
|
|
|
* Restores output to the specified context, and destroys it.
|
|
|
|
*/
|
2005-09-08 00:22:33 +04:00
|
|
|
static void thumbnail_restore_output(struct thumbnail_save_area *save_area)
|
|
|
|
{
|
2005-06-23 21:24:23 +04:00
|
|
|
/* we don't care if we err, as there's nothing we can do about it */
|
2004-04-10 22:19:35 +04:00
|
|
|
xosspriteop_switch_output_to_sprite(osspriteop_PTR,
|
|
|
|
(osspriteop_area *)save_area->context1,
|
|
|
|
(osspriteop_id)save_area->context2,
|
|
|
|
(osspriteop_save_area *)save_area->context3,
|
|
|
|
0, 0, 0, 0);
|
|
|
|
free(save_area->save_area);
|
2004-02-26 20:23:02 +03:00
|
|
|
free(save_area);
|
2004-02-25 18:12:58 +03:00
|
|
|
}
|