2008-08-02 18:31:32 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Chris Young <chris@unsatisfactorysoftware.co.uk>
|
|
|
|
*
|
|
|
|
* 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-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,
|
2008-09-20 18:06:28 +04:00
|
|
|
false // option_knockout
|
2008-08-02 18:31:32 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
bool ami_clg(colour 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);
|
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_rectangle(int x0, int y0, int width, int height,
|
|
|
|
int line_width, colour c, bool dotted, bool dashed)
|
|
|
|
{
|
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-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-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-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_polygon(int *p, unsigned int n, colour fill)
|
|
|
|
{
|
2008-08-15 22:49:14 +04:00
|
|
|
int k;
|
|
|
|
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-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-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-08-30 20:57:35 +04:00
|
|
|
//DebugPrintF("fill %ld,%ld,%ld,%ld\n",x0,y0,x1,y1);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2008-08-07 22:44:28 +04:00
|
|
|
p96RectFill(currp,x0,y0,x1,y1,
|
|
|
|
p96EncodeColor(RGBFB_A8B8G8R8,c));
|
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_clip(int x0, int y0, int x1, int y1)
|
|
|
|
{
|
2008-08-30 20:57:35 +04:00
|
|
|
struct Region *reg = NULL;
|
|
|
|
struct Rectangle rect;
|
2008-08-22 01:42:48 +04:00
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
if(currp->Layer)
|
|
|
|
{
|
|
|
|
reg = NewRegion();
|
|
|
|
|
|
|
|
rect.MinX = x0;
|
|
|
|
rect.MinY = y0;
|
|
|
|
rect.MaxX = x1-1;
|
|
|
|
rect.MaxY = y1-1;
|
|
|
|
|
|
|
|
OrRectRegion(reg,&rect);
|
|
|
|
|
|
|
|
reg = InstallClipRegion(currp->Layer,reg);
|
|
|
|
|
|
|
|
if(reg) DisposeRegion(reg);
|
|
|
|
}
|
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)
|
|
|
|
{
|
2008-08-23 20:17:23 +04:00
|
|
|
char *buffer = NULL;
|
2008-08-17 20:22:40 +04:00
|
|
|
struct TextFont *tfont = ami_open_font(style);
|
2008-08-07 22:44:28 +04:00
|
|
|
|
|
|
|
SetRPAttrs(currp,RPTAG_APenColor,p96EncodeColor(RGBFB_A8B8G8R8,c),
|
|
|
|
RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,bg),
|
2008-08-10 13:57:41 +04:00
|
|
|
// RPTAG_Font,tfont,
|
2008-08-07 22:44:28 +04:00
|
|
|
TAG_DONE);
|
2008-08-23 20:17:23 +04:00
|
|
|
|
|
|
|
utf8_to_local_encoding(text,length,&buffer);
|
|
|
|
|
|
|
|
if(!buffer) return true;
|
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
/* Below function prints Unicode text direct to the RastPort.
|
|
|
|
* This is commented out due to lack of SDK which allows me to perform blits
|
|
|
|
* that respect the Alpha channel. The code below that (and above) convert to
|
|
|
|
* system default charset and write the text using graphics.library functions.
|
|
|
|
*
|
|
|
|
* ami_unicode_text(currp,text,length,style,x,y,c);
|
2008-09-20 18:06:28 +04:00
|
|
|
*
|
|
|
|
* or, perhaps the ttengine.library version (far too slow):
|
|
|
|
* ami_tte_text(currp,text,length);
|
2008-08-30 20:57:35 +04:00
|
|
|
*/
|
2008-08-07 22:44:28 +04:00
|
|
|
Move(currp,x,y);
|
2008-08-23 20:17:23 +04:00
|
|
|
Text(currp,buffer,strlen(buffer));
|
2008-08-15 22:49:14 +04:00
|
|
|
|
2008-08-17 20:22:40 +04:00
|
|
|
ami_close_font(tfont);
|
2008-08-23 20:17:23 +04:00
|
|
|
ami_utf8_free(buffer);
|
2008-08-17 20:22:40 +04:00
|
|
|
|
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-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-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_arc(int x, int y, int radius, int angle1, int angle2,
|
|
|
|
colour c)
|
|
|
|
{
|
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-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
|
|
|
{
|
|
|
|
struct RenderInfo ri;
|
|
|
|
|
2008-08-22 01:42:48 +04:00
|
|
|
// ami_fill(x,y,x+width,y+height,bg);
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
SetRPAttrs(currp,RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,bg),
|
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-02 18:31:32 +04:00
|
|
|
ri.Memory = bitmap->pixdata;
|
2008-08-07 22:44:28 +04:00
|
|
|
ri.BytesPerRow = bitmap->width * 4;
|
2008-08-07 23:05:44 +04:00
|
|
|
ri.RGBFormat = RGBFB_R8G8B8A8;
|
2008-08-07 22:44:28 +04:00
|
|
|
|
2008-09-28 00:55:11 +04:00
|
|
|
/* check for black boxes under images! */
|
|
|
|
/* disabled temporarily for SAM OS4.1
|
2008-08-30 20:57:35 +04:00
|
|
|
if((bitmap->width != width) || (bitmap->height != height))
|
|
|
|
{
|
|
|
|
struct BitMap *tbm;
|
|
|
|
struct RastPort trp;
|
|
|
|
struct BitScaleArgs bsa;
|
|
|
|
|
|
|
|
tbm = p96AllocBitMap(bitmap->width,bitmap->height,32,0,currp->BitMap,RGBFB_R8G8B8A8);
|
|
|
|
InitRastPort(&trp);
|
|
|
|
trp.BitMap = tbm;
|
|
|
|
p96WritePixelArray((struct RenderInfo *)&ri,0,0,&trp,0,0,bitmap->width,bitmap->height);
|
|
|
|
bsa.bsa_SrcX = 0;
|
|
|
|
bsa.bsa_SrcY = 0;
|
|
|
|
bsa.bsa_SrcWidth = bitmap->width;
|
|
|
|
bsa.bsa_SrcHeight = bitmap->height;
|
|
|
|
bsa.bsa_DestX = x;
|
|
|
|
bsa.bsa_DestY = y;
|
|
|
|
bsa.bsa_DestWidth = width;
|
|
|
|
bsa.bsa_DestHeight = height;
|
|
|
|
bsa.bsa_XSrcFactor = bitmap->width;
|
|
|
|
bsa.bsa_XDestFactor = width;
|
|
|
|
bsa.bsa_YSrcFactor = bitmap->height;
|
|
|
|
bsa.bsa_YDestFactor = height;
|
|
|
|
bsa.bsa_SrcBitMap = tbm;
|
|
|
|
bsa.bsa_DestBitMap = currp->BitMap;
|
|
|
|
bsa.bsa_Flags = 0;
|
|
|
|
|
|
|
|
BitMapScale(&bsa);
|
|
|
|
p96FreeBitMap(tbm);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-09-28 00:55:11 +04:00
|
|
|
*/
|
2008-08-30 20:57:35 +04:00
|
|
|
p96WritePixelArray((struct RenderInfo *)&ri,0,0,currp,x,y,width,height);
|
2008-09-28 00:55:11 +04:00
|
|
|
// }
|
2008-08-02 18:31:32 +04:00
|
|
|
|
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
|
|
|
{
|
2008-08-10 13:57:41 +04:00
|
|
|
struct RenderInfo ri;
|
2008-08-23 20:17:23 +04:00
|
|
|
ULONG xf,yf,wf,hf;
|
2008-08-10 13:57:41 +04:00
|
|
|
|
2008-08-30 20:57:35 +04:00
|
|
|
//DebugPrintF("bitmap tile plotter\n");
|
2008-08-15 22:49:14 +04:00
|
|
|
|
|
|
|
SetRPAttrs(currp,RPTAG_BPenColor,p96EncodeColor(RGBFB_A8B8G8R8,bg),
|
|
|
|
TAG_DONE);
|
|
|
|
|
2008-08-10 13:57:41 +04:00
|
|
|
ri.Memory = bitmap->pixdata;
|
|
|
|
ri.BytesPerRow = bitmap->width * 4;
|
|
|
|
ri.RGBFormat = RGBFB_R8G8B8A8;
|
|
|
|
|
2008-08-23 20:17:23 +04:00
|
|
|
/*
|
|
|
|
if(repeat_x) printf("repeatx\n");
|
|
|
|
if(repeat_y) printf("repeaty\n");
|
|
|
|
*/
|
|
|
|
for(xf=0;xf<width;xf+=bitmap->width)
|
|
|
|
{
|
|
|
|
for(yf=0;yf<height;yf+=bitmap->height)
|
|
|
|
{
|
|
|
|
if(width > xf+bitmap->width)
|
|
|
|
{
|
|
|
|
wf = width-(xf+bitmap->width);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wf=bitmap->width;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(height > yf+bitmap->height)
|
|
|
|
{
|
|
|
|
hf = height-(yf+bitmap->height);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
hf=bitmap->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
p96WritePixelArray((struct RenderInfo *)&ri,0,0,currp,x+xf,y+yf,wf,hf);
|
|
|
|
}
|
|
|
|
}
|
2008-08-10 13:57:41 +04: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
|
|
|
}
|
|
|
|
|
|
|
|
bool ami_path(float *p, unsigned int n, colour fill, float width,
|
|
|
|
colour c, float *transform)
|
|
|
|
{
|
2008-08-30 20:57:35 +04:00
|
|
|
/* Not implemented yet - unable to locate website which requires this plotter! */
|
2008-08-07 22:44:28 +04:00
|
|
|
return true;
|
2008-08-02 18:31:32 +04:00
|
|
|
}
|