]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - test/railroad.c
ncurses 5.6 - patch 20080209
[ncurses.git] / test / railroad.c
index 90eac981941161d0a298f3b209e02fbe5d208026..160823d43cfc8e653efe12faeda7cc79350e9dba 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 2000 Free Software Foundation, Inc.                        *
+ * Copyright (c) 2000-2007,2008 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
  ****************************************************************************/
 
 /*
- * Author: Thomas E. Dickey <dickey@clark.net> 2000
+ * Author: Thomas E. Dickey - 2000
  *
- * $Id: railroad.c,v 1.4 2000/10/15 00:21:33 tom Exp $
+ * $Id: railroad.c,v 1.16 2008/02/09 18:08:43 tom Exp $
  *
  * A simple demo of the termcap interface.
  */
+#define USE_TINFO
 #include <test.priv.h>
 
-#include <termcap.h>
-#include <ctype.h>
-#include <signal.h>
+#if HAVE_TGETENT
 
 static char *wipeit;
 static char *moveit;
@@ -57,7 +56,7 @@ static char *backup;
 static bool interrupted = FALSE;
 
 static int
-outc(int c)
+outc(TPUTS_ARG c)
 {
     if (interrupted) {
        char tmp = c;
@@ -119,36 +118,38 @@ ShowSign(char *string)
 
     while (*string != 0) {
        ch = *string;
-       if (moveit != 0) {
-           for (first = length - 2; first >= (string - base); first--) {
-               if (first < length - 1) {
-                   tputs(tgoto(moveit, first + 1, height - 1), 1, outc);
-                   PutChar(' ');
+       if (ch != ' ') {
+           if (moveit != 0) {
+               for (first = length - 2; first >= (string - base); first--) {
+                   if (first < length - 1) {
+                       tputs(tgoto(moveit, first + 1, height - 1), 1, outc);
+                       PutChar(' ');
+                   }
+                   tputs(tgoto(moveit, first, height - 1), 1, outc);
+                   PutChar(ch);
                }
-               tputs(tgoto(moveit, first, height - 1), 1, outc);
-               PutChar(ch);
-           }
-       } else {
-           last = ch;
-           if (isalpha(ch)) {
-               first = isupper(ch) ? 'A' : 'a';
-           } else if (isdigit(ch)) {
-               first = '0';
            } else {
-               first = ch;
-           }
-           if (first < last) {
-               Underline(1);
-               while (first < last) {
-                   PutChar(first);
-                   Backup();
-                   first++;
+               last = ch;
+               if (isalpha(ch)) {
+                   first = isupper(ch) ? 'A' : 'a';
+               } else if (isdigit(ch)) {
+                   first = '0';
+               } else {
+                   first = ch;
+               }
+               if (first < last) {
+                   Underline(1);
+                   while (first < last) {
+                       PutChar(first);
+                       Backup();
+                       first++;
+                   }
+                   Underline(0);
                }
-               Underline(0);
            }
+           if (moveit != 0)
+               Backup();
        }
-       if (moveit != 0)
-           Backup();
        StandOut(1);
        PutChar(ch);
        StandOut(0);
@@ -173,7 +174,7 @@ onsig(int n GCC_UNUSED)
 {
     interrupted = TRUE;
     cleanup();
-    exit(EXIT_FAILURE);
+    ExitProgram(EXIT_FAILURE);
 }
 
 static void
@@ -182,11 +183,10 @@ railroad(char **args)
     NCURSES_CONST char *name = getenv("TERM");
     char buffer[1024];
     char area[1024], *ap = area;
-    int j;
 
     if (name == 0)
        name = "dumb";
-    if (tgetent(buffer, name)) {
+    if (tgetent(buffer, name) >= 0) {
 
        wipeit = tgetstr("ce", &ap);
        height = tgetnum("li");
@@ -216,9 +216,7 @@ railroad(char **args)
 
        ShowCursor(0);
 
-       for (j = SIGHUP; j <= SIGTERM; j++)
-           if (signal(j, SIG_IGN) != SIG_IGN)
-               signal(j, onsig);
+       CATCHALL(onsig);
 
        while (*args) {
            ShowSign(*args++);
@@ -233,9 +231,20 @@ main(int argc, char *argv[])
     if (argc > 1) {
        railroad(argv + 1);
     } else {
+       static char world[] = "Hello World";
        static char *hello[] =
-       {"Hello World", 0};
+       {world, 0};
        railroad(hello);
     }
-    return EXIT_SUCCESS;
+    ExitProgram(EXIT_SUCCESS);
+}
+
+#else
+int
+main(int argc GCC_UNUSED,
+     char *argv[]GCC_UNUSED)
+{
+    printf("This program requires termcap\n");
+    exit(EXIT_FAILURE);
 }
+#endif