Home | History | Annotate | Line # | Download | only in rasops
rasops32.c revision 1.14.6.1
      1 /*	 $NetBSD: rasops32.c,v 1.14.6.1 2006/04/22 11:39:28 simonb Exp $	*/
      2 
      3 /*-
      4  * Copyright (c) 1999 The NetBSD Foundation, Inc.
      5  * All rights reserved.
      6  *
      7  * This code is derived from software contributed to The NetBSD Foundation
      8  * by Andrew Doran.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the NetBSD
     21  *	Foundation, Inc. and its contributors.
     22  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23  *    contributors may be used to endorse or promote products derived
     24  *    from this software without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36  * POSSIBILITY OF SUCH DAMAGE.
     37  */
     38 
     39 #include <sys/cdefs.h>
     40 __KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.14.6.1 2006/04/22 11:39:28 simonb Exp $");
     41 
     42 #include "opt_rasops.h"
     43 
     44 #include <sys/param.h>
     45 #include <sys/systm.h>
     46 #include <sys/time.h>
     47 
     48 #include <dev/wscons/wsdisplayvar.h>
     49 #include <dev/wscons/wsconsio.h>
     50 #include <dev/rasops/rasops.h>
     51 
     52 static void 	rasops32_putchar(void *, int, int, u_int, long attr);
     53 
     54 /*
     55  * Initialize a 'rasops_info' descriptor for this depth.
     56  */
     57 void
     58 rasops32_init(ri)
     59 	struct rasops_info *ri;
     60 {
     61 
     62 	if (ri->ri_rnum == 0) {
     63 		ri->ri_rnum = 8;
     64 		ri->ri_rpos = 0;
     65 		ri->ri_gnum = 8;
     66 		ri->ri_gpos = 8;
     67 		ri->ri_bnum = 8;
     68 		ri->ri_bpos = 16;
     69 	}
     70 
     71 	ri->ri_ops.putchar = rasops32_putchar;
     72 }
     73 
     74 /*
     75  * Paint a single character.
     76  */
     77 static void
     78 rasops32_putchar(cookie, row, col, uc, attr)
     79 	void *cookie;
     80 	int row, col;
     81 	u_int uc;
     82 	long attr;
     83 {
     84 	int width, height, cnt, fs, fb, clr[2];
     85 	struct rasops_info *ri;
     86 	int32_t *dp, *rp, *hp, *hrp;
     87 	u_char *fr;
     88 
     89 	ri = (struct rasops_info *)cookie;
     90 	hp = hrp = NULL;
     91 
     92 #ifdef RASOPS_CLIPPING
     93 	/* Catches 'row < 0' case too */
     94 	if ((unsigned)row >= (unsigned)ri->ri_rows)
     95 		return;
     96 
     97 	if ((unsigned)col >= (unsigned)ri->ri_cols)
     98 		return;
     99 #endif
    100 
    101 	/* check if character fits into font limits */
    102 	if (uc < ri->ri_font->firstchar ||
    103 	    (uc - ri->ri_font->firstchar) >= ri->ri_font->numchars)
    104 	    return;
    105 
    106 	rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
    107 	if (ri->ri_hwbits)
    108 		hrp = (int32_t *)(ri->ri_hwbits + row*ri->ri_yscale +
    109 		    col*ri->ri_xscale);
    110 
    111 	height = ri->ri_font->fontheight;
    112 	width = ri->ri_font->fontwidth;
    113 
    114 	clr[0] = ri->ri_devcmap[(attr >> 16) & 0xf];
    115 	clr[1] = ri->ri_devcmap[(attr >> 24) & 0xf];
    116 
    117 	if (uc == ' ') {
    118 		while (height--) {
    119 			dp = rp;
    120 			DELTA(rp, ri->ri_stride, int32_t *);
    121 			if (ri->ri_hwbits) {
    122 				hp = hrp;
    123 				DELTA(hrp, ri->ri_stride, int32_t *);
    124 			}
    125 
    126 			for (cnt = width; cnt; cnt--) {
    127 				*dp++ = clr[0];
    128 				if (ri->ri_hwbits)
    129 					*hp++ = clr[0];
    130 			}
    131 		}
    132 	} else {
    133 		uc -= ri->ri_font->firstchar;
    134 		fr = (u_char *)ri->ri_font->data + uc * ri->ri_fontscale;
    135 		fs = ri->ri_font->stride;
    136 
    137 		while (height--) {
    138 			dp = rp;
    139 			fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) |
    140 			    (fr[0] << 24);
    141 			fr += fs;
    142 			DELTA(rp, ri->ri_stride, int32_t *);
    143 			if (ri->ri_hwbits) {
    144 				hp = hrp;
    145 				DELTA(hrp, ri->ri_stride, int32_t *);
    146 			}
    147 
    148 			for (cnt = width; cnt; cnt--) {
    149 				*dp++ = clr[(fb >> 31) & 1];
    150 				if (ri->ri_hwbits)
    151 					*hp++ = clr[(fb >> 31) & 1];
    152 				fb <<= 1;
    153 			}
    154 		}
    155 	}
    156 
    157 	/* Do underline */
    158 	if ((attr & 1) != 0) {
    159 		DELTA(rp, -(ri->ri_stride << 1), int32_t *);
    160 		if (ri->ri_hwbits)
    161 			DELTA(hrp, -(ri->ri_stride << 1), int32_t *);
    162 
    163 		while (width--) {
    164 			*rp++ = clr[1];
    165 			if (ri->ri_hwbits)
    166 				*hrp++ = clr[1];
    167 		}
    168 	}
    169 }
    170