]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - tetris/screen.c
f27fb5520e48c9e1390fa5360aa13d62e6e565d4
1 /* $NetBSD: screen.c,v 1.12 1999/09/08 21:45:31 jsm Exp $ */
4 * Copyright (c) 1992, 1993
5 * The Regents of the University of California. All rights reserved.
7 * This code is derived from software contributed to Berkeley by
8 * Chris Torek and Darren F. Provine.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
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 University of
21 * California, Berkeley and its contributors.
22 * 4. Neither the name of the University nor the names of its contributors
23 * may be used to endorse or promote products derived from this software
24 * without specific prior written permission.
26 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * @(#)screen.c 8.1 (Berkeley) 5/31/93
42 * Tetris screen control.
45 #include <sys/ioctl.h>
57 #define sigmask(s) (1 << ((s) - 1))
63 static cell curscreen
[B_SIZE
]; /* 1 => standout (or otherwise marked) */
65 static int isset
; /* true => terminal is in game mode */
66 static struct termios oldtt
;
67 static void (*tstp
) __P((int));
69 static void scr_stop
__P((int));
70 static void stopset
__P((int)) __attribute__((__noreturn__
));
74 * Capabilities from TERMCAP.
76 char PC
, *BC
, *UP
; /* tgoto requires globals: ugh! */
80 *bcstr
, /* backspace char */
81 *CEstr
, /* clear to end of line */
82 *CLstr
, /* clear screen */
83 *CMstr
, /* cursor motion string */
85 *CRstr
, /* "\r" equivalent */
87 *HOstr
, /* cursor home */
88 *LLstr
, /* last line, first column */
89 *pcstr
, /* pad character */
90 *TEstr
, /* end cursor motion mode */
91 *TIstr
; /* begin cursor motion mode */
93 *SEstr
, /* end standout mode */
94 *SOstr
; /* begin standout mode */
96 COnum
, /* co# value */
97 LInum
, /* li# value */
98 MSflag
; /* can move in standout mode */
101 struct tcsinfo
{ /* termcap string info; some abbrevs above */
112 {"le", &BC
}, /* move cursor left one space */
118 {"up", &UP
}, /* cursor up */
122 /* This is where we will actually stuff the information */
124 static char combuf
[1024], tbuf
[1024];
128 * Routine used by tputs().
139 * putstr() is for unpadded strings (either as in termcap(5) or
140 * simply literal strings); putpad() is for padded strings with
141 * count=1. (See screen.h for putpad().)
143 #define putstr(s) (void)fputs(s, stdout)
144 #define moveto(r, c) putpad(tgoto(CMstr, c, r))
147 * Set up from termcap.
152 static int bsflag
, xsflag
, sgnum
;
157 static struct tcninfo
{ /* termcap numeric and flag info */
175 if ((term
= getenv("TERM")) == NULL
)
176 stop("you must set the TERM environment variable");
177 if (tgetent(tbuf
, term
) <= 0)
178 stop("cannot find your termcap");
181 register struct tcsinfo
*p
;
183 for (p
= tcstrings
; p
->tcaddr
; p
++)
184 *p
->tcaddr
= tgetstr(p
->tcname
, &fill
);
187 register struct tcninfo
*p
;
189 for (p
= tcflags
; p
->tcaddr
; p
++)
190 *p
->tcaddr
= tgetflag(p
->tcname
);
191 for (p
= tcnums
; p
->tcaddr
; p
++)
192 *p
->tcaddr
= tgetnum(p
->tcname
);
196 else if (BC
== NULL
&& bcstr
!= NULL
)
199 stop("cannot clear screen");
200 if (CMstr
== NULL
|| UP
== NULL
|| BC
== NULL
)
201 stop("cannot do random cursor positioning via tgoto()");
202 PC
= pcstr
? *pcstr
: 0;
203 if (sgnum
>= 0 || xsflag
)
204 SOstr
= SEstr
= NULL
;
208 else if (CRstr
== NULL
)
213 /* this foolery is needed to modify tty state `atomically' */
214 static jmp_buf scr_onstop
;
222 (void) signal(sig
, SIG_DFL
);
223 (void) kill(getpid(), sig
);
224 sigemptyset(&sigset
);
225 sigaddset(&sigset
, sig
);
226 (void) sigprocmask(SIG_UNBLOCK
, &sigset
, (sigset_t
*)0);
227 longjmp(scr_onstop
, 1);
237 (void) kill(getpid(), sig
);
238 sigemptyset(&sigset
);
239 sigaddset(&sigset
, sig
);
240 (void) sigprocmask(SIG_UNBLOCK
, &sigset
, (sigset_t
*)0);
246 * Set up screen mode.
252 struct termios newtt
;
253 sigset_t sigset
, osigset
;
254 void (*ttou
) __P((int));
256 sigemptyset(&sigset
);
257 sigaddset(&sigset
, SIGTSTP
);
258 sigaddset(&sigset
, SIGTTOU
);
259 (void) sigprocmask(SIG_BLOCK
, &sigset
, &osigset
);
260 if ((tstp
= signal(SIGTSTP
, stopset
)) == SIG_IGN
)
261 (void) signal(SIGTSTP
, SIG_IGN
);
262 if ((ttou
= signal(SIGTTOU
, stopset
)) == SIG_IGN
)
263 (void) signal(SIGTTOU
, SIG_IGN
);
265 * At last, we are ready to modify the tty state. If
266 * we stop while at it, stopset() above will longjmp back
267 * to the setjmp here and we will start over.
269 (void) setjmp(scr_onstop
);
270 (void) sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*)0);
272 if (ioctl(0, TIOCGWINSZ
, &ws
) == 0) {
280 if (Rows
< MINROWS
|| Cols
< MINCOLS
) {
281 (void) fprintf(stderr
,
282 "the screen is too small: must be at least %dx%d, ",
284 stop(""); /* stop() supplies \n */
286 if (tcgetattr(0, &oldtt
) < 0)
287 stop("tcgetattr() fails");
289 newtt
.c_lflag
&= ~(ICANON
|ECHO
);
290 newtt
.c_oflag
&= ~OXTABS
;
291 if (tcsetattr(0, TCSADRAIN
, &newtt
) < 0)
292 stop("tcsetattr() fails");
293 ospeed
= cfgetospeed(&newtt
);
294 (void) sigprocmask(SIG_BLOCK
, &sigset
, &osigset
);
297 * We made it. We are now in screen mode, modulo TIstr
298 * (which we will fix immediately).
301 putstr(TIstr
); /* termcap(5) says this is not padded */
303 (void) signal(SIGTSTP
, scr_stop
);
305 (void) signal(SIGTTOU
, ttou
);
308 (void) sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*)0);
318 sigset_t sigset
, osigset
;
320 sigemptyset(&sigset
);
321 sigaddset(&sigset
, SIGTSTP
);
322 sigaddset(&sigset
, SIGTTOU
);
323 (void) sigprocmask(SIG_BLOCK
, &sigset
, &osigset
);
324 /* move cursor to last line */
326 putstr(LLstr
); /* termcap(5) says this is not padded */
329 /* exit screen mode */
331 putstr(TEstr
); /* termcap(5) says this is not padded */
332 (void) fflush(stdout
);
333 (void) tcsetattr(0, TCSADRAIN
, &oldtt
);
335 /* restore signals */
336 (void) signal(SIGTSTP
, tstp
);
337 (void) sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*)0);
347 (void) fprintf(stderr
, "aborting: %s\n", why
);
352 * Clear the screen, forgetting the current contents in the process.
360 memset((char *)curscreen
, 0, sizeof(curscreen
));
364 typedef int regcell
; /* pcc is bad at `register char', etc */
366 typedef cell regcell
;
375 register cell
*bp
, *sp
;
376 register regcell so
, cur_so
= 0;
377 register int i
, ccol
, j
;
378 sigset_t sigset
, osigset
;
379 static const struct shape
*lastshape
;
381 sigemptyset(&sigset
);
382 sigaddset(&sigset
, SIGTSTP
);
383 (void) sigprocmask(SIG_BLOCK
, &sigset
, &osigset
);
385 /* always leave cursor after last displayed point */
386 curscreen
[D_LAST
* B_COLS
- 1] = -1;
388 if (score
!= curscore
) {
393 (void) printf("Score: %d", score
);
397 /* draw preview of nextpattern */
398 if (showpreview
&& (nextshape
!= lastshape
)) {
403 lastshape
= nextshape
;
407 moveto(r
-1, c
-1); putstr(" ");
408 moveto(r
, c
-1); putstr(" ");
409 moveto(r
+1, c
-1); putstr(" ");
410 moveto(r
+2, c
-1); putstr(" ");
413 putstr("Next shape:");
421 t
+= nextshape
->off
[i
];
432 bp
= &board
[D_FIRST
* B_COLS
];
433 sp
= &curscreen
[D_FIRST
* B_COLS
];
434 for (j
= D_FIRST
; j
< D_LAST
; j
++) {
436 for (i
= 0; i
< B_COLS
; bp
++, sp
++, i
++) {
437 if (*sp
== (so
= *bp
))
441 if (cur_so
&& MSflag
) {
445 moveto(RTOD(j
), CTOD(i
));
449 putpad(so
? SOstr
: SEstr
);
454 putstr(so
? "XX" : " ");
457 * Look ahead a bit, to avoid extra motion if
458 * we will be redrawing the cell after the next.
459 * Motion probably takes four or more characters,
460 * so we save even if we rewrite two cells
461 * `unnecessarily'. Skip it all, though, if
462 * the next cell is a different color.
464 #define STOP (B_COLS - 3)
465 if (i
> STOP
|| sp
[1] != bp
[1] || so
!= bp
[1])
469 else if (i
< STOP
&& so
== bp
[2] && sp
[3] != bp
[3]) {
477 (void) fflush(stdout
);
478 (void) sigprocmask(SIG_SETMASK
, &osigset
, (sigset_t
*)0);
482 * Write a message (set!=0), or clear the same message (set==0).
483 * (We need its length in case we have to overwrite with blanks.)
491 if (set
|| CEstr
== NULL
) {
492 register int l
= strlen(s
);
494 moveto(Rows
- 2, ((Cols
- l
) >> 1) - 1);