Initial revision

git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5086 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
1999-09-08 23:56:51 +00:00
commit 03272d67da
623 changed files with 243457 additions and 0 deletions

9
rain/Makefile.bsd Normal file
View File

@@ -0,0 +1,9 @@
# $NetBSD: Makefile,v 1.7 1998/02/04 10:21:12 christos Exp $
# @(#)Makefile 8.1 (Berkeley) 5/31/93
PROG= rain
MAN= rain.6
DPADD= ${LIBTERMCAP}
LDADD= -ltermcap
.include <bsd.prog.mk>

10
rain/Makefrag Normal file
View File

@@ -0,0 +1,10 @@
# Makefrag - makefile fragment for rain
rain_DIRS := $(GAMESDIR) $(MAN6DIR)
rain_all: rain/rain rain/rain.6
rain_install: rain_all
$(INSTALL_BINARY) rain/rain $(INSTALL_PREFIX)$(GAMESDIR)/rain
$(HIDE_GAME) rain
$(INSTALL_MANUAL) rain/rain.6

61
rain/rain.6 Normal file
View File

@@ -0,0 +1,61 @@
.\" $NetBSD: rain.6,v 1.6 1997/10/12 01:12:44 lukem Exp $
.\"
.\" Copyright (c) 1989, 1993
.\" The Regents of the University of California. All rights reserved.
.\"
.\" Redistribution and use in source and binary forms, with or without
.\" modification, are permitted provided that the following conditions
.\" are met:
.\" 1. Redistributions of source code must retain the above copyright
.\" notice, this list of conditions and the following disclaimer.
.\" 2. Redistributions in binary form must reproduce the above copyright
.\" notice, this list of conditions and the following disclaimer in the
.\" documentation and/or other materials provided with the distribution.
.\" 3. All advertising materials mentioning features or use of this software
.\" must display the following acknowledgement:
.\" This product includes software developed by the University of
.\" California, Berkeley and its contributors.
.\" 4. Neither the name of the University nor the names of its contributors
.\" may be used to endorse or promote products derived from this software
.\" without specific prior written permission.
.\"
.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
.\" @(#)rain.6 8.1 (Berkeley) 5/31/93
.\"
.Dd May 31, 1993
.Dt RAIN 6
.Os
.Sh NAME
.Nm rain
.Nd animated raindrops display
.Sh SYNOPSIS
.Nm
.Sh DESCRIPTION
The output of
.Nm
is modeled after the
.Tn VAX/VMS
program of the same name.
The terminal has to be set for 9600 baud to obtain the proper effect.
.Pp
As with all programs that use
.Tn termcap ,
the
.Ev TERM
environment variable must be set (and exported) to the type of the
terminal being used.
.Sh FILES
.Pa /usr/share/misc/termcap
.Sh AUTHOR
Eric P. Scott

241
rain/rain.c Normal file
View File

@@ -0,0 +1,241 @@
/* $NetBSD: rain.c,v 1.10 1997/10/13 22:01:54 cjs Exp $ */
/*
* Copyright (c) 1980, 1993
* The Regents of the University of California. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include <sys/cdefs.h>
#ifndef lint
__COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
The Regents of the University of California. All rights reserved.\n");
#endif /* not lint */
#ifndef lint
#if 0
static char sccsid[] = "@(#)rain.c 8.1 (Berkeley) 5/31/93";
#else
__RCSID("$NetBSD: rain.c,v 1.10 1997/10/13 22:01:54 cjs Exp $");
#endif
#endif /* not lint */
/*
* rain 11/3/1980 EPS/CITHEP
* cc rain.c -o rain -O -ltermlib
*/
#include <sys/types.h>
#include <sys/ioctl.h>
#include <err.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <termcap.h>
#include <termios.h>
#include <unistd.h>
#define cursor(c, r) tputs(tgoto(CM, c, r), 1, fputchar)
static struct termios sg, old_tty;
int fputchar __P((int));
int main __P((int, char **));
void onsig __P((int));
char *LL, *TE;
int
main(argc, argv)
int argc __attribute__((unused));
char **argv;
{
extern char *UP;
int x, y, j;
char *CM, *BC, *DN, *ND, *term;
char *TI, *tcp, *mp, tcb[100];
long cols, lines;
int xpos[5], ypos[5];
#ifdef TIOCGWINSZ
struct winsize ws;
#endif
/* Revoke setgid privileges */
setregid(getgid(), getgid());
if (!(term = getenv("TERM")))
errx(1, "TERM: parameter not set");
if (!(mp = malloc((u_int)1024)))
errx(1, "out of space");
if (tgetent(mp, term) <= 0)
errx(1, "unknown terminal type `%s'", term);
tcp = tcb;
if (!(CM = tgetstr("cm", &tcp)))
errx(1, "terminal not capable of cursor motion");
if (!(BC = tgetstr("bc", &tcp)))
BC = "\b";
if (!(DN = tgetstr("dn", &tcp)))
DN = "\n";
if (!(ND = tgetstr("nd", &tcp)))
ND = " ";
#ifdef TIOCGWINSZ
if (ioctl(fileno(stdout), TIOCGWINSZ, &ws) != -1 &&
ws.ws_col && ws.ws_row) {
cols = ws.ws_col;
lines = ws.ws_row;
} else
#endif
{
if ((cols = tgetnum("co")) == -1)
cols = 80;
if ((lines = tgetnum("li")) == -1)
lines = 24;
}
cols -= 4;
lines -= 4;
TE = tgetstr("te", &tcp);
TI = tgetstr("ti", &tcp);
UP = tgetstr("up", &tcp);
if (!(LL = tgetstr("ll", &tcp))) {
if (!(LL = malloc((u_int)10))) {
fprintf(stderr, "%s: out of space.\n", *argv);
exit(1);
}
(void)strcpy(LL, tgoto(CM, 0, 23));
}
(void)signal(SIGHUP, onsig);
(void)signal(SIGINT, onsig);
(void)signal(SIGQUIT, onsig);
(void)signal(SIGSTOP, onsig);
(void)signal(SIGTSTP, onsig);
(void)signal(SIGTERM, onsig);
tcgetattr(1, &sg);
old_tty = sg;
sg.c_iflag &= ~ICRNL;
sg.c_oflag &= ~ONLCR;
sg.c_lflag &= ~ECHO;
tcsetattr(1, TCSADRAIN, &sg);
if (TI)
tputs(TI, 1, fputchar);
tputs(tgetstr("cl", &tcp), 1, fputchar);
(void)fflush(stdout);
for (j = 4; j >= 0; --j) {
xpos[j] = random() % cols + 2;
ypos[j] = random() % lines + 2;
}
for (j = 0;;) {
x = random() % cols + 2;
y = random() % lines + 2;
cursor(x, y);
fputchar('.');
cursor(xpos[j], ypos[j]);
fputchar('o');
if (!j--)
j = 4;
cursor(xpos[j], ypos[j]);
fputchar('O');
if (!j--)
j = 4;
cursor(xpos[j], ypos[j] - 1);
fputchar('-');
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputs("|.|", stdout);
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputchar('-');
if (!j--)
j = 4;
cursor(xpos[j], ypos[j] - 2);
fputchar('-');
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputs("/ \\", stdout);
cursor(xpos[j] - 2, ypos[j]);
fputs("| O |", stdout);
cursor(xpos[j] - 1, ypos[j] + 1);
fputs("\\ /", stdout);
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputchar('-');
if (!j--)
j = 4;
cursor(xpos[j], ypos[j] - 2);
fputchar(' ');
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputchar(' ');
tputs(ND, 1, fputchar);
fputchar(' ');
cursor(xpos[j] - 2, ypos[j]);
fputchar(' ');
tputs(ND, 1, fputchar);
fputchar(' ');
tputs(ND, 1, fputchar);
fputchar(' ');
cursor(xpos[j] - 1, ypos[j] + 1);
fputchar(' ');
tputs(ND, 1, fputchar);
fputchar(' ');
tputs(DN, 1, fputchar);
tputs(BC, 1, fputchar);
tputs(BC, 1, fputchar);
fputchar(' ');
xpos[j] = x;
ypos[j] = y;
(void)fflush(stdout);
}
}
void
onsig(dummy)
int dummy __attribute__((unused));
{
tputs(LL, 1, fputchar);
if (TE)
tputs(TE, 1, fputchar);
(void)fflush(stdout);
tcsetattr(1, TCSADRAIN, &old_tty);
exit(0);
}
int
fputchar(c)
int c;
{
return putchar(c);
}