]> git.deb.at Git - pkg/netris.git/commitdiff
Imported Debian patch 0.52-2 debian/0.52-2
authorGerfried Fuchs <alfie@debian.org>
Thu, 25 Nov 2004 13:24:01 +0000 (14:24 +0100)
committerGerfried Fuchs <rhonda@debian.at>
Wed, 14 Jul 2010 19:42:21 +0000 (21:42 +0200)
22 files changed:
.depend [deleted file]
Makefile [deleted file]
board.c
config.h [deleted file]
curses.c
debian/README.Debian [new file with mode: 0644]
debian/changelog
debian/control
debian/copyright
debian/dirs [deleted file]
debian/menu
debian/netris-sample-robot.6 [new file with mode: 0644]
debian/netris.6 [new file with mode: 0644]
debian/postinst [new file with mode: 0644]
debian/postrm [new file with mode: 0644]
debian/rules
debian/watch [new file with mode: 0644]
game.c
inet.c
netris.h
robot.c
util.c

diff --git a/.depend b/.depend
deleted file mode 100644 (file)
index 8b13789..0000000
--- a/.depend
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index 83359e0..0000000
--- a/Makefile
+++ /dev/null
@@ -1,243 +0,0 @@
-#
-# Automatically generated by ./Configure -- DO NOT EDIT!
-#
-
-CC = gcc
-COPT = -O2
-CEXTRA = -DNDEBUG
-LEXTRA = 
-LFLAGS =  -lncurses -lnsl
-CFLAGS = $(CEXTRA) $(COPT)
-
-PROG = netris
-HEADERS = netris.h
-
-SRCS = game.c curses.c shapes.c board.c util.c inet.c robot.c version.c
-OBJS = game.o curses.o shapes.o board.o util.o inet.o robot.o version.o
-DISTFILES = README FAQ COPYING VERSION Configure netris.h sr.c robot_desc game.c curses.c shapes.c board.c util.c inet.c robot.c
-
-all: Makefile config.h proto.h $(PROG) sr
-
-$(PROG): $(OBJS)
-       $(CC) -o $(PROG) $(OBJS) $(LFLAGS)
-
-sr: sr.o
-       $(CC) -o sr sr.o $(LFLAGS)
-
-.c.o:
-       $(CC) $(CFLAGS) -c $<
-
-Makefile config.h: Configure
-       @echo "Makefile and/or config.h is out of date"
-       @echo "Run ./Configure now"
-       @false
-
-version.c: VERSION
-       @echo "Creating version.c"
-       @sed -e 's/^\(.*\)$$/char *version_string = "\1";/' VERSION > $@
-
-proto.h: $(SRCS)
-       @touch $@
-       @mv $@ $@.old
-       @cat $(SRCS) | grep '^ExtFunc[  ]' | sed -e 's/)$$/);/' > $@
-       @if diff $@.old $@ > /dev/null 2>&1; then :; else \
-               echo "proto.h changed"; \
-               touch proto.chg; \
-       fi
-       @rm -f $@.old
-
-depend: proto.h $(SRCS)
-       @echo "Checking dependencies"
-       @sed -n -e '1,/make depend #####$$/p' Makefile > Makefile.new
-       @$(CC) -M $(SRCS) | sed -e 's/proto\.h/proto.chg/g' >> Makefile.new
-       @mv -f Makefile.new Makefile
-
-dist: $(DISTFILES)
-       @vers=`cat VERSION`; \
-       dir="netris-$$vers"; \
-       echo "Creating $$dir directory"; \
-       rm -rf $$dir; \
-       mkdir $$dir; \
-       cp $(DISTFILES) $$dir; \
-       chmod 755 $$dir; \
-       chmod 644 $$dir/*; \
-       chmod 755 $$dir/Configure; \
-       echo "Creating $$dir.tar.gz"; \
-       tar -cvzof $$dir.tar.gz $$dir
-
-clean:
-       rm -f proto.h proto.chg $(PROG) $(OBJS) version.c test.c a.out sr sr.o
-
-cleandir: clean
-       rm -f .depend Makefile config.h
-
-##### DO NOT EDIT OR DELETE THIS LINE, it's needed by make depend #####
-game.o: game.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/alloca.h /usr/include/ctype.h /usr/include/netinet/in.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/limits.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/syslimits.h \
- /usr/include/limits.h /usr/include/bits/posix1_lim.h \
- /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
- /usr/include/bits/posix2_lim.h /usr/include/stdint.h \
- /usr/include/bits/wordsize.h /usr/include/bits/socket.h \
- /usr/include/bits/sockaddr.h /usr/include/asm/socket.h \
- /usr/include/asm/sockios.h /usr/include/bits/in.h \
- /usr/include/bits/byteswap.h
-curses.o: curses.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/unistd.h /usr/include/bits/posix_opt.h \
- /usr/include/bits/confname.h /usr/include/curses.h \
- /usr/include/unctrl.h /usr/include/stdlib.h /usr/include/alloca.h
-shapes.o: shapes.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/alloca.h
-board.o: board.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/alloca.h
-util.o: util.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/stdlib.h /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/alloca.h /usr/include/unistd.h \
- /usr/include/bits/posix_opt.h /usr/include/bits/confname.h \
- /usr/include/netdb.h /usr/include/rpc/netdb.h \
- /usr/include/sys/socket.h /usr/include/bits/socket.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/limits.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/syslimits.h \
- /usr/include/limits.h /usr/include/bits/posix1_lim.h \
- /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
- /usr/include/bits/posix2_lim.h /usr/include/bits/sockaddr.h \
- /usr/include/asm/socket.h /usr/include/asm/sockios.h \
- /usr/include/errno.h /usr/include/bits/errno.h \
- /usr/include/linux/errno.h /usr/include/asm/errno.h
-inet.o: inet.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/unistd.h /usr/include/bits/posix_opt.h \
- /usr/include/bits/confname.h /usr/include/stdlib.h \
- /usr/include/alloca.h /usr/include/sys/socket.h \
- /usr/include/bits/socket.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/limits.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/syslimits.h \
- /usr/include/limits.h /usr/include/bits/posix1_lim.h \
- /usr/include/bits/local_lim.h /usr/include/linux/limits.h \
- /usr/include/bits/posix2_lim.h /usr/include/bits/sockaddr.h \
- /usr/include/asm/socket.h /usr/include/asm/sockios.h \
- /usr/include/netinet/in.h /usr/include/stdint.h \
- /usr/include/bits/wordsize.h /usr/include/bits/in.h \
- /usr/include/bits/byteswap.h /usr/include/netdb.h \
- /usr/include/rpc/netdb.h /usr/include/errno.h \
- /usr/include/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/asm/errno.h
-robot.o: robot.c netris.h config.h /usr/include/getopt.h \
- /usr/include/memory.h /usr/include/features.h \
- /usr/include/sys/cdefs.h /usr/include/gnu/stubs.h \
- /usr/include/string.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stddef.h \
- /usr/include/sys/time.h /usr/include/time.h /usr/include/bits/time.h \
- /usr/include/bits/types.h /usr/include/sys/select.h \
- /usr/include/bits/select.h /usr/include/bits/sigset.h \
- /usr/include/assert.h /usr/include/stdio.h \
- /usr/lib/gcc-lib/i386-linux/2.95.1/include/stdarg.h \
- /usr/include/libio.h /usr/include/_G_config.h \
- /usr/include/bits/stdio_lim.h /usr/include/signal.h \
- /usr/include/bits/signum.h /usr/include/bits/siginfo.h \
- /usr/include/bits/sigaction.h /usr/include/bits/sigcontext.h \
- /usr/include/asm/sigcontext.h /usr/include/bits/sigstack.h proto.chg \
- /usr/include/unistd.h /usr/include/bits/posix_opt.h \
- /usr/include/bits/confname.h /usr/include/stdlib.h \
- /usr/include/sys/types.h /usr/include/endian.h \
- /usr/include/bits/endian.h /usr/include/sys/sysmacros.h \
- /usr/include/alloca.h /usr/include/ctype.h /usr/include/fcntl.h \
- /usr/include/bits/fcntl.h /usr/include/errno.h \
- /usr/include/bits/errno.h /usr/include/linux/errno.h \
- /usr/include/asm/errno.h
-version.o: version.c
diff --git a/board.c b/board.c
index d1cb66bb2b12caadc07fa176a788e5e1dc245012..621677c1a8002f196aad0a0c130df5f062815a61 100644 (file)
--- a/board.c
+++ b/board.c
@@ -36,6 +36,19 @@ static int oldFalling[MAX_SCREENS][MAX_BOARD_WIDTH];
 
 ExtFunc void InitBoard(int scr)
 {
+       int s,w,h;
+
+       for(s = 0 ; s < MAX_SCREENS ; s++)
+               for(h = 0 ; h < MAX_BOARD_HEIGHT ; h++)
+                       for(w = 0 ; w < MAX_BOARD_WIDTH ; w++) {
+                               board[s][h][w] = 0;
+                               oldBoard[s][h][w] = 0;
+                               changed[s][h] = 0;
+                               falling[s][w] = 0;
+                               oldFalling[s][w] = 0;
+                       }
+                               
+
        boardHeight[scr] = MAX_BOARD_HEIGHT;
        boardVisible[scr] = 20;
        boardWidth[scr] = 10;
diff --git a/config.h b/config.h
deleted file mode 100644 (file)
index 42056fd..0000000
--- a/config.h
+++ /dev/null
@@ -1,8 +0,0 @@
-/*
- * Automatically generated by ./Configure -- DO NOT EDIT!
- */
-
-#include <getopt.h>
-#include <memory.h>
-#define HAS_ON_EXIT
-#define HAS_SIGPROCMASK
index 14e9ce47e32b796ab3c61732d65e5b18a366974f..d5be6799671ab7109e7632839e683bb8ccf9db42 100644 (file)
--- a/curses.c
+++ b/curses.c
@@ -57,6 +57,7 @@ static EventGenRec keyGen =
 static int boardYPos[MAX_SCREENS], boardXPos[MAX_SCREENS];
 static int statusYPos, statusXPos;
 static int haveColor;
+static int screens_dirty = 0;
 
 static char *term_vi;  /* String to make cursor invisible */
 static char *term_ve;  /* String to make cursor visible */
@@ -98,6 +99,7 @@ ExtFunc void InitScreens(void)
 #endif
 
        AtExit(CleanupScreens);
+       screens_dirty = 1;
        RestoreSignals(NULL, &oldMask);
 
        cbreak();
@@ -116,9 +118,12 @@ ExtFunc void InitScreens(void)
 
 ExtFunc void CleanupScreens(void)
 {
-       RemoveEventGen(&keyGen);
-       endwin();
-       OutputTermStr(term_ve, 1);
+       if (screens_dirty) {
+               RemoveEventGen(&keyGen);
+               endwin();
+               OutputTermStr(term_ve, 1);
+               screens_dirty = 0;
+       }
 }
 
 ExtFunc void GetTermcapInfo(void)
@@ -201,6 +206,8 @@ ExtFunc void InitScreen(int scr)
        for (y = boardVisible[scr] - 1; y >= 0; --y) {
                move(boardYPos[scr] - y, boardXPos[scr] - 1);
                addch('|');
+               for (x = boardWidth[scr] - 1; x >= 0; --x)
+                       addstr("  ");
                move(boardYPos[scr] - y, boardXPos[scr] + 2 * boardWidth[scr]);
                addch('|');
        }
@@ -256,6 +263,23 @@ ExtFunc void PlotUnderline(int scr, int x, int flag)
 
 ExtFunc void ShowDisplayInfo(void)
 {
+       move(statusYPos - 3, statusXPos);
+       printw("Won:  %3d", won);
+       move(statusYPos - 2, statusXPos);
+       printw("Lost: %3d", lost);
+
+       move(statusYPos - 1, statusXPos);
+       switch(gameState) {
+       case STATE_WAIT_CONNECTION:
+               addstr("Waiting for opponent...      ");
+               break;
+       case STATE_WAIT_KEYPRESS:
+               addstr("Press the key for a new game.");
+               break;
+       default:
+               addstr("                             ");
+       }
+
        move(statusYPos - 9, statusXPos);
        printw("Seed: %d", initSeed);
        clrtoeol();
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644 (file)
index 0000000..e07eb0a
--- /dev/null
@@ -0,0 +1,18 @@
+netris for Debian
+-----------------
+
+ I did apply the "new game" patch from Tomas Berndtsson <tomas@nocrew.org>.
+This patch is really nice for it multiplayer games, you don't have to exit and
+can press 'n' (or whatever key you bound the function to) to start a new game.
+For the keybinding stuff I had to patch the patch myself ,-)
+
+ I have contacted the upstream maintainer about this patch in June but haven't
+heard from him since then.  Last contact I had with Mark was in march.  If you
+have any information about him feel free to contact me.
+
+ Ah, and I have another patch sent in by Rob Hensley <zoid@staticky.com>
+pending but haven't found the time to examine it closer. It adds a line counter
+in single player game mode according to Rob but there is more in it.  Some code
+cleanup and so....
+
+ -- Gerfried Fuchs <alfie@debian.org>  Fri, 18 Oct 2002 19:35:13 +0200
index 0bf43fb02deed20dbcbcb28ef1b4594bc795fa64..7a4f992df79034ce4deffb3a5c3d7c1eb0c4e573 100644 (file)
@@ -1,3 +1,67 @@
+netris (0.52-2) unstable; urgency=low
+
+  * Applied patch from Per von Zweigbergk for staircase effect (closes: #83039)
+  * Bumped to policy 3.6.1: No changes needed.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Thu, 25 Nov 2004 14:24:01 +0100
+
+netris (0.52-1) unstable; urgency=high
+
+  * New upstream release which fixes buffer overflow vulnerability
+    CAN-2003-0685 (closes: #205113) -- no other changes.
+  * Updated to policy 3.6.0: No changes needed.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Mon, 18 Aug 2003 21:25:09 +0200
+
+netris (0.5-7) unstable; urgency=low
+
+  * Added 'n'ew game key to -k handling option (updated manual page wrt/
+    this).  Don't know though how to make the correct key show up in the
+    message so simply changed it.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Fri, 18 Oct 2002 19:35:13 +0200
+
+netris (0.5-6) unstable; urgency=low
+
+  * Applied multi game patch with scoring from Tomas Berndtsson, received via
+    private mail.
+  * Removed /usr/doc -> /usr/share/doc handling.
+  * Removed some superfluous commas from the long description.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Thu, 26 Sep 2002 22:47:20 +0200
+
+netris (0.5-5) unstable; urgency=low
+
+  * Updated watchfile to uscan version=2.
+  * Updated to policy 3.5.7: Added support for DEB_BUILD_OPTIONS too.
+  * Remove Makefile, .depend and config.h in clean target, too.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Mon, 09 Sep 2002 18:19:59 +0200
+
+netris (0.5-4) unstable; urgency=medium
+
+  * wrote man page for netris-sample-robot, finally (closes: #19373)
+  * un-debhelper-ized the package.
+  * urgency=medium for having the libncurses4 removed from woody (previous
+    upload forgot to set urgency)
+
+ -- Gerfried Fuchs <alfie@debian.org>  Mon, 18 Feb 2002 12:59:56 +0100
+
+netris (0.5-3) unstable; urgency=low
+
+  * New Maintainer.
+  * Rebuild against libncurses5 (closes: #93943)
+  * Added manual page (thanks to Edward Betts for writing it) -- this doesn't
+    close 19373 though, netris-sample-robot still has no manual page.
+  * Removed emacs-junk from the end of this file.
+  * Updated to standards version 3.5.6:
+    * Fixed the pointer to the GPL in the copyright file.
+    * Added Build-Depends: debhelper, libncurses5-dev to control file.
+    * Binaries are stripped (closes: #127381)
+  * Added watch file.
+
+ -- Gerfried Fuchs <alfie@debian.org>  Mon, 11 Feb 2002 18:43:49 +0100
+
 netris (0.5-2) unstable; urgency=low
 
   * Change maintainer address
@@ -34,8 +98,3 @@ netris (0.4-1) unstable; urgency=low
   * Initial Release.
 
  -- Gergely Madarasz <gorgo@caesar.elte.hu>  Wed,  6 Aug 1997 22:10:42 +0200
-
-Local variables:
-mode: debian-changelog
-add-log-mailing-address: "gorgo@caesar.elte.hu"
-End:
index 972a560459da2a94532415a4d445f48733a19781..ee5b88d528829811aeccbd0712bcf60e6f96826d 100644 (file)
@@ -1,8 +1,9 @@
 Source: netris
 Section: games
-Priority: extra
-Maintainer: Gergely Madarasz <gorgo@sztaki.hu>
-Standards-Version: 3.0.1
+Priority: optional
+Maintainer: Gerfried Fuchs <alfie@debian.org>
+Build-Depends: libncurses5-dev
+Standards-Version: 3.6.1
 
 Package: netris
 Architecture: any
@@ -10,15 +11,15 @@ Depends: ${shlibs:Depends}
 Description: A free, networked version of T*tris
  Netris is a free, networked variant of Tetris.
  .
- 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
+ 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.
  .
  Two players can play against each other. If you fill two or three 
- lines with one piece, your opponent gets respectively one or two 
- unfilled lines at the bottom of his screen. If you fill four lines
- with one piece, your opponent will get four unfilled lines.
+ lines with one piece your opponent gets respectively one or two 
+ unfilled lines at the bottom of his screen. If you fill even four lines
+ with one piece your opponent will get four unfilled lines.
  .
  This version at least partially supports robots. You can find the
- protocol description in the documentation, and a sample robot in
+ protocol description in the documentation and a sample robot in
  the examples.
index 82868fbc613dd47b70be372b85a0103b808cd50c..f61f2a18483c09ea502cf81f30edda202aa02970 100644 (file)
@@ -25,4 +25,4 @@ Foundation, 59 Temple Place - Suite 330,
 Boston, MA 02111-1307, USA.
 
 On Debian GNU/Linux systems, the complete text of the GNU General
-Public License can be found in `/usr/share/common-licences/GPL'.
+Public License can be found in `/usr/share/common-licenses/GPL'.
diff --git a/debian/dirs b/debian/dirs
deleted file mode 100644 (file)
index 33359b8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-usr/games
index 844c2e8350f411088cf9016b0c49ecea0b5eacd2..18c9524553beffc2bc33ee6a324ef0d82e1629bd 100644 (file)
@@ -1,2 +1,2 @@
-?package(netris):needs=text section=Games/Tetris-like title="netris" \
+?package(netris):needs=text section=Games/Tetris-like title="Netris" \
   command="/usr/games/netris" longtitle="Networked Tetris"
diff --git a/debian/netris-sample-robot.6 b/debian/netris-sample-robot.6
new file mode 100644 (file)
index 0000000..f43a183
--- /dev/null
@@ -0,0 +1,42 @@
+.TH netris-sample-robot 6 "16 Feb 2002" "0.5" "Netris Sample Robot"
+.SH "NAME"
+netris-sample-robot \- sample robot for netris
+.SH "SYNOPSIS"
+.B netris-sample-robot
+.RB [\| \-l \|]
+.SH "DESCRIPTION"
+The netris-sample-robot is a sample implementation of the robot protocol. It
+plays quite well but isn't too hard to beat. The robot should be started from
+netris with the option
+.B \-r
+to connect or wait for another player to join. You can also let two robots play
+against each other in that way, if you like.
+
+.SH "OPTIONS"
+.TP
+.B \-l
+Writes some log information into the file
+.B log
+in the current working directory. If it can't it bails out.
+
+.SH "EXAMPLES"
+.TP
+To start the netris-sample-robot waiting for another connection with logfile use the following line:
+netris -w -r 'netris-sample-robot -l'
+.P
+You then just have to start netris somewhere else which connects to that robot.
+
+.SH "SEE ALSO"
+.BR netris (6)
+
+.SH "BUGS"
+One known bug of the netris-sample-robot is that it hangs quite often. This was
+already filed as a bugreport against the package so please refrain from doing
+so again.  If you have an idea why this happens or know a solution how to fix
+it feel free to mail me.
+
+.SH "AUTHORS"
+Netris was written by Mark H. Weaver <mhw@netris.org>.
+
+This manual page was written by Gerfried Fuchs <alfie@debian.org> for
+the Debian GNU/Linux system (but may be used by others).
diff --git a/debian/netris.6 b/debian/netris.6
new file mode 100644 (file)
index 0000000..b1e0ac0
--- /dev/null
@@ -0,0 +1,93 @@
+.TH netris 6 "3 Aug 2001" "0.5" "Netris"
+.SH NAME
+netris \- networked version of tetris
+.SH SYNOPSIS
+.B netris
+.RB [\| \-wFDSCHR \|]
+.RB [\| \-c
+.IR host \|]
+.RB [\| \-p
+.IR port \|]
+.RB [\| \-k
+.IR keys \|]
+.RB [\| \-i
+.IR sec \|]
+.RB [\| \-r
+.IR robot \|]
+.RB [\| \-s
+.IR seed \|]
+.SH DESCRIPTION
+The object of the game Tetris is to fit the shapes together forming complete
+rows, which then vanish.  When the shapes fill up to the top, the game ends.
+This version of Tetris can be played against other people over a network.
+.SH OPTIONS
+.TP
+.B \-w
+Wait for connection from another host running netris.
+.TP
+.B \-c\  host
+Initiate connection to waiting netris running on
+.IR host .
+.TP
+.B \-p\  port
+Set the port number to use for connecting to netris, the default port is 9284.
+.TP
+.B \-k\  keys
+Remap keys, the argument is a prefix of the string containing the keys in
+order: left, rotate, right, drop, down-faster, toggle-spying, pause, faster,
+redraw and new game. Use the "^" character to prefixes controls.  The default
+is to use "jkl mspf^ln".
+.TP
+.B \-i\  sec
+Set the step-down interval, in seconds.
+.TP
+.B \-r\  robot
+Execute 
+.I robot
+(a command) as a robot controlling the game instead of the keyboard.
+.TP
+.B \-F
+Use fair robot interface.
+.TP
+.B \-s\  seed
+Start with given random seed.
+.TP
+.B \-D
+Drops go into drop mode, this means that sliding off a cliff after a drop
+causes
+another drop automatically.
+.TP
+.B \-S
+Disable inverse/bold/color for slow terminals.
+.TP
+.B \-C
+Disable color.
+.TP
+.B \-H
+Show distribution and warranty information.
+.TP
+.B \-R
+Show the rules of the game.
+.SH RULES
+.SS Two player mode
+It's just like normal Tetris except that when you clear more than one row with
+a single piece, the other player's board is moved up and junk rows are added
+to the bottom.  If you clear 2, 3 or 4 rows, 1, 2 or 4 junk rows are added to
+your opponent's board, respectively.  The junk rows have exactly one empty
+column.  For each group of junk rows given, the empty columns will line up.
+This is intentional.
+
+The longest surviving player wins the game.
+
+.SS One player mode
+This mode is currently very boring, because there's no scoring and it never
+gets any faster.  This will be rectified at some point.  I'm not very
+motivated to do it right now because I'm sick of one player Tetris.  For now,
+use the "f" key (by default) to make the game go faster.  Speed-ups cannot be
+reversed for the remainder of the game.
+
+.SH AUTHORS
+Netris was written by Mark H. Weaver <mhw@netris.org>.
+
+This manual page was written by Edward Betts <edward@debian.org>, for
+the Debian GNU/Linux system (but may be used by others).
diff --git a/debian/postinst b/debian/postinst
new file mode 100644 (file)
index 0000000..32be2bd
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+# postinst script for netris
+
+if [ "$1" != configure ]; then
+       exit 0
+fi
+
+if [ -x /usr/bin/update-menus ]; then
+       update-menus
+fi
diff --git a/debian/postrm b/debian/postrm
new file mode 100644 (file)
index 0000000..cc7789d
--- /dev/null
@@ -0,0 +1,6 @@
+#!/bin/sh -e
+# postrm script for netris
+
+if [ -x /usr/bin/update-menus ]; then
+       update-menus
+fi
index 2622a1db33c2faa65376ea06eae4871259279e94..65c1a872628eb774b1ab03af42a313299a406fe2 100755 (executable)
@@ -1,62 +1,95 @@
 #!/usr/bin/make -f
-# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.
+# rules file for netris
 
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
+COPT = -g
+INSTALL = install
+INSTALL_FILE    = $(INSTALL) -p    -oroot -groot -m644
+INSTALL_PROGRAM = $(INSTALL) -p    -oroot -groot -m755
+INSTALL_SCRIPT  = $(INSTALL) -p    -oroot -groot -m755
+INSTALL_DIR     = $(INSTALL) -p -d -oroot -groot -m755
 
-build: build-stamp
-build-stamp:
-       dh_testdir
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+       COPT += -O0
+else
+       COPT += -O2
+endif
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+       INSTALL_PROGRAM += -s
+endif
 
-       # Add here commands to compile the package.
-       ./Configure -O2
-       make
 
+clean:
+       $(checkdir)
+       $(checkroot)
+       -rm -rf debian/netris debian/substvars debian/files \
+               build-stamp install-stamp config.h .depend
+       -$(MAKE) clean
+       -rm -rf Makefile
+
+
+build: build-stamp
+build-stamp:
+       $(checkdir)
+       ./Configure -g
+       $(MAKE) COPT="$(COPT)"
        touch build-stamp
 
-clean:
-       dh_testdir
-       dh_testroot
-       rm -f build-stamp
 
-       # Add here commands to clean up after the build process.
-       $(MAKE) clean
+install: install-stamp
+install-stamp: build
+       $(checkdir)
+       $(checkroot)
+       -rm -rf debian/netris
+       $(INSTALL_DIR) debian/netris
+       cd debian/netris && $(INSTALL_DIR) usr/games usr/share/man/man6 \
+               usr/share/doc/netris/examples
+       $(INSTALL_PROGRAM) netris debian/netris/usr/games
+       $(INSTALL_PROGRAM) sr     debian/netris/usr/games/netris-sample-robot
+       $(INSTALL_FILE) debian/netris*.6 debian/netris/usr/share/man/man6
+       $(INSTALL_FILE) FAQ robot_desc   debian/netris/usr/share/doc/netris
+       $(INSTALL_FILE) sr.c debian/netris/usr/share/doc/netris/examples
+       gzip -9 debian/netris/usr/share/man/man6/netris*.6 \
+               debian/netris/usr/share/doc/netris/FAQ \
+               debian/netris/usr/share/doc/netris/robot_desc \
+               debian/netris/usr/share/doc/netris/examples/sr.c
+       touch install-stamp
 
-       dh_clean
 
 # Build architecture-independent files here.
 binary-indep: build
 # We have nothing to do by default.
 
+
 # Build architecture-dependent files here.
-binary-arch: build
-       dh_testversion 2.0.40
-       dh_testdir
-       dh_testroot
-       dh_clean -k
-       dh_installdirs
-
-       # Add here commands to install the files into debian/tmp
-       install -s netris debian/tmp/usr/games
-       install -s sr debian/tmp/usr/games/netris-sample-robot
-
-       dh_installdocs FAQ robot_desc
-       dh_installexamples sr.c
-       dh_installmenu
-       dh_installmanpages
-       dh_undocumented netris.1 netris-sample-robot.1
-       dh_installchangelogs
-       dh_strip
-       dh_compress
-       dh_fixperms
-       dh_installdeb
-       dh_shlibdeps
-       dh_gencontrol
-       dh_md5sums
-       dh_builddeb
-
-source diff:                                                                  
-       @echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+binary-arch: build install
+       $(checkdir)
+       $(checkroot)
+       $(INSTALL_DIR) debian/netris/DEBIAN debian/netris/usr/lib/menu
+       $(INSTALL_FILE) debian/menu      debian/netris/usr/lib/menu/netris
+       $(INSTALL_FILE) debian/copyright debian/README.Debian \
+               debian/netris/usr/share/doc/netris
+       $(INSTALL_FILE) debian/changelog \
+               debian/netris/usr/share/doc/netris/changelog.Debian
+       gzip -9 debian/netris/usr/share/doc/netris/changelog.Debian
+       $(INSTALL_SCRIPT) debian/postinst debian/postrm \
+               debian/netris/DEBIAN
+       dpkg-shlibdeps -Tdebian/substvars -dDepends \
+               debian/netris/usr/games/netris*
+       dpkg-gencontrol -ldebian/changelog -isp -Tdebian/substvars -pnetris \
+               -Pdebian/netris
+       cd debian/netris && find * -type f ! -regex '^DEBIAN/.*' -print0 | \
+               xargs -r0 md5sum > DEBIAN/md5sums
+       dpkg --build debian/netris ..
+
 
 binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary
+
+define checkdir
+       test -f debian/rules
+endef
+
+define checkroot
+       test root = "`whoami`"
+endef
+
+.PHONY: clean build install binary-indep binary-arch binary
diff --git a/debian/watch b/debian/watch
new file mode 100644 (file)
index 0000000..2c5727c
--- /dev/null
@@ -0,0 +1,3 @@
+version=2
+# Site/Directory/Pattern                                   Version  Script
+ftp://ftp.netris.org/pub/netris/netris-([\d\.]+)\.tar\.gz  debian  uupdate
diff --git a/game.c b/game.c
index b40c12948035f365d4fc7a5a5463bd57c33577dc..0c98b74f8437aab6a5991c7e5ccba51c7226d9f4 100644 (file)
--- a/game.c
+++ b/game.c
 #include <netinet/in.h>
 
 enum { KT_left, KT_rotate, KT_right, KT_drop, KT_down,
-       KT_toggleSpy, KT_pause, KT_faster, KT_redraw, KT_numKeys };
+       KT_toggleSpy, KT_pause, KT_faster, KT_redraw, KT_new, KT_numKeys };
 
 static char *keyNames[KT_numKeys+1] = {
        "Left", "Rotate", "Right", "Drop", "Down", "ToggleSpy", "Pause",
-       "Faster", "Redraw", NULL };
+       "Faster", "Redraw", "New", NULL };
 
 static char *gameNames[GT_len] = { "OnePlayer", "ClassicTwo" };
 
@@ -40,6 +40,10 @@ static char keyTable[KT_numKeys+1];
 static int dropModeEnable = 0;
 static char *robotProg;
 
+static int wonLast = 0;
+int lost = 0, won = 0;
+enum States gameState = STATE_STARTING;
+
 ExtFunc void MapKeys(char *newKeys)
 {
        int i, k, ch;
@@ -323,6 +327,7 @@ ExtFunc void OneGame(int scr, int scr2)
                                        break;
                                case E_lostRobot:
                                case E_lostConn:
+                                       wonLast = 1;
                                        goto gameOver;
                                default:
                                        break;
@@ -350,14 +355,17 @@ ExtFunc void OneGame(int scr, int scr2)
                        SendPacket(NP_giveJunk, sizeof(data), data);
                }
        }
+       wonLast = 0;
+
 gameOver:
        SetITimer(0, 0);
 }
 
 ExtFunc int main(int argc, char **argv)
 {
-       int initConn = 0, waitConn = 0, ch;
+       int initConn = 0, waitConn = 0, ch, done = 0;
        char *hostStr = NULL, *portStr = NULL;
+       MyEvent event;
 
        standoutEnable = colorEnable = 1;
        stepDownInterval = DEFAULT_INTERVAL;
@@ -422,112 +430,138 @@ ExtFunc int main(int argc, char **argv)
        if (fairRobot && !robotEnable)
                fatal("You can't use the -F option without the -r option");
        InitUtil();
-       if (robotEnable)
-               InitRobot(robotProg);
-       InitNet();
-       InitScreens();
-       if (initConn || waitConn) {
-               MyEvent event;
-
-               game = GT_classicTwo;
-               if (initConn)
-                       InitiateConnection(hostStr, portStr);
-               else if (waitConn)
-                       WaitForConnection(portStr);
-               {
-                       netint4 data[2];
-                       int major;
-
-                       data[0] = hton4(MAJOR_VERSION);
-                       data[1] = hton4(PROTOCOL_VERSION);
-                       SendPacket(NP_version, sizeof(data), data);
-                       if (WaitMyEvent(&event, EM_net) != E_net)
-                               fatal("Network negotiation failed");
-                       memcpy(data, event.u.net.data, sizeof(data));
-                       major = ntoh4(data[0]);
-                       protocolVersion = ntoh4(data[1]);
-                       if (event.u.net.type != NP_version || major < MAJOR_VERSION)
-                               fatal("Your opponent is using an old, incompatible version\n"
-                                       "of Netris.  They should get the latest version.");
-                       if (major > MAJOR_VERSION)
-                               fatal("Your opponent is using an newer, incompatible version\n"
-                                       "of Netris.  Get the latest version.");
-                       if (protocolVersion > PROTOCOL_VERSION)
-                               protocolVersion = PROTOCOL_VERSION;
-               }
-               if (protocolVersion < 3 && stepDownInterval != DEFAULT_INTERVAL)
-                       fatal("Your opponent's version of Netris predates the -i option.\n"
-                                       "For fairness, you shouldn't use the -i option either.");
-               {
-                       netint4 data[3];
-                       int len;
-                       int seed;
+       InitScreens();  
+       while(!done) {
+               if (robotEnable)
+                       InitRobot(robotProg);
+               InitNet();
+               SRandom(time(0));
+               if (initConn || waitConn) {
+                       game = GT_classicTwo;
+                       if(gameState != STATE_STARTING) {
+                               gameState = STATE_WAIT_CONNECTION;
+                               ShowDisplayInfo();
+                               RefreshScreen();
+                       }
+                       if (initConn)
+                               InitiateConnection(hostStr, portStr);
+                       else if (waitConn)
+                               WaitForConnection(portStr);
+                       gameState = STATE_PLAYING;
+                       ShowDisplayInfo();
+                       RefreshScreen();
+                       {
+                               netint4 data[2];
+                               int major;
+                               
+                               data[0] = hton4(MAJOR_VERSION);
+                               data[1] = hton4(PROTOCOL_VERSION);
+                               SendPacket(NP_version, sizeof(data), data);
+                               if (WaitMyEvent(&event, EM_net) != E_net)
+                                       fatal("Network negotiation failed");
+                               memcpy(data, event.u.net.data, sizeof(data));
+                               major = ntoh4(data[0]);
+                               protocolVersion = ntoh4(data[1]);
+                               if (event.u.net.type != NP_version || major < MAJOR_VERSION)
+                                       fatal("Your opponent is using an old, incompatible version\n"
+                                             "of Netris.  They should get the latest version.");
+                               if (major > MAJOR_VERSION)
+                                       fatal("Your opponent is using an newer, incompatible version\n"
+                                             "of Netris.  Get the latest version.");
+                               if (protocolVersion > PROTOCOL_VERSION)
+                                       protocolVersion = PROTOCOL_VERSION;
+                       }
+                       if (protocolVersion < 3 && stepDownInterval != DEFAULT_INTERVAL)
+                               fatal("Your opponent's version of Netris predates the -i option.\n"
+                                     "For fairness, you shouldn't use the -i option either.");
+                       {
+                               netint4 data[3];
+                               int len;
+                               int seed;
+                               
+                               if (protocolVersion >= 3)
+                                       len = sizeof(data);
+                               else
+                                       len = sizeof(netint4[2]);
+                               if ((myFlags & SCF_setSeed))
+                                       seed = initSeed;
+                               else
+                                       seed = time(0);
+                               if (waitConn)
+                                       SRandom(seed);
+                               data[0] = hton4(myFlags);
+                               data[1] = hton4(seed);
+                               data[2] = hton4(stepDownInterval);
+                               SendPacket(NP_startConn, len, data);
+                               if (WaitMyEvent(&event, EM_net) != E_net ||
+                                   event.u.net.type != NP_startConn)
+                                       fatal("Network negotiation failed");
+                               memcpy(data, event.u.net.data, len);
+                               opponentFlags = ntoh4(data[0]);
+                               seed = ntoh4(data[1]);
+                               if (initConn) {
+                                       if ((opponentFlags & SCF_setSeed) != (myFlags & SCF_setSeed))
+                                               fatal("If one player sets the random number seed, "
+                                                     "both must.");
+                                       if ((myFlags & SCF_setSeed) && seed != initSeed)
+                                               fatal("Both players have set the random number seed, "
+                                                     "and they are unequal.");
+                                       if (protocolVersion >= 3 && stepDownInterval != ntoh4(data[2]))
+                                               fatal("Your opponent is using a different step-down "
+                                                     "interval (-i).\nYou must both use the same one.");
+                                       SRandom(seed);
+                               }
+                       }
+                       {
+                               char *userName;
+                               int len, i;
 
-                       if (protocolVersion >= 3)
-                               len = sizeof(data);
-                       else
-                               len = sizeof(netint4[2]);
-                       if ((myFlags & SCF_setSeed))
-                               seed = initSeed;
-                       else
-                               seed = time(0);
-                       if (waitConn)
-                               SRandom(seed);
-                       data[0] = hton4(myFlags);
-                       data[1] = hton4(seed);
-                       data[2] = hton4(stepDownInterval);
-                       SendPacket(NP_startConn, len, data);
-                       if (WaitMyEvent(&event, EM_net) != E_net ||
-                                       event.u.net.type != NP_startConn)
-                               fatal("Network negotiation failed");
-                       memcpy(data, event.u.net.data, len);
-                       opponentFlags = ntoh4(data[0]);
-                       seed = ntoh4(data[1]);
-                       if (initConn) {
-                               if ((opponentFlags & SCF_setSeed) != (myFlags & SCF_setSeed))
-                                       fatal("If one player sets the random number seed, "
-                                                       "both must.");
-                               if ((myFlags & SCF_setSeed) && seed != initSeed)
-                                       fatal("Both players have set the random number seed, "
-                                                       "and they are unequal.");
-                               if (protocolVersion >= 3 && stepDownInterval != ntoh4(data[2]))
-                                       fatal("Your opponent is using a different step-down "
-                                               "interval (-i).\nYou must both use the same one.");
-                               SRandom(seed);
+                               userName = getenv("LOGNAME");
+                               if (!userName || !userName[0])
+                                       userName = getenv("USER");
+                               if (!userName || !userName[0])
+                                       strcpy(userName, "???");
+                               len = strlen(userName)+1;
+                               if (len > sizeof(opponentName))
+                                       len = sizeof(opponentName);
+                               SendPacket(NP_userName, len, userName);
+                               if (WaitMyEvent(&event, EM_net) != E_net ||
+                                   event.u.net.type != NP_userName)
+                                       fatal("Network negotiation failed");
+                               strncpy(opponentName, event.u.net.data,
+                                       sizeof(opponentName)-1);
+                               opponentName[sizeof(opponentName)-1] = 0;
+                               for (i = 0; opponentName[i]; ++i)
+                                       if (!isprint(opponentName[i]))
+                                               opponentName[i] = '?';
+                               for (i = 0; opponentHost[i]; ++i)
+                                       if (!isprint(opponentHost[i]))
+                                               opponentHost[i] = '?';
                        }
+                       OneGame(0, 1);
                }
-               {
-                       char *userName;
-                       int len, i;
-
-                       userName = getenv("LOGNAME");
-                       if (!userName || !userName[0])
-                               userName = getenv("USER");
-                       if (!userName || !userName[0])
-                               strcpy(userName, "???");
-                       len = strlen(userName)+1;
-                       if (len > sizeof(opponentName))
-                               len = sizeof(opponentName);
-                       SendPacket(NP_userName, len, userName);
-                       if (WaitMyEvent(&event, EM_net) != E_net ||
-                                       event.u.net.type != NP_userName)
-                               fatal("Network negotiation failed");
-                       strncpy(opponentName, event.u.net.data,
-                               sizeof(opponentName)-1);
-                       opponentName[sizeof(opponentName)-1] = 0;
-                       for (i = 0; opponentName[i]; ++i)
-                               if (!isprint(opponentName[i]))
-                                       opponentName[i] = '?';
-                       for (i = 0; opponentHost[i]; ++i)
-                               if (!isprint(opponentHost[i]))
-                                       opponentHost[i] = '?';
+               else {
+                       game = GT_onePlayer;
+                       OneGame(0, -1);
+               }
+               if (wonLast) {
+                       won++;
+               } else {
+                       lost++;
+                       WaitMyEvent(&event, EM_net);
+               }
+               CloseNet();
+               if (robotEnable) {
+                       CloseRobot();
+               } else {
+                       gameState = STATE_WAIT_KEYPRESS;
+                       ShowDisplayInfo();
+                       RefreshScreen();
+                       while(getchar() != keyTable[KT_new])
+                               ;
                }
-               OneGame(0, 1);
-       }
-       else {
-               game = GT_onePlayer;
-               OneGame(0, -1);
        }
+
        return 0;
 }
 
diff --git a/inet.c b/inet.c
index a8d9a9d9149c9b67e3c05516d1b040f970cad8f1..068cb8915cf1249a64a0dc3540b88b09e6ae4ce0 100644 (file)
--- a/inet.c
+++ b/inet.c
@@ -42,6 +42,8 @@ static int isServer, lostConn, gotEndConn;
 
 ExtFunc void InitNet(void)
 {
+       lostConn = 0;
+       gotEndConn = 0;
        AtExit(CloseNet);
 }
 
index 45d61bf1764f9ab2d32e1181e6ba2c44bb0670cb..24f3578a3834c85f99628ce345599c31ef155df8 100644 (file)
--- a/netris.h
+++ b/netris.h
@@ -65,7 +65,7 @@ typedef long netint4;
 
 #define DEFAULT_PORT 9284      /* Very arbitrary */
 
-#define DEFAULT_KEYS "jkl mspf^l"
+#define DEFAULT_KEYS "jkl mspf^ln"
 
 /* Protocol versions */
 #define MAJOR_VERSION          1       
@@ -152,6 +152,13 @@ typedef struct _ShapeOption {
 typedef int (*ShapeDrawFunc)(int scr, int y, int x,
                                        BlockType type, void *data);
 
+enum States {
+       STATE_STARTING,
+       STATE_PLAYING,
+       STATE_WAIT_CONNECTION,
+       STATE_WAIT_KEYPRESS
+};
+
 EXT GameType game;
 EXT int boardHeight[MAX_SCREENS];
 EXT int boardVisible[MAX_SCREENS], boardWidth[MAX_SCREENS];
@@ -167,6 +174,9 @@ EXT long stepDownInterval, speed;
 
 EXT int myFlags, opponentFlags;
 
+EXT int won, lost;
+EXT enum States gameState;
+
 EXT char scratch[1024];
 
 extern ShapeOption stdOptions[];
diff --git a/robot.c b/robot.c
index 23875a3bd4b9984bf0c1815e95e7970c5f8318e2..cbd5cb22902a0a8cf91f9ea54e1584b20d2e869d 100644 (file)
--- a/robot.c
+++ b/robot.c
@@ -35,7 +35,7 @@ static EventGenRec robotGen =
                { NULL, 0, FT_read, -1, RobotGenFunc, EM_robot };
 
 static int robotProcess;
-static FILE *toRobot;
+static FILE *toRobot = NULL;
 static int toRobotFd, fromRobotFd;
 
 static char robotBuf[128];
@@ -112,10 +112,13 @@ ExtFunc void RobotTimeStamp(void)
 ExtFunc void CloseRobot(void)
 {
        RemoveEventGen(&robotGen);
-       if (robotProcess > 0)
-               RobotCmd(1, "Exit\n");
-       fclose(toRobot);
-       close(fromRobotFd);
+       if(toRobot) {
+               if (robotProcess > 0)
+                       RobotCmd(1, "Exit\n");
+               fclose(toRobot);
+               close(fromRobotFd);
+               toRobot = NULL;
+       }
 }
 
 static MyEventType RobotGenFunc(EventGenRec *gen, MyEvent *event)
diff --git a/util.c b/util.c
index cb7f4211dc1d2cd966da27f97ebfaca5e3e6422b..1fcae892547acfebc98d20556955c4c57ab7a2b0 100644 (file)
--- a/util.c
+++ b/util.c
@@ -74,7 +74,7 @@ ExtFunc void Usage(void)
          "  -p <port>  Set port number (default is %d)\n"
          "  -k <keys>  Remap keys.  The argument is a prefix of the string\n"
          "               containing the keys in order: left, rotate, right, drop,\n"
-         "               down-faster, toggle-spying, pause, faster, redraw.\n"
+         "               down-faster, toggle-spying, pause, faster, redraw, new.\n"
          "               \"^\" prefixes controls.  (default is \"%s\")\n"
          "  -i <sec>   Set the step-down interval, in seconds\n"
          "  -r <robot> Execute <robot> (a command) as a robot controlling\n"
@@ -267,6 +267,7 @@ ExtFunc volatile void die(char *msg)
 
 ExtFunc volatile void fatal(char *msg)
 {
+       CleanupScreens ();
        fprintf(stderr, "%s\n", msg);
        exit(1);
 }