OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [tags/] [MW_0_8_9PRE7/] [mw/] [src/] [engine/] [devclip2.c] - Diff between revs 674 and 1765

Only display areas with differences | Details | Blame | View Log

Rev 674 Rev 1765
/*
/*
 * Copyright (c) 2000 Greg Haerr <greg@censoft.com>
 * Copyright (c) 2000 Greg Haerr <greg@censoft.com>
 * Copyright (c) 1991 David I. Bell
 * Copyright (c) 1991 David I. Bell
 * Permission is granted to use, distribute, or modify this source,
 * Permission is granted to use, distribute, or modify this source,
 * provided that this copyright notice remains intact.
 * provided that this copyright notice remains intact.
 *
 *
 * DYNAMICREGIONS Device-independent routines to set clipping regions.
 * DYNAMICREGIONS Device-independent routines to set clipping regions.
 */
 */
#include <stdio.h>
#include <stdio.h>
#include "device.h"
#include "device.h"
 
 
/* Clip cache rectangle information.
/* Clip cache rectangle information.
 * After calling GdClipPoint, this rectangle is guaranteed to contain the
 * After calling GdClipPoint, this rectangle is guaranteed to contain the
 * specified point (among others), and all points in the rectangle are
 * specified point (among others), and all points in the rectangle are
 * plottable or not according to the value of clipresult.
 * plottable or not according to the value of clipresult.
 */
 */
MWCOORD clipminx;               /* minimum x value of cache rectangle */
MWCOORD clipminx;               /* minimum x value of cache rectangle */
MWCOORD clipminy;               /* minimum y value of cache rectangle */
MWCOORD clipminy;               /* minimum y value of cache rectangle */
MWCOORD clipmaxx;               /* maximum x value of cache rectangle */
MWCOORD clipmaxx;               /* maximum x value of cache rectangle */
MWCOORD clipmaxy;               /* maximum y value of cache rectangle */
MWCOORD clipmaxy;               /* maximum y value of cache rectangle */
 
 
static MWBOOL   clipresult;     /* whether clip rectangle is plottable */
static MWBOOL   clipresult;     /* whether clip rectangle is plottable */
MWCLIPREGION *clipregion = NULL;
MWCLIPREGION *clipregion = NULL;
 
 
/*
/*
 * Set a clip region for future drawing actions.
 * Set a clip region for future drawing actions.
 * Each pixel will be drawn only if lies in one or more of the contained
 * Each pixel will be drawn only if lies in one or more of the contained
 * clip rectangles.  All clip rectangles are modified
 * clip rectangles.  All clip rectangles are modified
 * if necessary to lie within the device area.  Call only after device
 * if necessary to lie within the device area.  Call only after device
 * has been initialized.
 * has been initialized.
 */
 */
void
void
GdSetClipRegion(PSD psd, MWCLIPREGION *reg)
GdSetClipRegion(PSD psd, MWCLIPREGION *reg)
{
{
  if(clipregion)
  if(clipregion)
        GdDestroyRegion(clipregion);
        GdDestroyRegion(clipregion);
 
 
  if(!reg)
  if(!reg)
          reg = GdAllocRegion();
          reg = GdAllocRegion();
 
 
  clipregion = reg;
  clipregion = reg;
 
 
 
 
#if 0
#if 0
  MWRECT        rc;
  MWRECT        rc;
  /* Copy the clip table to our own static array, modifying each
  /* Copy the clip table to our own static array, modifying each
   * rectangle as necesary to fit within the device area.  If the clip
   * rectangle as necesary to fit within the device area.  If the clip
   * rectangle lies entirely outside of the device area, then skip it.
   * rectangle lies entirely outside of the device area, then skip it.
   */
   */
  while (count-- > 0) {
  while (count-- > 0) {
        MWCLIPRECT cr;
        MWCLIPRECT cr;
        MWCLIPRECT *rp = &cr;
        MWCLIPRECT *rp = &cr;
 
 
        *rp = *table++;
        *rp = *table++;
        if (rp->x < 0) {
        if (rp->x < 0) {
                rp->width += rp->x;
                rp->width += rp->x;
                rp->x = 0;
                rp->x = 0;
        }
        }
        if (rp->y < 0) {
        if (rp->y < 0) {
                rp->height += rp->y;
                rp->height += rp->y;
                rp->y = 0;
                rp->y = 0;
        }
        }
        if ((rp->x >= psd->xvirtres) || (rp->width <= 0) ||
        if ((rp->x >= psd->xvirtres) || (rp->width <= 0) ||
            (rp->y >= psd->yvirtres) || (rp->height <= 0))
            (rp->y >= psd->yvirtres) || (rp->height <= 0))
                continue;
                continue;
        if (rp->x + rp->width > psd->xvirtres)
        if (rp->x + rp->width > psd->xvirtres)
                rp->width = psd->xvirtres - rp->x;
                rp->width = psd->xvirtres - rp->x;
        if (rp->y + rp->height > psd->yvirtres)
        if (rp->y + rp->height > psd->yvirtres)
                rp->height = psd->yvirtres - rp->y;
                rp->height = psd->yvirtres - rp->y;
        rc.left = rp->x;
        rc.left = rp->x;
        rc.top = rp->y;
        rc.top = rp->y;
        rc.right = rp->x+rp->width;
        rc.right = rp->x+rp->width;
        rc.bottom = rp->y+rp->height;
        rc.bottom = rp->y+rp->height;
        GdUnionRectWithRegion(&rc, clipregion);
        GdUnionRectWithRegion(&rc, clipregion);
  }
  }
#endif
#endif
 
 
  /* If there were no surviving clip rectangles, then set the clip
  /* If there were no surviving clip rectangles, then set the clip
   * cache to prevent all drawing.
   * cache to prevent all drawing.
   */
   */
  if (clipregion->numRects == 0) {
  if (clipregion->numRects == 0) {
        clipminx = MIN_MWCOORD;
        clipminx = MIN_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipresult = FALSE;
        clipresult = FALSE;
        return;
        return;
  }
  }
 
 
  /* There was at least one valid clip rectangle. Default the clip
  /* There was at least one valid clip rectangle. Default the clip
   * cache to be the first clip rectangle.
   * cache to be the first clip rectangle.
   */
   */
  clipminx = clipregion->rects[0].left;
  clipminx = clipregion->rects[0].left;
  clipminy = clipregion->rects[0].top;
  clipminy = clipregion->rects[0].top;
  clipmaxx = clipregion->rects[0].right - 1;
  clipmaxx = clipregion->rects[0].right - 1;
  clipmaxy = clipregion->rects[0].bottom - 1;
  clipmaxy = clipregion->rects[0].bottom - 1;
  clipresult = TRUE;
  clipresult = TRUE;
}
}
 
 
 
 
/* Check a point against the list of clip rectangles.
/* Check a point against the list of clip rectangles.
 * Returns TRUE if the point is within one or more rectangles and thus
 * Returns TRUE if the point is within one or more rectangles and thus
 * can be plotted, or FALSE if the point is not within any rectangle and
 * can be plotted, or FALSE if the point is not within any rectangle and
 * thus cannot be plotted.  Also remembers the coordinates of a clip cache
 * thus cannot be plotted.  Also remembers the coordinates of a clip cache
 * rectangle containing the specified point such that every point in the
 * rectangle containing the specified point such that every point in the
 * rectangle would give the same result.  By examining this clip cache
 * rectangle would give the same result.  By examining this clip cache
 * rectangle after a call to this routine, the caller can efficiently
 * rectangle after a call to this routine, the caller can efficiently
 * check many nearby points without needing any further calls.  If the
 * check many nearby points without needing any further calls.  If the
 * point lies within the cursor, then the cursor is removed.
 * point lies within the cursor, then the cursor is removed.
 */
 */
MWBOOL
MWBOOL
GdClipPoint(PSD psd,MWCOORD x,MWCOORD y)
GdClipPoint(PSD psd,MWCOORD x,MWCOORD y)
{
{
  int count;
  int count;
  MWRECT *rp;
  MWRECT *rp;
  MWCOORD temp;
  MWCOORD temp;
 
 
  /* First see whether the point lies within the current clip cache
  /* First see whether the point lies within the current clip cache
   * rectangle.  If so, then we already know the result.
   * rectangle.  If so, then we already know the result.
   */
   */
  if ((x >= clipminx) && (x <= clipmaxx) &&
  if ((x >= clipminx) && (x <= clipmaxx) &&
      (y >= clipminy) && (y <= clipmaxy)) {
      (y >= clipminy) && (y <= clipmaxy)) {
        if (clipresult) GdCheckCursor(psd, x, y, x, y);
        if (clipresult) GdCheckCursor(psd, x, y, x, y);
        return clipresult;
        return clipresult;
  }
  }
 
 
  /* If the point is outside of the screen area, then it is not
  /* If the point is outside of the screen area, then it is not
   * plottable, and the clip cache rectangle is the whole half-plane
   * plottable, and the clip cache rectangle is the whole half-plane
   * outside of the screen area.
   * outside of the screen area.
   */
   */
  if (x < 0) {
  if (x < 0) {
        clipminx = MIN_MWCOORD;
        clipminx = MIN_MWCOORD;
        clipmaxx = -1;
        clipmaxx = -1;
        clipminy = MIN_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipresult = FALSE;
        clipresult = FALSE;
        return FALSE;
        return FALSE;
  }
  }
  if (y < 0) {
  if (y < 0) {
        clipminx = MIN_MWCOORD;
        clipminx = MIN_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipmaxy = -1;
        clipmaxy = -1;
        clipresult = FALSE;
        clipresult = FALSE;
        return FALSE;
        return FALSE;
  }
  }
  if (x >= psd->xvirtres) {
  if (x >= psd->xvirtres) {
        clipminx = psd->xvirtres;
        clipminx = psd->xvirtres;
        clipmaxx = MAX_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipminy = MIN_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipresult = FALSE;
        clipresult = FALSE;
        return FALSE;
        return FALSE;
  }
  }
  if (y >= psd->yvirtres) {
  if (y >= psd->yvirtres) {
        clipminx = MIN_MWCOORD;
        clipminx = MIN_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipmaxx = MAX_MWCOORD;
        clipminy = psd->yvirtres;
        clipminy = psd->yvirtres;
        clipmaxy = MAX_MWCOORD;
        clipmaxy = MAX_MWCOORD;
        clipresult = FALSE;
        clipresult = FALSE;
        return FALSE;
        return FALSE;
  }
  }
 
 
  /* The point is within the screen area. If there are no clip
  /* The point is within the screen area. If there are no clip
   * rectangles, then the point is plottable and the rectangle is the
   * rectangles, then the point is plottable and the rectangle is the
   * whole screen.
   * whole screen.
   */
   */
  count = clipregion->numRects;
  count = clipregion->numRects;
  if (count <= 0) {
  if (count <= 0) {
        clipminx = 0;
        clipminx = 0;
        clipmaxx = psd->xvirtres - 1;
        clipmaxx = psd->xvirtres - 1;
        clipminy = 0;
        clipminy = 0;
        clipmaxy = psd->yvirtres - 1;
        clipmaxy = psd->yvirtres - 1;
        clipresult = TRUE;
        clipresult = TRUE;
        GdCheckCursor(psd, x, y, x, y);
        GdCheckCursor(psd, x, y, x, y);
        return TRUE;
        return TRUE;
  }
  }
 
 
  /* We need to scan the list of clip rectangles to calculate a new
  /* We need to scan the list of clip rectangles to calculate a new
   * clip cache rectangle containing this point, and the result. First
   * clip cache rectangle containing this point, and the result. First
   * see if the point lies within any of the clip rectangles. If so,
   * see if the point lies within any of the clip rectangles. If so,
   * then it is plottable and use that clip rectangle as the cache
   * then it is plottable and use that clip rectangle as the cache
   * rectangle.  This is not necessarily the best result, but works ok
   * rectangle.  This is not necessarily the best result, but works ok
   * and is fast.
   * and is fast.
   */
   */
  for (rp = clipregion->rects; count-- > 0; rp++) {
  for (rp = clipregion->rects; count-- > 0; rp++) {
        if ((x >= rp->left) && (y >= rp->top) && (x < rp->right)
        if ((x >= rp->left) && (y >= rp->top) && (x < rp->right)
            && (y < rp->bottom)) {
            && (y < rp->bottom)) {
                clipminx = rp->left;
                clipminx = rp->left;
                clipminy = rp->top;
                clipminy = rp->top;
                clipmaxx = rp->right - 1;
                clipmaxx = rp->right - 1;
                clipmaxy = rp->bottom - 1;
                clipmaxy = rp->bottom - 1;
                clipresult = TRUE;
                clipresult = TRUE;
                GdCheckCursor(psd, x, y, x, y);
                GdCheckCursor(psd, x, y, x, y);
                return TRUE;
                return TRUE;
        }
        }
  }
  }
 
 
  /* The point is not plottable. Scan the clip rectangles again to
  /* The point is not plottable. Scan the clip rectangles again to
   * determine a rectangle containing more non-plottable points.
   * determine a rectangle containing more non-plottable points.
   * Simply pick the largest rectangle whose area doesn't contain any
   * Simply pick the largest rectangle whose area doesn't contain any
   * of the same coordinates as appropriate sides of the clip
   * of the same coordinates as appropriate sides of the clip
   * rectangles.  This is not necessarily the best result, but works ok
   * rectangles.  This is not necessarily the best result, but works ok
   * and is fast.
   * and is fast.
   */
   */
  clipminx = MIN_MWCOORD;
  clipminx = MIN_MWCOORD;
  clipminy = MIN_MWCOORD;
  clipminy = MIN_MWCOORD;
  clipmaxx = MAX_MWCOORD;
  clipmaxx = MAX_MWCOORD;
  clipmaxy = MAX_MWCOORD;
  clipmaxy = MAX_MWCOORD;
  count = clipregion->numRects;
  count = clipregion->numRects;
  for (rp = clipregion->rects; count-- > 0; rp++) {
  for (rp = clipregion->rects; count-- > 0; rp++) {
        if ((x < rp->left) && (rp->left <= clipmaxx)) clipmaxx = rp->left - 1;
        if ((x < rp->left) && (rp->left <= clipmaxx)) clipmaxx = rp->left - 1;
        temp = rp->right - 1;
        temp = rp->right - 1;
        if ((x > temp) && (temp >= clipminx)) clipminx = temp + 1;
        if ((x > temp) && (temp >= clipminx)) clipminx = temp + 1;
        if ((y < rp->top) && (rp->top <= clipmaxy)) clipmaxy = rp->top - 1;
        if ((y < rp->top) && (rp->top <= clipmaxy)) clipmaxy = rp->top - 1;
        temp = rp->bottom - 1;
        temp = rp->bottom - 1;
        if ((y > temp) && (temp >= clipminy)) clipminy = temp + 1;
        if ((y > temp) && (temp >= clipminy)) clipminy = temp + 1;
  }
  }
  clipresult = FALSE;
  clipresult = FALSE;
  return FALSE;
  return FALSE;
}
}
 
 
 
 
/* Check the area determined by the specified pair of points against the
/* Check the area determined by the specified pair of points against the
 * list of clip rectangles.  The area will either be totally visible,
 * list of clip rectangles.  The area will either be totally visible,
 * totally visible, or possibly partially visible.  This routine updates
 * totally visible, or possibly partially visible.  This routine updates
 * the clip cache rectangle, and returns one of the following values:
 * the clip cache rectangle, and returns one of the following values:
 *      CLIP_VISIBLE            The whole rectangle is visible
 *      CLIP_VISIBLE            The whole rectangle is visible
 *      CLIP_INVISIBLE          The whole rectangle is invisible
 *      CLIP_INVISIBLE          The whole rectangle is invisible
 *      CLIP_PARTIAL            The rectangle may be partially visible
 *      CLIP_PARTIAL            The rectangle may be partially visible
 * In the case that the area is totally visible, the cursor is removed
 * In the case that the area is totally visible, the cursor is removed
 * if it overlaps the clip area.
 * if it overlaps the clip area.
 */
 */
int
int
GdClipArea(PSD psd,MWCOORD x1, MWCOORD y1, MWCOORD x2, MWCOORD y2)
GdClipArea(PSD psd,MWCOORD x1, MWCOORD y1, MWCOORD x2, MWCOORD y2)
{
{
  if ((x1 < clipminx) || (x1 > clipmaxx) ||
  if ((x1 < clipminx) || (x1 > clipmaxx) ||
      (y1 < clipminy) || (y1 > clipmaxy))
      (y1 < clipminy) || (y1 > clipmaxy))
        GdClipPoint(psd, x1, y1);
        GdClipPoint(psd, x1, y1);
 
 
  if ((x2 >= clipminx) && (x2 <= clipmaxx) &&
  if ((x2 >= clipminx) && (x2 <= clipmaxx) &&
      (y2 >= clipminy) && (y2 <= clipmaxy)) {
      (y2 >= clipminy) && (y2 <= clipmaxy)) {
        if (!clipresult) return CLIP_INVISIBLE;
        if (!clipresult) return CLIP_INVISIBLE;
        GdCheckCursor(psd, x1, y1, x2, y2);
        GdCheckCursor(psd, x1, y1, x2, y2);
        return CLIP_VISIBLE;
        return CLIP_VISIBLE;
  }
  }
  return CLIP_PARTIAL;
  return CLIP_PARTIAL;
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.