xref: /freebsd/sys/dev/syscons/scterm.c (revision 7773002178c8dbc52b44e4d705f07706409af8e4)
1 /*-
2  * Copyright (c) 1999 Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer as
10  *    the first lines of this file unmodified.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *    notice, this list of conditions and the following disclaimer in the
13  *    documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
16  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18  * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
19  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25  *
26  */
27 
28 #include <sys/cdefs.h>
29 __FBSDID("$FreeBSD$");
30 
31 #include "opt_syscons.h"
32 
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/kernel.h>
36 #include <sys/consio.h>
37 
38 #include <dev/syscons/syscons.h>
39 #include <dev/syscons/sctermvar.h>
40 
41 SET_DECLARE(scterm_set, sc_term_sw_t);
42 
43 /* exported subroutines */
44 
45 void
46 sc_move_cursor(scr_stat *scp, int x, int y)
47 {
48 	if (x < 0)
49 		x = 0;
50 	if (y < 0)
51 		y = 0;
52 	if (x >= scp->xsize)
53 		x = scp->xsize - 1;
54 	if (y >= scp->ysize)
55 		y = scp->ysize - 1;
56 	scp->xpos = x;
57 	scp->ypos = y;
58 	scp->cursor_pos = scp->ypos*scp->xsize + scp->xpos;
59 }
60 
61 void
62 sc_clear_screen(scr_stat *scp)
63 {
64 	(*scp->tsw->te_clear)(scp);
65 	scp->cursor_oldpos = scp->cursor_pos;
66 	sc_remove_cutmarking(scp);
67 }
68 
69 /* terminal emulator manager routines */
70 
71 static LIST_HEAD(, sc_term_sw) sc_term_list =
72 	LIST_HEAD_INITIALIZER(sc_term_list);
73 
74 int
75 sc_term_add(sc_term_sw_t *sw)
76 {
77 	LIST_INSERT_HEAD(&sc_term_list, sw, link);
78 	return 0;
79 }
80 
81 int
82 sc_term_remove(sc_term_sw_t *sw)
83 {
84 	LIST_REMOVE(sw, link);
85 	return 0;
86 }
87 
88 sc_term_sw_t
89 *sc_term_match(char *name)
90 {
91 	sc_term_sw_t **list;
92 	sc_term_sw_t *p;
93 
94 	if (!LIST_EMPTY(&sc_term_list)) {
95 		LIST_FOREACH(p, &sc_term_list, link) {
96 			if ((strcmp(name, p->te_name) == 0)
97 			    || (strcmp(name, "*") == 0)) {
98 				return p;
99 			}
100 		}
101 	} else {
102 		SET_FOREACH(list, scterm_set) {
103 			p = *list;
104 			if ((strcmp(name, p->te_name) == 0)
105 			    || (strcmp(name, "*") == 0)) {
106 				return p;
107 			}
108 		}
109 	}
110 
111 	return NULL;
112 }
113 
114 sc_term_sw_t
115 *sc_term_match_by_number(int index)
116 {
117 	sc_term_sw_t *p;
118 
119 	if (index <= 0)
120 		return NULL;
121 	LIST_FOREACH(p, &sc_term_list, link) {
122 		if (--index <= 0)
123 			return p;
124 	}
125 
126 	return NULL;
127 }
128