/***********************************************************
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.

                        All Rights Reserved

Permission to use, copy, modify, and distribute this software and its 
documentation for any purpose and without fee is hereby granted, 
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 names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.  

DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL 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.

******************************************************************/
/* $Header: midash.c,v 1.6 87/06/15 00:41:05 sue Exp $ */
#include "miscstruct.h"
#include "mistruct.h"
#include "X.h"
#include "Xmd.h"
#include "opaque.h"
#include "misc.h"
#include "os.h"

miDashPtr CheckDashStorage();

/* return a list of DashRec.  there will be an extra
entry at the end holding the last point of the polyline.
   this means that the code that actually draws dashes can
get a pair of points for every dash.  only the point in the last
dash record is useful; the other fields are not used.
   nseg is the number of segments, not the number of points.

example:

   dash1.start
   dash2.start
   dash3.start
   last-point

defines a list of segments
   (dash1.pt, dash2.pt)
   (dash2.pt, dash3.pt)
   (dash3.pt, last-point)
and nseg == 3.

NOTE:
    EVEN←DASH == ~ODD←DASH
*/

miDashPtr
miDashLine(npt, ppt, nDash, pDash, offset, pnseg)
int npt;
DDXPointPtr ppt;
int nDash;
unsigned char *pDash;
int offset;
int *pnseg;
{
    DDXPointRec pt1, pt2;
    int lenCur;		/* npt used from this dash */
    int lenMax;		/* npt in this dash */
    int iDash = 0;	/* index of current dash */
    int which;		/* EVEN←DASH or ODD←DASH */
    miDashPtr pseg;	/* list of dash segments */
    miDashPtr psegBase;	/* start of list */
    int nseg = 0;	/* number of dashes so far */
    int nsegMax = 0;	/* num segs we can fit in this list */

    int x, y, len;
    int adx, ady, signdx, signdy;
    int du, dv, e1, e2, e;

    lenCur = offset;
    which = EVEN←DASH;
    while(lenCur > pDash[iDash])
    {
	lenCur -= pDash[iDash];
	iDash = (++iDash > nDash) ? iDash : 0;
	which = ~which;
    }
    lenMax = pDash[iDash];

    psegBase = (miDashPtr)NULL;

    while(--npt)
    {
	pt1 = *ppt++;
	pt2 = *ppt;

	adx = pt2.x - pt1.x;
	ady = pt2.y - pt1.y;
	signdx = sign(adx);
	signdy = sign(ady);
	adx = abs(adx);
	ady = abs(ady);

	if (adx > ady)
	{
	    du = adx;
	    dv = ady;
	    len = adx;
	}
	else
	{
	    du = ady;
	    dv = adx;
	    len = ady;
	}

	e1 = dv * 2;
	e2 = e1 - 2*du;
	e = e1 - du;
	x = pt1.x;
	y = pt1.y;

	nseg++;
	pseg = CheckDashStorage(&psegBase, nseg, &nsegMax);
	pseg->pt = pt1;
	pseg->e1 = e1;
	pseg->e2 = e2;
	pseg->e = e;
	pseg->which = which;
	pseg->newLine = 1;

	while (len--)
	{
	    if (adx > ady)
	    {
		/* X←AXIS */
		if (((signdx > 0) && (e < 0)) ||
		    ((signdx <=0) && (e <=0))
		   )
		{
		    e += e1;
		}
		else
		{
		    y += signdy;
		    e += e2;
		}
		x += signdx;
	    }
	    else
	    {
		/* Y←AXIS */
		if (((signdx > 0) && (e < 0)) ||
		    ((signdx <=0) && (e <=0))
		   )
		{
		    e +=e1;
		}
		else
		{
		    x += signdx;
		    e += e2;
		}
		y += signdy;
	    }

	    lenCur++;
	    if (lenCur >= lenMax)
	    {
		nseg++;
		pseg = CheckDashStorage(&psegBase, nseg, &nsegMax);
		pseg->pt.x = x;
		pseg->pt.y = y;
		pseg->e1 = e1;
		pseg->e2 = e2;
		pseg->e = e;
		which = ~which;
		pseg->which = which;
		pseg->newLine = 0;

		/* move on to next dash */
		iDash = (++iDash < nDash) ? iDash : 0;
		lenMax = pDash[iDash];
		lenCur = 0;
	    }
	} /* while len-- */
    } /* while --npt */

    *pnseg = nseg;
    pseg = CheckDashStorage(&psegBase, nseg+1, &nsegMax);
    pseg->pt = pt2;
    return psegBase;
} 


#define NSEGDELTA 16

/* returns a pointer to the pseg[nseg-1], growing the storage as
necessary.  this interface seems unnecessarily cumbersome.

*/

static
miDashPtr
CheckDashStorage(ppseg, nseg, pnsegMax)
miDashPtr *ppseg;		/* base pointer */
int nseg;			/* number of segment we want to write to */
int *pnsegMax;			/* size (in segments) of list so far */
{
    if (nseg > *pnsegMax)
    {
	*pnsegMax += NSEGDELTA;
	*ppseg = (miDashPtr)Xrealloc(*ppseg, 
				     (*pnsegMax)*sizeof(miDashRec));
    }
    return(*ppseg+(nseg-1));
}