cairo/xrstroker.c

228 lines
5.3 KiB
C
Raw Normal View History

/*
* $XFree86: $
*
* Copyright <EFBFBD> 2002 Carl D. Worth
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without
* fee, provided that the above copyright notice appear in all copies
* and that both that copyright notice and this permission notice
* appear in supporting documentation, and that the name of Carl
* D. Worth not be used in advertising or publicity pertaining to
* distribution of the software without specific, written prior
* permission. Carl D. Worth makes no representations about the
* suitability of this software for any purpose. It is provided "as
* is" without express or implied warranty.
*
* CARL D. WORTH DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS, IN NO EVENT SHALL CARL D. WORTH BE LIABLE FOR ANY SPECIAL,
* INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
* RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
* IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "xrint.h"
/* private functions */
static void
_TranslatePoint(XPointFixed *pt, XPointFixed *offset);
void
XrStrokerInit(XrStroker *stroker, XrGState *gstate, XrTraps *traps)
{
stroker->gstate = gstate;
stroker->traps = traps;
2002-08-14 18:32:42 +00:00
stroker->have_prev = 0;
}
void
XrStrokerDeinit(XrStroker *stroker)
{
/* nothing to do here */
}
static void
_TranslatePoint(XPointFixed *pt, XPointFixed *offset)
{
pt->x += offset->x;
pt->y += offset->y;
}
2002-08-14 19:19:33 +00:00
static int
XrStrokerFaceClockwise(XrStrokeFace *in, XrStrokeFace *out)
{
XPointFixed d_in, d_out;
d_in.x = in->cw.x - in->pt.x;
d_in.y = in->cw.y - in->pt.y;
d_out.x = out->cw.x - in->pt.x;
d_out.y = out->cw.y - in->pt.y;
return d_out.y * d_in.x > d_in.y * d_out.x;
}
2002-08-14 18:32:42 +00:00
void
2002-08-14 19:19:33 +00:00
XrStrokerJoin(XrStroker *stroker, XrStrokeFace *in, XrStrokeFace *out)
2002-08-14 18:32:42 +00:00
{
2002-08-14 19:19:33 +00:00
XrGState *gstate = stroker->gstate;
int clockwise = XrStrokerFaceClockwise (in, out);
switch (gstate->stroke_style.line_join) {
case XrLineJoinRound: {
}
case XrLineJoinMiter: {
}
case XrLineJoinBevel: {
XPointFixed t[3];
t[0].x = in->pt.x;
t[0].y = in->pt.y;
if (clockwise) {
t[1].x = in->cw.x;
t[1].y = in->cw.y;
t[2].x = out->cw.x;
t[2].y = out->cw.y;
} else {
t[1].x = in->ccw.x;
t[1].y = in->ccw.y;
t[2].x = out->ccw.x;
t[2].y = out->ccw.y;
}
XrTrapsTessellateTriangle (stroker->traps, t);
break;
}
}
2002-08-14 18:32:42 +00:00
}
void
XrStrokerCap(XrStroker *stroker, XrStrokeFace *f)
{
}
void
XrStrokerAddEdge(void *closure, XPointFixed *p1, XPointFixed *p2)
{
XrStroker *stroker = closure;
XrGState *gstate = stroker->gstate;
XrStrokeStyle *style = &gstate->stroke_style;
XrTraps *traps = stroker->traps;
double mag, tmp;
XPointDouble vector;
2002-08-14 18:32:42 +00:00
XPointFixed offset_ccw, offset_cw;
XPointFixed quad[4];
2002-08-14 18:32:42 +00:00
XrStrokeFace face;
vector.x = XFixedToDouble(p2->x - p1->x);
vector.y = XFixedToDouble(p2->y - p1->y);
mag = sqrt(vector.x * vector.x + vector.y * vector.y);
if (mag == 0) {
return;
}
vector.x /= mag;
vector.y /= mag;
XrTransformPointWithoutTranslate(&gstate->ctm_inverse, &vector);
tmp = vector.x;
vector.x = vector.y * (style->line_width / 2.0);
vector.y = - tmp * (style->line_width / 2.0);
XrTransformPointWithoutTranslate(&gstate->ctm, &vector);
2002-08-14 18:32:42 +00:00
offset_ccw.x = XDoubleToFixed(vector.x);
offset_ccw.y = XDoubleToFixed(vector.y);
offset_cw.x = -offset_ccw.x;
offset_cw.y = -offset_ccw.y;
quad[0] = *p1;
2002-08-14 18:32:42 +00:00
_TranslatePoint(&quad[0], &offset_cw);
quad[1] = *p1;
_TranslatePoint(&quad[1], &offset_ccw);
quad[2] = *p2;
2002-08-14 19:19:33 +00:00
_TranslatePoint(&quad[2], &offset_ccw);
2002-08-14 18:32:42 +00:00
quad[3] = *p2;
2002-08-14 19:19:33 +00:00
_TranslatePoint(&quad[3], &offset_cw);
2002-08-14 18:32:42 +00:00
2002-08-14 19:19:33 +00:00
face.cw = quad[0];
face.pt = *p1;
face.ccw = quad[1];
2002-08-14 18:32:42 +00:00
if (stroker->have_prev)
XrStrokerJoin (stroker, &stroker->prev, &face);
2002-08-14 19:19:33 +00:00
else {
stroker->have_prev = 1;
2002-08-14 18:32:42 +00:00
stroker->first = face;
2002-08-14 19:19:33 +00:00
}
stroker->prev.ccw = quad[2];
stroker->prev.pt = *p2;
stroker->prev.cw = quad[3];
2002-08-14 18:32:42 +00:00
XrTrapsTessellateConvexQuad(traps, quad);
}
2002-08-14 18:32:42 +00:00
void
XrStrokerDoneSubPath (void *closure, XrSubPathDone done)
{
XrStroker *stroker = closure;
switch (done) {
case XrSubPathDoneCap:
XrStrokerCap (stroker, &stroker->first);
XrStrokerCap (stroker, &stroker->prev);
break;
case XrSubPathDoneJoin:
XrStrokerJoin (stroker, &stroker->prev, &stroker->first);
break;
}
}
/* These functions aren't written yet... */
#if 0
static void
_XrGStateStrokerCap(XrGState *gstate,
const XPointDouble *p1, const XPointDouble *p2,
XrTraps *traps)
{
switch (gstate->line_cap) {
case XrLineCapRound:
/* XXX: NYI */
break;
case XrLineCapSquare:
/* XXX: NYI */
break;
case XrLineCapButt:
default:
/* XXX: NYI */
break;
}
}
static void
_XrGStateStrokerJoin(XrGState *gstate,
const XPointDouble *p1, const XPointDouble *p2, const XPointDouble *p3,
XrTraps *traps)
{
switch (gstate->line_join) {
case XrLineJoinMiter:
/* XXX: NYI */
break;
case XrLineJoinRound:
/* XXX: NYI */
break;
case XrLineJoinBevel:
default:
/* XXX: NYI */
break;
}
}
#endif