1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
|
/* $Id: vline.c,v 1.1.1.1 2001/05/12 23:01:39 cegger Exp $
******************************************************************************
Linear 1 vertical lines.
Copyright (C) 1995 Andreas Beck [becka@ggi-project.org]
Copyright (C) 1998 Andrew Apted [andrew@ggi-project.org]
Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
******************************************************************************
*/
#include "lin1lib.h"
int GGI_lin1_drawvline_nc(ggi_visual *vis,int x,int y,int height)
{
uint8 *adr;
int i,sw,bm;
PREPARE_FB(vis);
bm=(0x80>>(x&7));
sw=LIBGGI_FB_W_STRIDE(vis);
adr=((uint8 *)(LIBGGI_CURWRITE(vis)));
adr+=(x>>3)+y*sw;
if(LIBGGI_GC_FGCOLOR(vis)&1)
for (i=height;i--;adr+=sw) *adr |= bm;
else
for (i=height;i--;adr+=sw) *adr &= ~bm;
return 0;
}
int GGI_lin1_putvline(ggi_visual *vis,int x,int y,int height,void *buffer)
{
uint8 *adr,*buff=(uint8 *)buffer;
int mask=0x80,sw,i,bm;
/* Clipping */
if (x< (LIBGGI_GC(vis)->cliptl.x) ||
x>=(LIBGGI_GC(vis)->clipbr.x)) return 0;
if (y< (LIBGGI_GC(vis)->cliptl.y)) {
int diff=(LIBGGI_GC(vis)->cliptl.y)-y;
y +=diff;
height-=diff;
buff +=diff>>3;
mask>>=diff&7;
}
if (y+height>(LIBGGI_GC(vis)->clipbr.y)) {
height=(LIBGGI_GC(vis)->clipbr.y)-y;
}
PREPARE_FB(vis);
bm=(0x80>>(x&7));
sw=LIBGGI_FB_W_STRIDE(vis);
adr=((uint8 *)(LIBGGI_CURWRITE(vis)));
adr+=(x>>3)+y*sw;
for (i=0;i<height;i++,adr+=sw) {
if (*buff & mask)
*adr |= bm;
else
*adr &= ~bm;
mask >>= 1;
if (mask==0) {
mask=0x80;
buff++;
}
}
return 0;
}
int GGI_lin1_getvline(ggi_visual *vis,int x,int y,int height,void *buffer)
{
uint8 *adr,*buff=(uint8 *)buffer;
int mask,sw,i,bm;
PREPARE_FB(vis);
sw=LIBGGI_FB_R_STRIDE(vis);
adr=((uint8 *)(LIBGGI_CURREAD(vis)));
adr+=(x>>3)+y*sw;
bm=(0x80>>(x&7));
mask=0x80;
for (i=0;i<height;i++,adr+=sw) {
*buff |= (*adr & bm) ? mask : 0;
mask>>=1;
if (mask==0) {
mask=0x80;
buff++;
}
}
return 0;
}
|