rasops32.c revision 1.6 1 /* $NetBSD: rasops32.c,v 1.6 1999/10/24 15:14:57 ad 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 Andy 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 "opt_rasops.h"
40 #include <sys/cdefs.h>
41 __KERNEL_RCSID(0, "$NetBSD: rasops32.c,v 1.6 1999/10/24 15:14:57 ad Exp $");
42
43 #include <sys/types.h>
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 __P((void *, int, int, u_int, long attr));
53
54 /*
55 * Initalize 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;
87 u_char *fr;
88
89 ri = (struct rasops_info *)cookie;
90
91 #ifdef RASOPS_CLIPPING
92 /* Catches 'row < 0' case too */
93 if ((unsigned)row >= (unsigned)ri->ri_rows)
94 return;
95
96 if ((unsigned)col >= (unsigned)ri->ri_cols)
97 return;
98 #endif
99
100 rp = (int32_t *)(ri->ri_bits + row*ri->ri_yscale + col*ri->ri_xscale);
101
102 height = ri->ri_font->fontheight;
103 width = ri->ri_font->fontwidth;
104
105 clr[0] = ri->ri_devcmap[(attr >> 16) & 15];
106 clr[1] = ri->ri_devcmap[(attr >> 24) & 15];
107
108 if (uc == ' ') {
109 while (height--) {
110 dp = rp;
111 DELTA(rp, ri->ri_stride, int32_t *);
112
113 for (cnt = width; cnt; cnt--)
114 *dp++ = clr[0];
115 }
116 } else {
117 uc -= ri->ri_font->firstchar;
118 fr = (u_char *)ri->ri_font->data + uc * ri->ri_fontscale;
119 fs = ri->ri_font->stride;
120
121 while (height--) {
122 dp = rp;
123 fb = fr[3] | (fr[2] << 8) | (fr[1] << 16) |
124 (fr[0] << 24);
125 fr += fs;
126 DELTA(rp, ri->ri_stride, int32_t *);
127
128 for (cnt = width; cnt; cnt--) {
129 *dp++ = clr[(fb >> 31) & 1];
130 fb <<= 1;
131 }
132 }
133 }
134
135 /* Do underline */
136 if ((attr & 1) != 0) {
137 DELTA(rp, -(ri->ri_stride << 1), int32_t *);
138
139 while (width--)
140 *rp++ = clr[1];
141 }
142 }
143