diff options
author | max <max@FreeBSD.org> | 1997-04-27 22:22:30 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1997-04-27 22:22:30 +0800 |
commit | 4e93cede7cd6fbd6379922c351c559048d4f481e (patch) | |
tree | 136b33dfb345027874c0ebb1be95da1279768464 /games/netris/files | |
parent | d1d8dc0169714869829698a9b171f0a54f75c228 (diff) | |
download | freebsd-ports-gnome-4e93cede7cd6fbd6379922c351c559048d4f481e.tar.gz freebsd-ports-gnome-4e93cede7cd6fbd6379922c351c559048d4f481e.tar.zst freebsd-ports-gnome-4e93cede7cd6fbd6379922c351c559048d4f481e.zip |
New port:
A network head to head version of T*tris.
PR: 2900
Submitted by: Ken Monville <desmo@bandwidth.org>
Reminded by: Josh Gilliam <soil@quick.net>
Diffstat (limited to 'games/netris/files')
-rw-r--r-- | games/netris/files/netris.1 | 117 | ||||
-rw-r--r-- | games/netris/files/patch-aa | 29 |
2 files changed, 146 insertions, 0 deletions
diff --git a/games/netris/files/netris.1 b/games/netris/files/netris.1 new file mode 100644 index 000000000000..5c8b271fec26 --- /dev/null +++ b/games/netris/files/netris.1 @@ -0,0 +1,117 @@ +.TH NETRIS 1 "1 August 1996" +.SH "NAME" +netris - a network version of t*tris +.SH "SYNOPSIS" +.B netris +[-DHRSh] [-w] [-c host] [-p port] [-k keys] +.SH "DESCRIPTION" +.I Netris +is a networked version of t*tris. It allows either single player or head to head play via a network. To play it single user, start +.I netris +with no flags. To play head to head, you can either host or connect. To be the host, start +.I netris +with the +.B -w +flag. To connect to a host, use the +.B -c <hostname> +flag with the hostname of the computer you wish to connect to. + +Unlike standard T*tris, +.I Netris +gives you a little extra time after dropping a piece before it solidifies. This allows you to slide the +piece into a notch without waiting for it to fall the whole way down. +In fact, if you can even slide it off a cliff and it'll start falling +again. If you think it should automatically drop again in this case, +use the +.B -D +option. + +The keys are: +.TP +.B j +left +.TP +.B k +rotate +.TP +.B l +right +.TP +.B Space +drop +.TP +.B m +down faster +.TP +.B s +toggle spying on the other player +.TP +.B p +pause +.TP +.B f +make game faster (irreversable) +.TP +.B Ctrl-L +redraw the screen +.LP +To see usage information, type " +.I netris +.B -h +". +To see distribution/warranty information, type " +.I netris +.B -H +". +To see the rules, type " +.I netris +.B -R +". +To use a port number other than the default, use the +.B -p +option. +.LP +You can remap the keys with " +.B -k <keys> +", where +.B <keys> +is a string +containing the keys in the order listed above. +.LP +The default is: +.I netris +.B -k jkl mspf^l +.LP +You needn't specify all of the keys, for example +.B -k asd +will only +change the main three keys. +.B ^x +notation can be used for control +characters. +.LP +The +.B m +key moves the falling piece down one block, in addition to the +usual step-down timer. Use this in repetition when "drop" would go +too far but you don't want to wait for the piece of fall. +.SH AUTHOR +.TP +Mark H. Weaver <mhw@netris.org> +.SH BUGS +.TP +One-player mode is a tad boring at the moment, because it never gets any faster, and there's no scoring. This will be rectified at some point. For now, use the +.B f +key (by default) to make the +game go faster. Speedups cannot be reversed for the remainder of +the game. +.SH COPYRIGHT +.TP +Copyright (C) 1994,1995,1996 Mark H. Weaver <mhw@netris.org> +.LP +netris is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public +License as published by the Free Software Foundation; +either version 2, or (at your option) any later version. + + diff --git a/games/netris/files/patch-aa b/games/netris/files/patch-aa new file mode 100644 index 000000000000..ab1a24eaca04 --- /dev/null +++ b/games/netris/files/patch-aa @@ -0,0 +1,29 @@ +*** Configure.orig Sat Feb 10 04:41:40 1996 +--- Configure Thu Aug 1 02:16:34 1996 +*************** +*** 159,167 **** +--- 159,170 ---- + PROG = netris + HEADERS = netris.h + ++ PREFIX?=/usr/local + SRCS = -SRCS- + OBJS = -OBJS- + DISTFILES = -DISTFILES- ++ DESTDIR= $(PREFIX)/bin ++ MANDIR= $(PREFIX)/man + + all: Makefile config.h proto.h $(PROG) sr + +*************** +*** 217,222 **** +--- 220,228 ---- + + cleandir: clean + rm -f .depend Makefile config.h ++ ++ install: ++ install -o bin -g bin -s -m 755 $(PROG) $(DESTDIR) + + ##### DO NOT EDIT OR DELETE THIS LINE, it's needed by make depend ##### + END |