scanw.c revision 1.7 1 1.1 cgd /*
2 1.7 cgd * Copyright (c) 1981, 1993, 1994
3 1.4 cgd * The Regents of the University of California. All rights reserved.
4 1.1 cgd *
5 1.1 cgd * Redistribution and use in source and binary forms, with or without
6 1.1 cgd * modification, are permitted provided that the following conditions
7 1.1 cgd * are met:
8 1.1 cgd * 1. Redistributions of source code must retain the above copyright
9 1.1 cgd * notice, this list of conditions and the following disclaimer.
10 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer in the
12 1.1 cgd * documentation and/or other materials provided with the distribution.
13 1.1 cgd * 3. All advertising materials mentioning features or use of this software
14 1.1 cgd * must display the following acknowledgement:
15 1.1 cgd * This product includes software developed by the University of
16 1.1 cgd * California, Berkeley and its contributors.
17 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
18 1.1 cgd * may be used to endorse or promote products derived from this software
19 1.1 cgd * without specific prior written permission.
20 1.1 cgd *
21 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 1.1 cgd * SUCH DAMAGE.
32 1.1 cgd */
33 1.1 cgd
34 1.1 cgd #ifndef lint
35 1.7 cgd static char sccsid[] = "@(#)scanw.c 8.3 (Berkeley) 5/4/94";
36 1.3 mycroft #endif /* not lint */
37 1.1 cgd
38 1.1 cgd /*
39 1.3 mycroft * scanw and friends.
40 1.1 cgd */
41 1.1 cgd
42 1.6 cgd #ifdef __STDC__
43 1.1 cgd #include <stdarg.h>
44 1.1 cgd #else
45 1.1 cgd #include <varargs.h>
46 1.1 cgd #endif
47 1.7 cgd
48 1.7 cgd #include "curses.h"
49 1.3 mycroft
50 1.1 cgd /*
51 1.3 mycroft * scanw --
52 1.3 mycroft * Implement a scanf on the standard screen.
53 1.1 cgd */
54 1.3 mycroft int
55 1.6 cgd #ifdef __STDC__
56 1.1 cgd scanw(const char *fmt, ...)
57 1.1 cgd #else
58 1.1 cgd scanw(fmt, va_alist)
59 1.1 cgd char *fmt;
60 1.1 cgd va_dcl
61 1.1 cgd #endif
62 1.1 cgd {
63 1.1 cgd va_list ap;
64 1.1 cgd int ret;
65 1.1 cgd
66 1.6 cgd #ifdef __STDC__
67 1.1 cgd va_start(ap, fmt);
68 1.1 cgd #else
69 1.1 cgd va_start(ap);
70 1.1 cgd #endif
71 1.4 cgd ret = vwscanw(stdscr, fmt, ap);
72 1.1 cgd va_end(ap);
73 1.3 mycroft return (ret);
74 1.1 cgd }
75 1.1 cgd
76 1.1 cgd /*
77 1.3 mycroft * wscanw --
78 1.3 mycroft * Implements a scanf on the given window.
79 1.1 cgd */
80 1.3 mycroft int
81 1.6 cgd #ifdef __STDC__
82 1.1 cgd wscanw(WINDOW *win, const char *fmt, ...)
83 1.1 cgd #else
84 1.1 cgd wscanw(win, fmt, va_alist)
85 1.1 cgd WINDOW *win;
86 1.1 cgd char *fmt;
87 1.1 cgd va_dcl
88 1.1 cgd #endif
89 1.1 cgd {
90 1.1 cgd va_list ap;
91 1.1 cgd int ret;
92 1.1 cgd
93 1.6 cgd #ifdef __STDC__
94 1.1 cgd va_start(ap, fmt);
95 1.1 cgd #else
96 1.1 cgd va_start(ap);
97 1.1 cgd #endif
98 1.4 cgd ret = vwscanw(win, fmt, ap);
99 1.3 mycroft va_end(ap);
100 1.3 mycroft return (ret);
101 1.3 mycroft }
102 1.3 mycroft
103 1.3 mycroft /*
104 1.3 mycroft * mvscanw, mvwscanw --
105 1.3 mycroft * Implement the mvscanw commands. Due to the variable number of
106 1.3 mycroft * arguments, they cannot be macros. Another sigh....
107 1.3 mycroft */
108 1.3 mycroft int
109 1.6 cgd #ifdef __STDC__
110 1.3 mycroft mvscanw(register int y, register int x, const char *fmt,...)
111 1.3 mycroft #else
112 1.3 mycroft mvscanw(y, x, fmt, va_alist)
113 1.3 mycroft register int y, x;
114 1.3 mycroft char *fmt;
115 1.3 mycroft va_dcl
116 1.3 mycroft #endif
117 1.3 mycroft {
118 1.3 mycroft va_list ap;
119 1.3 mycroft int ret;
120 1.3 mycroft
121 1.3 mycroft if (move(y, x) != OK)
122 1.3 mycroft return (ERR);
123 1.6 cgd #ifdef __STDC__
124 1.3 mycroft va_start(ap, fmt);
125 1.3 mycroft #else
126 1.3 mycroft va_start(ap);
127 1.3 mycroft #endif
128 1.4 cgd ret = vwscanw(stdscr, fmt, ap);
129 1.3 mycroft va_end(ap);
130 1.3 mycroft return (ret);
131 1.3 mycroft }
132 1.3 mycroft
133 1.3 mycroft int
134 1.6 cgd #ifdef __STDC__
135 1.3 mycroft mvwscanw(register WINDOW * win, register int y, register int x,
136 1.3 mycroft const char *fmt, ...)
137 1.3 mycroft #else
138 1.3 mycroft mvwscanw(win, y, x, fmt, va_alist)
139 1.3 mycroft register WINDOW *win;
140 1.3 mycroft register int y, x;
141 1.3 mycroft char *fmt;
142 1.3 mycroft va_dcl
143 1.3 mycroft #endif
144 1.3 mycroft {
145 1.3 mycroft va_list ap;
146 1.3 mycroft int ret;
147 1.3 mycroft
148 1.3 mycroft if (move(y, x) != OK)
149 1.3 mycroft return (ERR);
150 1.6 cgd #ifdef __STDC__
151 1.3 mycroft va_start(ap, fmt);
152 1.3 mycroft #else
153 1.3 mycroft va_start(ap);
154 1.3 mycroft #endif
155 1.4 cgd ret = vwscanw(win, fmt, ap);
156 1.1 cgd va_end(ap);
157 1.3 mycroft return (ret);
158 1.1 cgd }
159 1.1 cgd
160 1.1 cgd /*
161 1.4 cgd * vwscanw --
162 1.1 cgd * This routine actually executes the scanf from the window.
163 1.1 cgd */
164 1.4 cgd int
165 1.4 cgd vwscanw(win, fmt, ap)
166 1.1 cgd WINDOW *win;
167 1.1 cgd const char *fmt;
168 1.1 cgd va_list ap;
169 1.1 cgd {
170 1.3 mycroft
171 1.3 mycroft char buf[1024];
172 1.1 cgd
173 1.4 cgd return (wgetstr(win, buf) == OK ?
174 1.4 cgd vsscanf(buf, fmt, ap) : ERR);
175 1.1 cgd }
176