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 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/* $Id: gtext.c,v 1.1.1.1 2001/05/12 23:01:39 cegger Exp $
******************************************************************************
Linear 1 character drawing.
Copyright (C) 1995 Andreas Beck [becka@ggi-project.org]
Copyright (C) 1997 Jason McMullan [jmcc@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"
#include <ggi/internal/font/8x8>
int GGI_lin1_putc(ggi_visual *vis, int x, int y, char c)
{
int h=8, stride, rev;
uint8 *src, *dest;
uint8 mask, mask0, mask1;
int shift0, shift1;
if ((x >= LIBGGI_GC(vis)->clipbr.x) ||
(y >= LIBGGI_GC(vis)->clipbr.y) ||
(x+8 <= LIBGGI_GC(vis)->cliptl.x) ||
(y+8 <= LIBGGI_GC(vis)->cliptl.y))
return 0;
if ((LIBGGI_GC_FGCOLOR(vis)&1) == (LIBGGI_GC_BGCOLOR(vis)&1)) {
/* Just a solid box when fg == bg */
return ggiDrawBox(vis, x, y, 8, 8);
}
src = font + ((int) (uint8) c << 3);
rev = (LIBGGI_GC_BGCOLOR(vis) & 1);
if (y < LIBGGI_GC(vis)->cliptl.y) {
int diff = LIBGGI_GC(vis)->cliptl.y - y;
h -= diff;
y += diff;
src += diff;
}
if (y+h > LIBGGI_GC(vis)->clipbr.y) {
h = LIBGGI_GC(vis)->clipbr.y - y;
}
PREPARE_FB(vis);
stride = LIBGGI_FB_W_STRIDE(vis);
dest = (uint8 *) LIBGGI_CURWRITE(vis) + y*stride + (x>>3);
if ((x & 7) == 0) {
/* aligned putc */
mask = 0xff;
if (x < LIBGGI_GC(vis)->cliptl.x) {
mask &= 0xff >> (LIBGGI_GC(vis)->cliptl.x - x);
}
if (x+8 > LIBGGI_GC(vis)->clipbr.x) {
mask &= 0xff << (x+8 - LIBGGI_GC(vis)->clipbr.x);
}
if ((mask == 0xff) && !rev) {
for(; h > 0; h--, dest += stride, src++) {
*dest = *src;
}
} else if ((mask == 0xff) && rev) {
for(; h > 0; h--, dest += stride, src++) {
*dest = ~*src;
}
} else if (!rev) {
for(; h > 0; h--, dest += stride, src++) {
*dest = (*src & mask) | (*dest & ~mask);
}
} else {
for(; h > 0; h--, dest += stride, src++) {
*dest = (~*src & mask) | (*dest & ~mask);
}
}
return 0;
}
/* non-aligned putc */
mask = 0xff;
if (x < LIBGGI_GC(vis)->cliptl.x) {
mask &= 0xff >> (LIBGGI_GC(vis)->cliptl.x - x);
}
if (x+8 > LIBGGI_GC(vis)->clipbr.x) {
mask &= 0xff << (x+8 - LIBGGI_GC(vis)->clipbr.x);
}
shift0 = x & 7; /* shift to the right */
shift1 = (7 - (x & 7)); /* shift to the left */
mask0 = mask >> shift0;
mask1 = mask << shift1;
if (!rev) {
for(; h > 0; h--, dest += stride, src++) {
dest[0]=((*src>>shift0)&mask0) | (dest[0]&~mask0);
dest[1]=((*src<<shift1)&mask1) | (dest[1]&~mask1);
}
} else {
for(; h > 0; h--, dest += stride, src++) {
dest[0]=((~*src>>shift0)&mask0) | (dest[0]&~mask0);
dest[1]=((~*src<<shift1)&mask1) | (dest[1]&~mask1);
}
}
return 0;
}
|