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/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>
|
|
|
|
#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-12-14 02:20:49 +03:00
|
|
|
#include "amiga/options.h"
|
2008-12-26 21:36:53 +03:00
|
|
|
#include <graphics/blitattr.h>
|
2009-05-07 22:40:33 +04:00
|
|
|
#include <graphics/composite.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>
|
2009-07-04 23:12:56 +04:00
|
|
|
#include <proto/exec.h>
|
2009-07-09 22:52:55 +04:00
|
|
|
#include "amiga/gui.h"
|
|
|
|
#include "utils/utils.h"
|
2008-12-28 03:41:35 +03:00
|
|
|
|
2009-05-27 02:39:23 +04:00
|
|
|
static void ami_bitmap_tile_hook(struct Hook *hook,struct RastPort *rp,struct BackFillMessage *bfmsg);
|
|
|
|
|
|
|
|
struct bfbitmap {
|
|
|
|
struct BitMap *bm;
|
|
|
|
ULONG width;
|
|
|
|
ULONG height;
|
|
|
|
int offsetx;
|
|
|
|
int offsety;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
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 = {
|
2009-06-30 17:02:23 +04:00
|
|
|
.rectangle = ami_rectangle,
|
|
|
|
.line = ami_line,
|
|
|
|
.polygon = ami_polygon,
|
|
|
|
.clip = ami_clip,
|
|
|
|
.text = ami_text,
|
|
|
|
.disc = ami_disc,
|
|
|
|
.arc = ami_arc,
|
|
|
|
.bitmap = ami_bitmap_tile,
|
|
|
|
.path = ami_path,
|
|
|
|
.option_knockout = true,
|
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;
|
|
|
|
|
2009-07-07 23:28:34 +04: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;
|
|
|
|
|
2009-07-07 23:28:34 +04: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;
|
|
|
|
|
2009-07-07 23:28:34 +04: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;
|
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_set_dash(glob->cr, &cdashes, 1, 0);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-23 19:59:41 +04:00
|
|
|
void ami_init_layers(struct gui_globals *gg, ULONG width, ULONG height)
|
2009-07-09 22:52:55 +04:00
|
|
|
{
|
|
|
|
/* init shared bitmaps *
|
|
|
|
* Height is set to screen width to give enough space for thumbnails *
|
|
|
|
* Also applies to the further gfx/layers functions and memory below */
|
|
|
|
|
2009-08-23 19:59:41 +04:00
|
|
|
if(!width) width = scrn->Width;
|
|
|
|
if(!height) height = scrn->Width;
|
|
|
|
|
2009-08-29 18:24:47 +04:00
|
|
|
gg->scale = 1.0;
|
2009-07-09 22:52:55 +04:00
|
|
|
gg->layerinfo = NewLayerInfo();
|
|
|
|
gg->areabuf = AllocVec(100,MEMF_PRIVATE | MEMF_CLEAR);
|
2009-08-23 19:59:41 +04:00
|
|
|
gg->tmprasbuf = AllocVec(width*height,MEMF_PRIVATE | MEMF_CLEAR);
|
2009-07-09 22:52:55 +04:00
|
|
|
|
2009-08-23 19:59:41 +04:00
|
|
|
gg->bm = p96AllocBitMap(width, height, 32,
|
2009-07-09 22:52:55 +04:00
|
|
|
BMF_INTERLEAVED, NULL, RGBFB_A8R8G8B8);
|
|
|
|
|
|
|
|
if(!gg->bm) warn_user("NoMemory","");
|
|
|
|
|
|
|
|
InitRastPort(&gg->rp);
|
|
|
|
gg->rp.BitMap = gg->bm;
|
|
|
|
|
|
|
|
SetDrMd(&gg->rp,BGBACKFILL);
|
|
|
|
|
|
|
|
gg->rp.Layer = CreateUpfrontLayer(gg->layerinfo,gg->rp.BitMap,0,0,
|
2009-08-23 19:59:41 +04:00
|
|
|
width-1, height-1, LAYERSIMPLE, NULL);
|
2009-07-09 22:52:55 +04:00
|
|
|
|
|
|
|
InstallLayerHook(gg->rp.Layer,LAYERS_NOBACKFILL);
|
|
|
|
|
|
|
|
gg->rp.AreaInfo = AllocVec(sizeof(struct AreaInfo),MEMF_PRIVATE | MEMF_CLEAR);
|
|
|
|
|
|
|
|
if((!gg->areabuf) || (!gg->rp.AreaInfo)) warn_user("NoMemory","");
|
|
|
|
|
|
|
|
InitArea(gg->rp.AreaInfo,gg->areabuf,100/5);
|
|
|
|
gg->rp.TmpRas = AllocVec(sizeof(struct TmpRas),MEMF_PRIVATE | MEMF_CLEAR);
|
|
|
|
|
|
|
|
if((!gg->tmprasbuf) || (!gg->rp.TmpRas)) warn_user("NoMemory","");
|
|
|
|
|
2009-08-23 19:59:41 +04:00
|
|
|
InitTmpRas(gg->rp.TmpRas, gg->tmprasbuf, width*height);
|
2009-07-09 22:52:55 +04:00
|
|
|
|
|
|
|
#ifdef NS_AMIGA_CAIRO
|
|
|
|
gg->surface = cairo_amigaos_surface_create(gg->rp.BitMap);
|
|
|
|
gg->cr = cairo_create(gg->surface);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void ami_free_layers(struct gui_globals *gg)
|
|
|
|
{
|
|
|
|
#ifdef NS_AMIGA_CAIRO
|
|
|
|
cairo_destroy(gg->cr);
|
|
|
|
cairo_surface_destroy(gg->surface);
|
|
|
|
#endif
|
|
|
|
DeleteLayer(0,gg->rp.Layer);
|
|
|
|
FreeVec(gg->rp.TmpRas);
|
|
|
|
FreeVec(gg->rp.AreaInfo);
|
|
|
|
|
|
|
|
DisposeLayerInfo(gg->layerinfo);
|
|
|
|
p96FreeBitMap(gg->bm);
|
|
|
|
FreeVec(gg->tmprasbuf);
|
|
|
|
FreeVec(gg->areabuf);
|
|
|
|
}
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
bool ami_clg(colour c)
|
|
|
|
{
|
2009-07-07 23:28:34 +04:00
|
|
|
p96RectFill(&glob->rp,0,0,scrn->Width-1,scrn->Width-1,
|
2009-01-11 00:32:12 +03:00
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8,c));
|
|
|
|
/*
|
2009-07-07 23:28:34 +04:00
|
|
|
SetRPAttrs(&glob->rp,RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
2008-08-22 01:42:48 +04:00
|
|
|
TAG_DONE);
|
2009-07-07 23:28:34 +04:00
|
|
|
Move(&glob->rp,0,0);
|
|
|
|
ClearScreen(&glob->rp);
|
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
|
|
|
}
|
|
|
|
|
2009-08-23 19:59:41 +04:00
|
|
|
void ami_clearclipreg(struct gui_globals *gg)
|
|
|
|
{
|
|
|
|
struct Region *reg = NULL;
|
|
|
|
|
|
|
|
reg = InstallClipRegion(gg->rp.Layer,NULL);
|
|
|
|
if(reg) DisposeRegion(reg);
|
|
|
|
|
|
|
|
gg->rect.MinX = 0;
|
|
|
|
gg->rect.MinY = 0;
|
|
|
|
gg->rect.MaxX = scrn->Width-1;
|
|
|
|
gg->rect.MaxY = scrn->Height-1;
|
|
|
|
}
|
|
|
|
|
2009-07-09 02:32:57 +04:00
|
|
|
bool ami_rectangle(int x0, int y0, int x1, int y1, const plot_style_t *style)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2009-07-09 02:04:40 +04:00
|
|
|
if (style->fill_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2009-07-09 02:04:40 +04:00
|
|
|
p96RectFill(&glob->rp,x0,y0,x1-1,y1-1,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->fill_colour));
|
|
|
|
#else
|
|
|
|
ami_cairo_set_colour(glob->cr, style->fill_colour);
|
|
|
|
ami_cairo_set_solid(glob->cr);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-07-09 02:04:40 +04: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-15 22:49:14 +04:00
|
|
|
|
2009-07-09 02:04:40 +04:00
|
|
|
}
|
2009-07-07 23:28:34 +04:00
|
|
|
|
2009-07-09 02:04:40 +04:00
|
|
|
if (style->stroke_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
|
|
|
glob->rp.PenWidth = style->stroke_width;
|
|
|
|
glob->rp.PenHeight = style->stroke_width;
|
|
|
|
|
|
|
|
switch (style->stroke_type) {
|
|
|
|
case PLOT_OP_TYPE_SOLID: /**< Solid colour */
|
|
|
|
default:
|
|
|
|
glob->rp.LinePtrn = PATT_LINE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DOT: /**< Doted plot */
|
2009-07-09 02:32:57 +04:00
|
|
|
glob->rp.LinePtrn = PATT_DOT;
|
2009-07-09 02:04:40 +04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DASH: /**< dashed plot */
|
|
|
|
glob->rp.LinePtrn = PATT_DASH;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->stroke_colour),
|
|
|
|
TAG_DONE);
|
|
|
|
Move(&glob->rp, x0,y0);
|
|
|
|
Draw(&glob->rp, x1, y0);
|
|
|
|
Draw(&glob->rp, x1, y1);
|
|
|
|
Draw(&glob->rp, x0, y1);
|
|
|
|
Draw(&glob->rp, x0, y0);
|
|
|
|
|
|
|
|
glob->rp.PenWidth = 1;
|
|
|
|
glob->rp.PenHeight = 1;
|
|
|
|
glob->rp.LinePtrn = PATT_LINE;
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
2009-07-09 02:04:40 +04:00
|
|
|
ami_cairo_set_colour(glob->cr, style->stroke_colour);
|
|
|
|
|
|
|
|
switch (style->stroke_type) {
|
|
|
|
case PLOT_OP_TYPE_SOLID: /**< Solid colour */
|
|
|
|
default:
|
|
|
|
ami_cairo_set_solid(glob->cr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DOT: /**< Doted plot */
|
|
|
|
ami_cairo_set_dotted(glob->cr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DASH: /**< dashed plot */
|
|
|
|
ami_cairo_set_dashed(glob->cr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style->stroke_width == 0)
|
|
|
|
cairo_set_line_width(glob->cr, 1);
|
|
|
|
else
|
|
|
|
cairo_set_line_width(glob->cr, style->stroke_width);
|
|
|
|
|
|
|
|
cairo_rectangle(glob->cr, x0, y0, x1 - x0, y1 - y0);
|
|
|
|
cairo_stroke(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
#endif
|
2009-07-09 02:04:40 +04:00
|
|
|
}
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-07-10 22:36:49 +04:00
|
|
|
bool ami_line(int x0, int y0, int x1, int y1, const plot_style_t *style)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2009-07-10 22:36:49 +04:00
|
|
|
glob->rp.PenWidth = style->stroke_width;
|
|
|
|
glob->rp.PenHeight = style->stroke_width;
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-07-10 22:36:49 +04:00
|
|
|
switch (style->stroke_type) {
|
|
|
|
case PLOT_OP_TYPE_SOLID: /**< Solid colour */
|
|
|
|
default:
|
|
|
|
glob->rp.LinePtrn = PATT_LINE;
|
|
|
|
break;
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-07-10 22:36:49 +04:00
|
|
|
case PLOT_OP_TYPE_DOT: /**< Doted plot */
|
|
|
|
glob->rp.LinePtrn = PATT_DOT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DASH: /**< dashed plot */
|
|
|
|
glob->rp.LinePtrn = PATT_DASH;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->stroke_colour),
|
|
|
|
TAG_DONE);
|
2009-07-07 23:28:34 +04:00
|
|
|
Move(&glob->rp,x0,y0);
|
|
|
|
Draw(&glob->rp,x1,y1);
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
glob->rp.PenWidth = 1;
|
|
|
|
glob->rp.PenHeight = 1;
|
|
|
|
glob->rp.LinePtrn = PATT_LINE;
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
2009-07-10 22:36:49 +04:00
|
|
|
ami_cairo_set_colour(glob->cr, style->stroke_colour);
|
|
|
|
|
|
|
|
switch (style->stroke_type) {
|
|
|
|
case PLOT_OP_TYPE_SOLID: /**< Solid colour */
|
|
|
|
default:
|
|
|
|
ami_cairo_set_solid(glob->cr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DOT: /**< Doted plot */
|
|
|
|
ami_cairo_set_dotted(glob->cr);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PLOT_OP_TYPE_DASH: /**< dashed plot */
|
|
|
|
ami_cairo_set_dashed(glob->cr);
|
|
|
|
break;
|
|
|
|
}
|
2008-12-29 03:52:19 +03:00
|
|
|
|
2009-07-10 22:36:49 +04:00
|
|
|
if (style->stroke_width == 0)
|
|
|
|
cairo_set_line_width(glob->cr, 1);
|
|
|
|
else
|
|
|
|
cairo_set_line_width(glob->cr, style->stroke_width);
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_move_to(glob->cr, x0 + 0.5, y0 + 0.5);
|
|
|
|
cairo_line_to(glob->cr, x1 + 0.5, y1 + 0.5);
|
|
|
|
cairo_stroke(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
bool ami_polygon(const int *p, unsigned int n, const plot_style_t *style)
|
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;
|
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->fill_colour),
|
|
|
|
RPTAG_OPenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->fill_colour),
|
2008-12-26 21:36:53 +03:00
|
|
|
// RPTAG_OPenColor,0xffffffff,
|
2009-07-14 14:03:58 +04:00
|
|
|
TAG_DONE);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
AreaMove(&glob->rp,p[0],p[1]);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
for(k=1;k<n;k++)
|
|
|
|
{
|
2009-07-07 23:28:34 +04:00
|
|
|
AreaDraw(&glob->rp,p[k*2],p[(k*2)+1]);
|
2008-08-15 22:49:14 +04:00
|
|
|
}
|
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
AreaEnd(&glob->rp);
|
|
|
|
BNDRYOFF(&glob->rp);
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
2009-07-14 14:03:58 +04:00
|
|
|
ami_cairo_set_colour(glob->cr, style->fill_colour);
|
2009-07-07 23:28:34 +04:00
|
|
|
ami_cairo_set_solid(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_set_line_width(glob->cr, 0);
|
|
|
|
cairo_move_to(glob->cr, p[0], p[1]);
|
2008-12-29 03:52:19 +03:00
|
|
|
for (k = 1; k != n; k++) {
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_line_to(glob->cr, p[k * 2], p[k * 2 + 1]);
|
2008-12-29 03:52:19 +03:00
|
|
|
}
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_fill(glob->cr);
|
|
|
|
cairo_stroke(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
#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_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
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
if(glob->rp.Layer)
|
2008-08-30 20:57:35 +04:00
|
|
|
{
|
2009-08-17 15:48:56 +04:00
|
|
|
reg = NewRegion();
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2009-07-07 23:28:34 +04: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
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
OrRectRegion(reg,&glob->rect);
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
reg = InstallClipRegion(glob->rp.Layer,reg);
|
2009-08-17 15:48:56 +04:00
|
|
|
|
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
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_reset_clip(glob->cr);
|
|
|
|
cairo_rectangle(glob->cr, x0, y0, x1 - x0, y1 - y0);
|
|
|
|
cairo_clip(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
#endif
|
2009-08-17 15:48:56 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-07-21 14:59:53 +04:00
|
|
|
bool ami_text(int x, int y, const char *text, size_t length,
|
|
|
|
const plot_font_style_t *fstyle)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2009-07-21 14:59:53 +04:00
|
|
|
ami_unicode_text(&glob->rp,text,length,fstyle,x,y);
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
bool ami_disc(int x, int y, int radius, const plot_style_t *style)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-12-29 03:52:19 +03:00
|
|
|
#ifndef NS_AMIGA_CAIRO_ALL
|
2009-07-14 14:03:58 +04:00
|
|
|
if (style->fill_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->fill_colour),
|
|
|
|
TAG_DONE);
|
2009-07-07 23:28:34 +04:00
|
|
|
AreaCircle(&glob->rp,x,y,radius);
|
|
|
|
AreaEnd(&glob->rp);
|
2008-08-30 20:57:35 +04:00
|
|
|
}
|
2009-07-14 14:03:58 +04:00
|
|
|
|
|
|
|
if (style->stroke_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->stroke_colour),
|
|
|
|
TAG_DONE);
|
|
|
|
|
|
|
|
DrawEllipse(&glob->rp,x,y,radius,radius);
|
2008-08-17 20:22:40 +04:00
|
|
|
}
|
2008-12-29 03:52:19 +03:00
|
|
|
#else
|
2009-07-14 14:03:58 +04:00
|
|
|
if (style->fill_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
ami_cairo_set_colour(glob->cr, style->fill_colour);
|
|
|
|
ami_cairo_set_solid(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_set_line_width(glob->cr, 0);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
cairo_arc(glob->cr, x, y, radius, 0, M_PI * 2);
|
2008-12-29 03:52:19 +03:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_fill(glob->cr);
|
2008-12-29 03:52:19 +03:00
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
cairo_stroke(glob->cr);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (style->stroke_type != PLOT_OP_TYPE_NONE) {
|
|
|
|
ami_cairo_set_colour(glob->cr, style->stroke_colour);
|
|
|
|
ami_cairo_set_solid(glob->cr);
|
|
|
|
|
|
|
|
cairo_set_line_width(glob->cr, 1);
|
|
|
|
|
|
|
|
cairo_arc(glob->cr, x, y, radius, 0, M_PI * 2);
|
|
|
|
|
|
|
|
cairo_stroke(glob->cr);
|
|
|
|
}
|
2008-12-29 03:52:19 +03:00
|
|
|
#endif
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
bool ami_arc(int x, int y, int radius, int angle1, int angle2, const plot_style_t *style)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2008-12-28 03:41:35 +03:00
|
|
|
#ifdef NS_AMIGA_CAIRO
|
2009-07-14 14:03:58 +04:00
|
|
|
ami_cairo_set_colour(glob->cr, style->fill_colour);
|
2009-07-07 23:28:34 +04:00
|
|
|
ami_cairo_set_solid(glob->cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
2009-07-07 23:28:34 +04: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));
|
2009-07-07 23:28:34 +04: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
|
|
|
|
2009-07-14 14:03:58 +04:00
|
|
|
SetRPAttrs(&glob->rp,
|
|
|
|
RPTAG_APenColor,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8, style->fill_colour),
|
|
|
|
TAG_DONE);
|
2008-08-30 20:57:35 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
// DrawArc(&glob->rp,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
|
|
|
}
|
|
|
|
|
2009-06-30 17:02:23 +04:00
|
|
|
static bool ami_bitmap(int x, int y, int width, int height, struct bitmap *bitmap)
|
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-07-07 23:28:34 +04:00
|
|
|
if(((x + width) < glob->rect.MinX) ||
|
|
|
|
((y + height) < glob->rect.MinY) ||
|
|
|
|
(x > glob->rect.MaxX) ||
|
|
|
|
(y > glob->rect.MaxY))
|
2009-05-05 23:51:25 +04:00
|
|
|
return true;
|
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
tbm = ami_getcachenativebm(bitmap,width,height,glob->rp.BitMap);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-03-08 15:52:44 +03:00
|
|
|
if(!tbm) return true;
|
|
|
|
|
2009-05-07 22:40:33 +04:00
|
|
|
if(GfxBase->lib_Version >= 53) // AutoDoc says v52, but this function isn't in OS4.0, so checking for v53 (OS4.1)
|
|
|
|
{
|
|
|
|
uint32 comptype = COMPOSITE_Src;
|
|
|
|
if(!bitmap->opaque) comptype = COMPOSITE_Src_Over_Dest;
|
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
CompositeTags(comptype,tbm,glob->rp.BitMap,
|
2009-05-07 22:40:33 +04:00
|
|
|
COMPTAG_Flags,COMPFLAG_IgnoreDestAlpha,
|
2009-07-07 23:28:34 +04:00
|
|
|
COMPTAG_DestX,glob->rect.MinX,
|
|
|
|
COMPTAG_DestY,glob->rect.MinY,
|
|
|
|
COMPTAG_DestWidth,glob->rect.MaxX - glob->rect.MinX + 1,
|
|
|
|
COMPTAG_DestHeight,glob->rect.MaxY - glob->rect.MinY + 1,
|
2009-05-07 22:40:33 +04:00
|
|
|
COMPTAG_SrcWidth,width,
|
|
|
|
COMPTAG_SrcHeight,height,
|
|
|
|
COMPTAG_OffsetX,x,
|
|
|
|
COMPTAG_OffsetY,y,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
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,
|
2009-07-07 23:28:34 +04:00
|
|
|
BLITA_Dest,&glob->rp,
|
2008-12-26 21:36:53 +03:00
|
|
|
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,
|
2009-05-07 22:40:33 +04:00
|
|
|
// BLITA_Mask,0xFF,
|
2008-12-27 21:34:55 +03:00
|
|
|
BLITA_UseSrcAlpha,!bitmap->opaque,
|
2008-12-26 21:36:53 +03:00
|
|
|
TAG_DONE);
|
2009-05-07 22:40:33 +04:00
|
|
|
}
|
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,
|
2009-06-30 17:02:23 +04:00
|
|
|
bitmap_flags_t flags)
|
2008-08-02 18:31:32 +04:00
|
|
|
{
|
2009-05-26 23:02:51 +04:00
|
|
|
int xf,yf,xm,ym,oy,ox;
|
2009-02-25 03:26:46 +03:00
|
|
|
struct BitMap *tbm = NULL;
|
2009-05-26 23:02:51 +04:00
|
|
|
struct Hook *bfh = NULL;
|
2009-05-27 02:39:23 +04:00
|
|
|
struct bfbitmap bfbm;
|
2009-06-30 17:02:23 +04:00
|
|
|
bool repeat_x = (flags & BITMAPF_REPEAT_X);
|
|
|
|
bool repeat_y = (flags & BITMAPF_REPEAT_Y);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2009-02-25 02:47:58 +03:00
|
|
|
if(!(repeat_x || repeat_y))
|
2009-06-30 17:02:23 +04:00
|
|
|
return ami_bitmap(x, y, width, height, bitmap);
|
2009-02-25 02:47:58 +03:00
|
|
|
|
2009-08-17 15:48:56 +04:00
|
|
|
/* If it is a one pixel transparent image, we are wasting our time */
|
|
|
|
if((bitmap->opaque == false) && (bitmap->width == 1) && (bitmap->height == 1))
|
|
|
|
return true;
|
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
tbm = ami_getcachenativebm(bitmap,width,height,glob->rp.BitMap);
|
2009-02-25 02:47:58 +03:00
|
|
|
|
2009-03-08 15:52:44 +03:00
|
|
|
if(!tbm) return true;
|
|
|
|
|
2009-05-26 23:02:51 +04:00
|
|
|
ox = x;
|
|
|
|
oy = y;
|
|
|
|
|
2009-02-25 02:47:58 +03:00
|
|
|
/* get left most tile position */
|
2009-05-26 23:02:51 +04:00
|
|
|
for (; ox > 0; ox -= width)
|
|
|
|
;
|
2009-02-25 02:47:58 +03:00
|
|
|
|
|
|
|
/* get top most tile position */
|
2009-05-26 23:02:51 +04:00
|
|
|
for (; oy > 0; oy -= height)
|
|
|
|
;
|
2008-08-23 20:17:23 +04:00
|
|
|
|
2009-05-26 23:02:51 +04:00
|
|
|
if(ox<0) ox = -ox;
|
|
|
|
if(oy<0) oy = -oy;
|
2009-02-25 03:26:46 +03:00
|
|
|
|
2009-05-26 23:02:51 +04:00
|
|
|
if(repeat_x)
|
|
|
|
{
|
2009-07-07 23:28:34 +04:00
|
|
|
xf = glob->rect.MaxX;
|
|
|
|
xm = glob->rect.MinX;
|
2009-05-26 23:02:51 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
xf = x + width;
|
|
|
|
xm = x;
|
|
|
|
}
|
2009-05-07 22:40:33 +04:00
|
|
|
|
2009-05-26 23:02:51 +04:00
|
|
|
if(repeat_y)
|
|
|
|
{
|
2009-07-07 23:28:34 +04:00
|
|
|
yf = glob->rect.MaxY;
|
|
|
|
ym = glob->rect.MinY;
|
2009-05-26 23:02:51 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
yf = y + height;
|
|
|
|
ym = y;
|
2008-08-23 20:17:23 +04:00
|
|
|
}
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2009-05-27 02:39:23 +04:00
|
|
|
if(bitmap->opaque)
|
|
|
|
{
|
|
|
|
bfh = CreateBackFillHook(BFHA_BitMap,tbm,
|
2009-05-26 23:02:51 +04:00
|
|
|
BFHA_Width,width,
|
|
|
|
BFHA_Height,height,
|
|
|
|
BFHA_OffsetX,ox,
|
|
|
|
BFHA_OffsetY,oy,
|
|
|
|
TAG_DONE);
|
2009-05-27 02:39:23 +04:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bfbm.bm = tbm;
|
|
|
|
bfbm.width = width;
|
|
|
|
bfbm.height = height;
|
|
|
|
bfbm.offsetx = ox;
|
|
|
|
bfbm.offsety = oy;
|
|
|
|
bfh = AllocVec(sizeof(struct Hook),MEMF_CLEAR);
|
|
|
|
bfh->h_Entry = (HOOKFUNC)ami_bitmap_tile_hook;
|
|
|
|
bfh->h_SubEntry = 0;
|
|
|
|
bfh->h_Data = &bfbm;
|
|
|
|
}
|
2009-05-26 23:02:51 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
InstallLayerHook(glob->rp.Layer,bfh);
|
2009-05-26 23:02:51 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
EraseRect(&glob->rp,xm,ym,xf,yf);
|
2009-05-26 23:02:51 +04:00
|
|
|
|
2009-07-07 23:28:34 +04:00
|
|
|
InstallLayerHook(glob->rp.Layer,LAYERS_NOBACKFILL);
|
2009-05-27 02:39:23 +04:00
|
|
|
if(bitmap->opaque) DeleteBackFillHook(bfh);
|
|
|
|
else FreeVec(bfh);
|
2009-05-26 23:02:51 +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
|
|
|
}
|
|
|
|
|
2009-05-27 02:39:23 +04:00
|
|
|
static void ami_bitmap_tile_hook(struct Hook *hook,struct RastPort *rp,struct BackFillMessage *bfmsg)
|
|
|
|
{
|
|
|
|
int xf,yf;
|
|
|
|
struct bfbitmap *bfbm = (struct bfbitmap *)hook->h_Data;
|
|
|
|
|
|
|
|
/* tile down and across to extents (bfmsg->Bounds.MinX)*/
|
|
|
|
for (xf = -bfbm->offsetx; xf < bfmsg->Bounds.MaxX; xf += bfbm->width) {
|
|
|
|
for (yf = -bfbm->offsety; yf < bfmsg->Bounds.MaxY; yf += bfbm->height) {
|
|
|
|
|
|
|
|
if(GfxBase->lib_Version >= 53) // AutoDoc says v52, but this function isn't in OS4.0, so checking for v53 (OS4.1)
|
|
|
|
{
|
|
|
|
CompositeTags(COMPOSITE_Src_Over_Dest,bfbm->bm,rp->BitMap,
|
|
|
|
COMPTAG_Flags,COMPFLAG_IgnoreDestAlpha,
|
|
|
|
COMPTAG_DestX,bfmsg->Bounds.MinX,
|
|
|
|
COMPTAG_DestY,bfmsg->Bounds.MinY,
|
|
|
|
COMPTAG_DestWidth,bfmsg->Bounds.MaxX - bfmsg->Bounds.MinX + 1,
|
|
|
|
COMPTAG_DestHeight,bfmsg->Bounds.MaxY - bfmsg->Bounds.MinY + 1,
|
|
|
|
COMPTAG_SrcWidth,bfbm->width,
|
|
|
|
COMPTAG_SrcHeight,bfbm->height,
|
|
|
|
COMPTAG_OffsetX,xf,
|
|
|
|
COMPTAG_OffsetY,yf,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BltBitMapTags(BLITA_Width,bfbm->width,
|
|
|
|
BLITA_Height,bfbm->height,
|
|
|
|
BLITA_Source,bfbm->bm,
|
|
|
|
BLITA_Dest,rp,
|
|
|
|
BLITA_DestX,xf,
|
|
|
|
BLITA_DestY,yf,
|
|
|
|
BLITA_SrcType,BLITT_BITMAP,
|
|
|
|
BLITA_DestType,BLITT_RASTPORT,
|
|
|
|
BLITA_UseSrcAlpha,TRUE,
|
|
|
|
TAG_DONE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-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 */
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_get_matrix(glob->cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Set up line style and width */
|
2009-07-07 23:28:34 +04: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];
|
|
|
|
|
2009-07-07 23:28:34 +04: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) {
|
2009-07-07 23:28:34 +04: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) {
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_close_path(glob->cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
i++;
|
|
|
|
} else if (p[i] == PLOTTER_PATH_LINE) {
|
2009-07-07 23:28:34 +04: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) {
|
2009-07-07 23:28:34 +04: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 */
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_set_matrix(glob->cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Restore original CTM */
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_set_matrix(glob->cr, &old_ctm);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
|
|
|
/* Now draw path */
|
2009-07-14 14:57:07 +04:00
|
|
|
if (fill != NS_TRANSPARENT) {
|
2009-07-07 23:28:34 +04:00
|
|
|
ami_cairo_set_colour(glob->cr,fill);
|
2008-12-28 03:41:35 +03:00
|
|
|
|
2009-07-14 14:57:07 +04:00
|
|
|
if (c != NS_TRANSPARENT) {
|
2008-12-28 03:41:35 +03:00
|
|
|
/* Fill & Stroke */
|
2009-07-07 23:28:34 +04: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 */
|
2009-07-07 23:28:34 +04:00
|
|
|
cairo_fill(glob->cr);
|
2008-12-28 03:41:35 +03:00
|
|
|
}
|
2009-07-14 14:57:07 +04:00
|
|
|
} else if (c != NS_TRANSPARENT) {
|
2008-12-28 03:41:35 +03:00
|
|
|
/* Stroke only */
|
2009-07-07 23:28:34 +04: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
|
|
|
}
|