2008-08-02 18:31:32 +04:00
|
|
|
/*
|
2009-02-25 02:47:58 +03:00
|
|
|
* Copyright 2008,2009 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
2008-08-02 18:31:32 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "amiga/plotters.h"
|
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include "amiga/bitmap.h"
|
2008-08-10 13:57:41 +04:00
|
|
|
#include "amiga/font.h"
|
2008-08-02 18:31:32 +04:00
|
|
|
#include <proto/Picasso96API.h>
|
2008-08-07 22:44:28 +04:00
|
|
|
#include <proto/graphics.h>
|
2008-08-02 18:31:32 +04:00
|
|
|
#include <intuition/intuition.h>
|
2008-08-07 22:44:28 +04:00
|
|
|
#include <graphics/rpattr.h>
|
2008-08-17 20:22:40 +04:00
|
|
|
#include <graphics/gfxmacros.h>
|
2008-08-23 20:17:23 +04:00
|
|
|
#include "amiga/utf8.h"
|
2008-08-30 20:57:35 +04:00
|
|
|
#include <proto/layers.h>
|
2008-12-14 02:20:49 +03:00
|
|
|
#include "amiga/options.h"
|
2008-12-26 21:36:53 +03:00
|
|
|
#include <graphics/blitattr.h>
|
2008-12-28 03:41:35 +03:00
|
|
|
#include "utils/log.h"
|
|
|
|
#include <math.h>
|
2009-02-25 03:26:46 +03:00
|
|
|
#include <assert.h>
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
#ifndef M_PI /* For some reason we don't always get this from math.h */
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NS_AMIGA_CAIRO
|
|
|
|
#include <cairo/cairo.h>
|
|
|
|
#include <cairo/cairo-amigaos.h>
|
|
|
|
#endif
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
#define PATT_DOT 0xAAAA
|
|
|
|
#define PATT_DASH 0xCCCC
|
|
|
|
#define PATT_LINE 0xFFFF
|
2008-08-02 18:31:32 +04:00
|
|
|
|
|
|
|
struct plotter_table plot;
|
|
|
|
const struct plotter_table amiplot = {
|
|
|
|
ami_clg,
|
|
|
|
ami_rectangle,
|
|
|
|
ami_line,
|
|
|
|
ami_polygon,
|
|
|
|
ami_fill,
|
|
|
|
ami_clip,
|
|
|
|
ami_text,
|
|
|
|
ami_disc,
|
|
|
|
ami_arc,
|
|
|
|
ami_bitmap,
|
|
|
|
ami_bitmap_tile,
|
2008-08-07 22:44:28 +04:00
|
|
|
NULL, //ami_group_start,
|
|
|
|
NULL, //ami_group_end,
|
2008-08-30 20:57:35 +04:00
|
|
|
NULL, //ami_flush, // optional
|
2008-08-15 22:49:14 +04:00
|
|
|
ami_path,
|
2009-01-11 00:32:12 +03:00
|
|
|
true // option_knockout
|
2008-08-02 18:31:32 +04:00
|
|
|
};
|
|
|
|
|
2008-12-28 03:41:35 +03:00
|
|
|
#ifdef NS_AMIGA_CAIRO
|
|
|
|
void ami_cairo_set_colour(cairo_t *cr,colour c)
|
|
|
|
{
|
|
|
|
int r, g, b;
|
|
|
|
|
|
|
|
r = c & 0xff;
|
|
|
|
g = (c & 0xff00) >> 8;
|
|
|
|
b = (c & 0xff0000) >> 16;
|
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_source_rgba(glob.cr, r / 255.0,
|
2008-12-28 03:41:35 +03:00
|
|
|
g / 255.0, b / 255.0, 1.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_cairo_set_solid(cairo_t *cr)
|
|
|
|
{
|
|
|
|
double dashes = 0;
|
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_dash(glob.cr, &dashes, 0, 0);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_cairo_set_dotted(cairo_t *cr)
|
|
|
|
{
|
|
|
|
double cdashes = 1;
|
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_dash(glob.cr, &cdashes, 1, 0);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void ami_cairo_set_dashed(cairo_t *cr)
|
|
|
|
{
|
|
|
|
double cdashes = 3;
|
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_dash(glob.cr, &cdashes, 1, 0);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
bool ami_clg(colour c)
|
|
|
|
{
|
2009-03-08 20:41:24 +03:00
|
|
|
p96RectFill(currp,0,0,scrn->Width-1,scrn->Width-1,
|
2009-01-11 00:32:12 +03:00
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8,c));
|
|
|
|
/*
|
2008-08-22 01:42:48 +04:00
|
|
|
SetRPAttrs(currp,RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
TAG_DONE);
|
2008-09-20 18:06:28 +04:00
|
|
|
Move(currp,0,0);
|
2008-08-22 01:42:48 +04:00
|
|
|
ClearScreen(currp);
|
2009-01-11 00:32:12 +03:00
|
|
|
*/
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_rectangle(int x0, int y0, int width, int height,
|
|
|
|
int line_width, colour c, bool dotted, bool dashed)
|
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2008-08-15 22:49:14 +04:00
|
|
|
currp->PenWidth = line_width;
|
|
|
|
currp->PenHeight = line_width;
|
|
|
|
|
|
|
|
currp->LinePtrn = PATT_LINE;
|
|
|
|
if(dotted) currp->LinePtrn = PATT_DOT;
|
|
|
|
if(dashed) currp->LinePtrn = PATT_DASH;
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
TAG_DONE);
|
|
|
|
Move(currp,x0,y0);
|
|
|
|
Draw(currp,x0+width,y0);
|
|
|
|
Draw(currp,x0+width,y0+height);
|
|
|
|
Draw(currp,x0,y0+height);
|
|
|
|
Draw(currp,x0,y0);
|
|
|
|
|
2008-08-22 01:42:48 +04:00
|
|
|
currp->PenWidth = 1;
|
|
|
|
currp->PenHeight = 1;
|
|
|
|
currp->LinePtrn = PATT_LINE;
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
if (dotted) ami_cairo_set_dotted(glob.cr);
|
|
|
|
else if (dashed) ami_cairo_set_dashed(glob.cr);
|
|
|
|
else ami_cairo_set_solid(glob.cr);
|
|
|
|
|
|
|
|
if (line_width == 0)
|
|
|
|
line_width = 1;
|
|
|
|
|
|
|
|
cairo_set_line_width(glob.cr, line_width);
|
|
|
|
cairo_rectangle(glob.cr, x0, y0, width, height);
|
|
|
|
cairo_stroke(glob.cr);
|
|
|
|
#endif
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_line(int x0, int y0, int x1, int y1, int width,
|
|
|
|
colour c, bool dotted, bool dashed)
|
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2008-08-15 22:49:14 +04:00
|
|
|
currp->PenWidth = width;
|
|
|
|
currp->PenHeight = width;
|
|
|
|
|
|
|
|
currp->LinePtrn = PATT_LINE;
|
|
|
|
if(dotted) currp->LinePtrn = PATT_DOT;
|
|
|
|
if(dashed) currp->LinePtrn = PATT_DASH;
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
TAG_DONE);
|
|
|
|
Move(currp,x0,y0);
|
2008-08-17 20:22:40 +04:00
|
|
|
Draw(currp,x1,y1);
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2008-08-22 01:42:48 +04:00
|
|
|
currp->PenWidth = 1;
|
|
|
|
currp->PenHeight = 1;
|
|
|
|
currp->LinePtrn = PATT_LINE;
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
if (dotted) ami_cairo_set_dotted(glob.cr);
|
|
|
|
else if (dashed) ami_cairo_set_dashed(glob.cr);
|
|
|
|
else ami_cairo_set_solid(glob.cr);
|
|
|
|
|
|
|
|
if (width == 0)
|
|
|
|
width = 1;
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2008-12-29 03:52:19 +03:00
|
|
|
cairo_set_line_width(glob.cr, width);
|
2009-04-01 21:36:18 +04:00
|
|
|
cairo_move_to(current_cr, x0 + 0.5, y0 + 0.5);
|
|
|
|
cairo_line_to(current_cr, x1 + 0.5, y1 + 0.5);
|
2008-12-29 03:52:19 +03:00
|
|
|
cairo_stroke(glob.cr);
|
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-02-03 04:27:54 +03:00
|
|
|
bool ami_polygon(const int *p, unsigned int n, colour fill)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-08-15 22:49:14 +04:00
|
|
|
int k;
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO
|
2008-08-15 22:49:14 +04:00
|
|
|
ULONG cx,cy;
|
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
//DebugPrintF("poly\n");
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,fill),
|
2008-08-30 20:57:35 +04:00
|
|
|
RPTAG_OPenColor,p96EncodeColor(RGBFB_A8B8G8R8,fill),
|
2008-12-26 21:36:53 +03:00
|
|
|
// RPTAG_OPenColor,0xffffffff,
|
2008-08-15 22:49:14 +04:00
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
AreaMove(currp,p[0],p[1]);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
for(k=1;k<n;k++)
|
|
|
|
{
|
2008-08-30 20:57:35 +04:00
|
|
|
AreaDraw(currp,p[k*2],p[(k*2)+1]);
|
2008-08-15 22:49:14 +04:00
|
|
|
}
|
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
AreaEnd(currp);
|
|
|
|
BNDRYOFF(currp);
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob.cr,fill);
|
|
|
|
ami_cairo_set_solid(glob.cr);
|
|
|
|
|
|
|
|
cairo_set_line_width(glob.cr, 0);
|
|
|
|
cairo_move_to(glob.cr, p[0], p[1]);
|
|
|
|
for (k = 1; k != n; k++) {
|
|
|
|
cairo_line_to(glob.cr, p[k * 2], p[k * 2 + 1]);
|
|
|
|
}
|
|
|
|
cairo_fill(glob.cr);
|
|
|
|
cairo_stroke(glob.cr);
|
|
|
|
#endif
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_fill(int x0, int y0, int x1, int y1, colour c)
|
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2008-12-14 02:20:49 +03:00
|
|
|
p96RectFill(currp,x0,y0,x1-1,y1-1,
|
2008-08-07 22:44:28 +04:00
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8,c));
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
ami_cairo_set_solid(glob.cr);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2008-12-29 03:52:19 +03:00
|
|
|
cairo_set_line_width(glob.cr, 0);
|
|
|
|
cairo_rectangle(glob.cr, x0, y0, x1 - x0, y1 - y0);
|
|
|
|
cairo_fill(glob.cr);
|
|
|
|
cairo_stroke(glob.cr);
|
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_clip(int x0, int y0, int x1, int y1)
|
|
|
|
{
|
2008-08-30 20:57:35 +04:00
|
|
|
struct Region *reg = NULL;
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
if(currp->Layer)
|
|
|
|
{
|
2008-12-29 04:18:53 +03:00
|
|
|
reg = InstallClipRegion(currp->Layer,NULL);
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2008-12-29 04:18:53 +03:00
|
|
|
if(!reg)
|
|
|
|
{
|
|
|
|
reg = NewRegion();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ClearRectRegion(reg,&glob.rect);
|
|
|
|
}
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2008-12-29 04:18:53 +03:00
|
|
|
glob.rect.MinX = x0;
|
|
|
|
glob.rect.MinY = y0;
|
|
|
|
glob.rect.MaxX = x1-1;
|
|
|
|
glob.rect.MaxY = y1-1;
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2008-12-29 04:18:53 +03:00
|
|
|
OrRectRegion(reg,&glob.rect);
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2008-12-29 04:18:53 +03:00
|
|
|
reg = InstallClipRegion(currp->Layer,reg);
|
2008-08-30 20:57:35 +04:00
|
|
|
if(reg) DisposeRegion(reg);
|
|
|
|
}
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifdef NS_AMIGA_CAIRO_ALL
|
|
|
|
cairo_reset_clip(glob.cr);
|
|
|
|
cairo_rectangle(glob.cr, x0, y0, x1 - x0, y1 - y0);
|
|
|
|
cairo_clip(glob.cr);
|
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_text(int x, int y, const struct css_style *style,
|
|
|
|
const char *text, size_t length, colour bg, colour c)
|
|
|
|
{
|
2009-04-01 21:36:18 +04:00
|
|
|
ami_unicode_text(currp,text,length,style,x,y,c);
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_disc(int x, int y, int radius, colour c, bool filled)
|
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2008-08-07 22:44:28 +04:00
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
TAG_DONE);
|
2008-08-17 20:22:40 +04:00
|
|
|
|
|
|
|
if(filled)
|
|
|
|
{
|
|
|
|
AreaCircle(currp,x,y,radius);
|
2008-08-30 20:57:35 +04:00
|
|
|
AreaEnd(currp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
DrawEllipse(currp,x,y,radius,radius); // NB: does not support fill, need to use AreaCircle for that
|
2008-08-17 20:22:40 +04:00
|
|
|
}
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
ami_cairo_set_solid(glob.cr);
|
|
|
|
|
|
|
|
if (filled)
|
|
|
|
cairo_set_line_width(glob.cr, 0);
|
|
|
|
else
|
|
|
|
cairo_set_line_width(glob.cr, 1);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2008-12-29 03:52:19 +03:00
|
|
|
cairo_arc(glob.cr, x, y, radius, 0, M_PI * 2);
|
|
|
|
|
|
|
|
if (filled)
|
|
|
|
cairo_fill(glob.cr);
|
|
|
|
|
|
|
|
cairo_stroke(glob.cr);
|
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_arc(int x, int y, int radius, int angle1, int angle2,
|
|
|
|
colour c)
|
|
|
|
{
|
2008-12-28 03:41:35 +03:00
|
|
|
#ifdef NS_AMIGA_CAIRO
|
2008-12-28 15:24:18 +03:00
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
ami_cairo_set_solid(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_line_width(glob.cr, 1);
|
|
|
|
cairo_arc(glob.cr, x, y, radius,
|
2008-12-28 03:41:35 +03:00
|
|
|
(angle1 + 90) * (M_PI / 180),
|
|
|
|
(angle2 + 90) * (M_PI / 180));
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_stroke(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
#else
|
2008-08-10 13:57:41 +04:00
|
|
|
/* http://www.crbond.com/primitives.htm
|
|
|
|
CommonFuncsPPC.lha */
|
2008-08-30 20:57:35 +04:00
|
|
|
//DebugPrintF("arc\n");
|
|
|
|
|
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
// DrawArc(currp,x,y,(float)angle1,(float)angle2,radius);
|
2008-12-28 03:41:35 +03:00
|
|
|
#endif
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_bitmap(int x, int y, int width, int height,
|
2008-08-15 22:49:14 +04:00
|
|
|
struct bitmap *bitmap, colour bg, struct content *content)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-12-26 21:36:53 +03:00
|
|
|
struct BitMap *tbm;
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2008-09-28 18:39:02 +04:00
|
|
|
if(!width || !height) return true;
|
|
|
|
|
2009-02-25 22:56:04 +03:00
|
|
|
tbm = ami_getcachenativebm(bitmap,width,height,currp->BitMap);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-03-08 15:52:44 +03:00
|
|
|
if(!tbm) return true;
|
|
|
|
|
2009-02-25 22:56:04 +03:00
|
|
|
BltBitMapTags(BLITA_Width,width,
|
2008-12-26 21:36:53 +03:00
|
|
|
BLITA_Height,height,
|
2008-12-28 18:55:52 +03:00
|
|
|
BLITA_Source,tbm,
|
2008-12-26 21:36:53 +03:00
|
|
|
BLITA_Dest,currp,
|
|
|
|
BLITA_DestX,x,
|
|
|
|
BLITA_DestY,y,
|
2008-12-28 18:55:52 +03:00
|
|
|
BLITA_SrcType,BLITT_BITMAP,
|
2008-12-26 21:36:53 +03:00
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
2008-12-27 21:34:55 +03:00
|
|
|
BLITA_UseSrcAlpha,!bitmap->opaque,
|
2008-12-26 21:36:53 +03:00
|
|
|
TAG_DONE);
|
2008-08-02 18:31:32 +04:00
|
|
|
|
2009-02-25 23:09:33 +03:00
|
|
|
if(tbm != bitmap->nativebm)
|
|
|
|
{
|
|
|
|
p96FreeBitMap(tbm);
|
|
|
|
}
|
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_bitmap_tile(int x, int y, int width, int height,
|
|
|
|
struct bitmap *bitmap, colour bg,
|
2008-08-15 22:49:14 +04:00
|
|
|
bool repeat_x, bool repeat_y, struct content *content)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2009-02-25 23:37:41 +03:00
|
|
|
int xf,yf;
|
2009-02-25 03:26:46 +03:00
|
|
|
struct BitMap *tbm = NULL;
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-02-25 02:47:58 +03:00
|
|
|
if(!(repeat_x || repeat_y))
|
|
|
|
return ami_bitmap(x, y, width, height, bitmap, bg, content);
|
|
|
|
|
2009-02-25 22:56:04 +03:00
|
|
|
tbm = ami_getcachenativebm(bitmap,width,height,currp->BitMap);
|
2009-02-25 02:47:58 +03:00
|
|
|
|
2009-03-08 15:52:44 +03:00
|
|
|
if(!tbm) return true;
|
|
|
|
|
2009-02-25 02:47:58 +03:00
|
|
|
/* get left most tile position */
|
|
|
|
if (repeat_x)
|
|
|
|
for (; x > glob.rect.MinX; x -= width)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* get top most tile position */
|
|
|
|
if (repeat_y)
|
|
|
|
for (; y > glob.rect.MinY; y -= height)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* tile down and across to extents */
|
|
|
|
for (xf = x; xf < glob.rect.MaxX; xf += width) {
|
|
|
|
for (yf = y; yf < glob.rect.MaxY; yf += height) {
|
2008-08-23 20:17:23 +04:00
|
|
|
|
2009-02-25 03:26:46 +03:00
|
|
|
assert(tbm);
|
|
|
|
|
2009-02-25 02:47:58 +03:00
|
|
|
BltBitMapTags(BLITA_Width,width,
|
|
|
|
BLITA_Height,height,
|
2008-12-28 18:55:52 +03:00
|
|
|
BLITA_Source,tbm,
|
2008-12-26 21:36:53 +03:00
|
|
|
BLITA_Dest,currp,
|
2009-02-25 02:47:58 +03:00
|
|
|
BLITA_DestX,xf,
|
|
|
|
BLITA_DestY,yf,
|
2008-12-28 18:55:52 +03:00
|
|
|
BLITA_SrcType,BLITT_BITMAP,
|
2008-12-26 21:36:53 +03:00
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
2008-12-27 21:34:55 +03:00
|
|
|
BLITA_UseSrcAlpha,!bitmap->opaque,
|
2008-12-26 21:36:53 +03:00
|
|
|
TAG_DONE);
|
2009-02-25 02:47:58 +03:00
|
|
|
|
|
|
|
if (!repeat_y)
|
|
|
|
break;
|
2008-08-23 20:17:23 +04:00
|
|
|
}
|
2009-02-25 02:47:58 +03:00
|
|
|
if (!repeat_x)
|
|
|
|
break;
|
2008-08-23 20:17:23 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-02-25 23:09:33 +03:00
|
|
|
if(tbm != bitmap->nativebm)
|
2009-02-07 13:45:58 +03:00
|
|
|
{
|
|
|
|
p96FreeBitMap(tbm);
|
|
|
|
}
|
2008-12-26 21:36:53 +03:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_group_start(const char *name)
|
|
|
|
{
|
|
|
|
/** optional */
|
2008-08-07 22:44:28 +04:00
|
|
|
return false;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_group_end(void)
|
|
|
|
{
|
|
|
|
/** optional */
|
2008-08-07 22:44:28 +04:00
|
|
|
return false;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_flush(void)
|
|
|
|
{
|
2008-08-30 20:57:35 +04:00
|
|
|
//DebugPrintF("flush\n");
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-02-03 04:27:54 +03:00
|
|
|
bool ami_path(const float *p, unsigned int n, colour fill, float width,
|
|
|
|
colour c, const float transform[6])
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-12-28 03:41:35 +03:00
|
|
|
/* For SVG only, because it needs Bezier curves we are going to cheat
|
|
|
|
and insist on Cairo */
|
|
|
|
#ifdef NS_AMIGA_CAIRO
|
|
|
|
unsigned int i;
|
|
|
|
cairo_matrix_t old_ctm, n_ctm;
|
|
|
|
|
|
|
|
if (n == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (p[0] != PLOTTER_PATH_MOVE) {
|
|
|
|
LOG(("Path does not start with move"));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Save CTM */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_get_matrix(glob.cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Set up line style and width */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_line_width(glob.cr, 1);
|
|
|
|
ami_cairo_set_solid(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Load new CTM */
|
|
|
|
n_ctm.xx = transform[0];
|
|
|
|
n_ctm.yx = transform[1];
|
|
|
|
n_ctm.xy = transform[2];
|
|
|
|
n_ctm.yy = transform[3];
|
|
|
|
n_ctm.x0 = transform[4];
|
|
|
|
n_ctm.y0 = transform[5];
|
|
|
|
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_matrix(glob.cr, &n_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Construct path */
|
|
|
|
for (i = 0; i < n; ) {
|
|
|
|
if (p[i] == PLOTTER_PATH_MOVE) {
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_move_to(glob.cr, p[i+1], p[i+2]);
|
2008-12-28 03:41:35 +03:00
|
|
|
i += 3;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_CLOSE) {
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_close_path(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
i++;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_LINE) {
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_line_to(glob.cr, p[i+1], p[i+2]);
|
2008-12-28 03:41:35 +03:00
|
|
|
i += 3;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_BEZIER) {
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_curve_to(glob.cr, p[i+1], p[i+2],
|
2008-12-28 03:41:35 +03:00
|
|
|
p[i+3], p[i+4],
|
|
|
|
p[i+5], p[i+6]);
|
|
|
|
i += 7;
|
|
|
|
} else {
|
|
|
|
LOG(("bad path command %f", p[i]));
|
|
|
|
/* Reset matrix for safety */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_matrix(glob.cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore original CTM */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_set_matrix(glob.cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Now draw path */
|
|
|
|
if (fill != TRANSPARENT) {
|
2008-12-28 15:24:18 +03:00
|
|
|
ami_cairo_set_colour(glob.cr,fill);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
if (c != TRANSPARENT) {
|
|
|
|
/* Fill & Stroke */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_fill_preserve(glob.cr);
|
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
cairo_stroke(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
} else {
|
|
|
|
/* Fill only */
|
2008-12-28 15:24:18 +03:00
|
|
|
cairo_fill(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
} else if (c != TRANSPARENT) {
|
|
|
|
/* Stroke only */
|
2008-12-28 15:24:18 +03:00
|
|
|
ami_cairo_set_colour(glob.cr,c);
|
|
|
|
cairo_stroke(glob.cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|