xref: /dflybsd-src/sys/dev/misc/syscons/star/star_saver.c (revision 0bb7d8c82a64940013681cf515d16f3e62eb7e3c)
1 /*-
2  * (MPSAFE)
3  *
4  * Copyright (c) 1995-1998 S�ren Schmidt
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer,
12  *    without modification, immediately at the beginning of the file.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the author may not be used to endorse or promote products
17  *    derived from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
20  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
23  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
24  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
28  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  *
30  * $FreeBSD: src/sys/modules/syscons/star/star_saver.c,v 1.23.2.2 2001/05/06 05:44:29 nyan Exp $
31  * $DragonFly: src/sys/dev/misc/syscons/star/star_saver.c,v 1.5 2006/09/03 18:52:28 dillon Exp $
32  */
33 
34 #include <sys/param.h>
35 #include <sys/systm.h>
36 #include <sys/kernel.h>
37 #include <sys/module.h>
38 #include <sys/consio.h>
39 #include <sys/fbio.h>
40 #include <sys/thread.h>
41 
42 #include <machine/pc/display.h>
43 
44 #include <dev/video/fb/fbreg.h>
45 #include <dev/video/fb/splashreg.h>
46 #include "../syscons.h"
47 
48 #define NUM_STARS	50
49 
50 static int blanked;
51 
52 /*
53  * Alternate saver that got its inspiration from a well known utility
54  * package for an inferior^H^H^H^H^H^Hfamous OS.
55  */
56 static int
57 star_saver(video_adapter_t *adp, int blank)
58 {
59 	sc_softc_t	*sc;
60 	scr_stat	*scp;
61 	int		cell, i;
62 	static u_char	pattern[] = {"...........++++***   "};
63 	static char	colors[] = {FG_DARKGREY, FG_LIGHTGREY,
64 				    FG_WHITE, FG_LIGHTCYAN};
65 	static u_short 	stars[NUM_STARS][2];
66 
67 	lwkt_gettoken(&tty_token);
68 	sc = sc_find_softc(adp, NULL);
69 	if (sc == NULL) {
70 		lwkt_reltoken(&tty_token);
71 		return EAGAIN;
72 	}
73 	scp = sc->cur_scp;
74 
75 	if (blank) {
76 		if (adp->va_info.vi_flags & V_INFO_GRAPHICS) {
77 			lwkt_reltoken(&tty_token);
78 			return EAGAIN;
79 		}
80 		if (!blanked) {
81 			/* clear the screen and set the border color */
82 			sc_vtb_clear(&scp->scr, sc->scr_map[0x20],
83 				     (FG_LIGHTGREY | BG_BLACK) << 8);
84 			(*vidsw[adp->va_index]->set_hw_cursor)(adp, -1, -1);
85 			sc_set_border(scp, 0);
86 			blanked = TRUE;
87 			for(i=0; i<NUM_STARS; i++) {
88 				stars[i][0] =
89 					krandom() % (scp->xsize*scp->ysize);
90 				stars[i][1] = 0;
91 			}
92 		}
93 		cell = krandom() % NUM_STARS;
94 		sc_vtb_putc(&scp->scr, stars[cell][0],
95 			    sc->scr_map[pattern[stars[cell][1]]],
96 			    colors[krandom()%sizeof(colors)] << 8);
97 		if ((stars[cell][1]+=(krandom()%4)) >= sizeof(pattern)-1) {
98 			stars[cell][0] = krandom() % (scp->xsize*scp->ysize);
99 			stars[cell][1] = 0;
100 		}
101 	}
102 	else
103 		blanked = FALSE;
104 
105 	lwkt_reltoken(&tty_token);
106 	return 0;
107 }
108 
109 static int
110 star_init(video_adapter_t *adp)
111 {
112 	blanked = FALSE;
113 	return 0;
114 }
115 
116 static int
117 star_term(video_adapter_t *adp)
118 {
119 	return 0;
120 }
121 
122 static scrn_saver_t star_module = {
123 	"star_saver", star_init, star_term, star_saver, NULL,
124 };
125 
126 SAVER_MODULE(star_saver, star_module);
127