]> git.pond.sub.org Git - empserver/blobdiff - src/client/termlib.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / client / termlib.c
index 0d61e978b32e0029936d4bc6fb583c4bdff9af6b..8e32b190bc02b593b9cacdf3b568e9404c0e610b 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2006, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *     Steve McClure, 1998
  */
 
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <ctype.h>
-#include "misc.h"
+#include <config.h>
 
-#if !defined(_WIN32)
-#include <unistd.h>
-#endif
+#ifndef _WIN32
 
-char *SO = 0;
-char *SE = 0;
+#include <curses.h>
+#include <stdio.h>
+#include <term.h>
+#include <unistd.h>
+#include "misc.h"
 
-int tgetent(char *, char *);
+static char *smso = 0;
+static char *rmso = 0;
 
-static void
-parsedelay(char *r)
+void
+getsose(void)
 {
-    char *s, *t;
+    int err;
 
-    s = r;
-    while (isdigit(*s) || (*s == '*') || (*s == '.')) {
-       s++;
-    }
-    for (t = r; *s != 0; (s++, t++)) {
-       *t = *s;
+    if (!isatty(fileno(stdout)))
+       return;
+
+    if (setupterm(NULL, fileno(stdout), &err) != OK) {
+       fprintf(stderr, "Can't setup terminal, check environment variable TERM\n");
+       return;
     }
-    *t = 0;
+
+    smso = tigetstr("smso");
+    rmso = tigetstr("rmso");
 }
 
 void
-getsose(void)
+putso(void)
 {
-#ifndef _WIN32
-    extern char *tgetstr(char *, char **);
-    char *cp;
-    char *term;
-    static char tbuf[1024];
-    static char cbuf[20];
+    if (smso)
+       putp(smso);
+}
 
-    memset(cbuf, 0, 20);
-    term = getenv("TERM");
-    if (term == 0) {
-       fprintf(stderr, "warning: no TERM environment variable\n");
-       return;
-    }
-    tgetent(tbuf, term);
-    cp = cbuf;
-    SO = tgetstr("so", &cp);
-    SE = tgetstr("se", &cp);
-    if (SO == 0) {
-       SO = tgetstr("us", &cp);
-       SE = tgetstr("ue", &cp);
-    }
-    if (SO != 0) {
-       parsedelay(SO);
-       parsedelay(SE);
-    }
-#endif
+void
+putse(void)
+{
+    if (rmso)
+       putp(rmso);
 }
+
+#endif /* !_WIN32 */