]> git.pond.sub.org Git - empserver/blobdiff - src/client/login.c
Update copyright notice
[empserver] / src / client / login.c
index cd95f5f269d9f56d210fe112fcdd8139485ce49b..bc942ffd20eb2afda9863cb90857f648357c8d69 100644 (file)
@@ -1,11 +1,11 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
- *                           Ken Stevens, Steve McClure
+ *  Copyright (C) 1986-2016, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *                Ken Stevens, Steve McClure, Markus Armbruster
  *
- *  This program is free software; you can redistribute it and/or modify
+ *  Empire 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 of the License, or
+ *  the Free Software Foundation, either version 3 of the License, or
  *  (at your option) any later version.
  *
  *  This program is distributed in the hope that it will be useful,
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
- *  along with this program; if not, write to the Free Software
- *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
  *
  *  ---
  *
- *  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.
  *
  *  ---
  *
  *  login.c: Log into an empire server
- * 
+ *
  *  Known contributors to this file:
  *     Dave Pare, 1989
  *     Steve McClure, 1998
+ *     Markus Armbruster, 2004-2009
  */
 
-#include "misc.h"
-#include "proto.h"
+#include <config.h>
 
 #include <ctype.h>
 #include <stdio.h>
-#if !defined(_WIN32)
+#include <stdlib.h>
+#include <string.h>
 #include <unistd.h>
+#ifdef _WIN32
+#include <windows.h>
 #endif
+#include "misc.h"
+#include "proto.h"
+
+#ifndef HAVE_GETPASS
+#define getpass ersatz_getpass
+static char *
+ersatz_getpass(char *prompt)
+{
+    static char buf[128];
+    char *p;
+    size_t len;
+#ifdef _WIN32
+    DWORD mode;
+    HANDLE input_handle = GetStdHandle(STD_INPUT_HANDLE);
 
-int expect();
-int atoi();
-void sendcmd();
+    if (GetConsoleMode(input_handle, &mode))
+       SetConsoleMode(input_handle, mode & ~ENABLE_ECHO_INPUT);
+    else
+#endif
+       printf("Note: your input is echoed to the screen\n");
+    printf("%s", prompt);
+    fflush(stdout);
+    p = fgets(buf, sizeof(buf), stdin);
+#ifdef _WIN32
+    if (GetConsoleMode(input_handle, &mode))
+       SetConsoleMode(input_handle, mode | ENABLE_ECHO_INPUT);
+#endif
+    if (!p)
+       return NULL;
+    len = strlen(p);
+    if (p[len - 1] == '\n')
+       p[len - 1] = 0;
+    return p;
+}
+#endif
 
 int
-login(s, uname, cname, cpass, kill_proc)
-int s;
-s_char *uname;
-s_char *cname;
-s_char *cpass;
-int kill_proc;
+login(int s, char *uname, char *cname, char *cpass,
+      int kill_proc, int utf8)
 {
-    s_char tmp[128];
-    s_char buf[1024];
-    s_char *ptr;
-    s_char *p;
-    int len;
+    char tmp[128];
+    char buf[1024];
+    char *ptr;
+    char *p;
+    int len, code;
 
     if (!expect(s, C_INIT, buf))
        return 0;
-    (void)sendcmd(s, USER, uname);
-    if (!expect(s, C_CMDOK, buf))
+    sendcmd(s, "user", uname);
+    if (!expect(s, C_CMDOK, buf)) {
+       fprintf(stderr, "Server rejects your user name\n");
        return 0;
-    if (cname == 0) {
+    }
+    if (utf8) {
+       sendcmd(s, "options", "utf-8");
+       for (;;) {
+           code = recvline(s, buf);
+           if (code == C_CMDOK)
+               break;
+           if (code != C_DATA) {
+               fprintf(stderr, "Server doesn't support UTF-8\n");
+               return 0;
+           }
+       }
+    }
+    if (cname == NULL) {
        (void)printf("Country name? ");
+       fflush(stdout);
        cname = fgets(tmp, sizeof(tmp), stdin);
-       if (cname == 0 || *cname == 0)
+       if (cname == NULL || *cname == 0)
            return 0;
     }
     len = strlen(cname);
     if (cname[len-1] == '\n')
        cname[len-1] = 0;
-    (void)sendcmd(s, COUN, cname);
+    sendcmd(s, "coun", cname);
     if (!expect(s, C_CMDOK, buf)) {
-       (void)fprintf(stderr, "empire: no such country\n");
+       (void)fprintf(stderr, "No such country\n");
        return 0;
     }
-    if (cpass == 0) {
-#ifndef _WIN32
-       cpass = (s_char *)getpass("Your name? ");
-       if (cpass == 0 || *cpass == 0)
+    if (cpass == NULL) {
+       cpass = getpass("Your name? ");
+       if (cpass == NULL || *cpass == 0)
            return 0;
-#else
-       printf("Note: This is echoed to the screen\n");
-       printf("Your name? ");
-       cpass = fgets(tmp, sizeof(tmp), stdin);
-       if (cpass == 0 || *cpass == 0)
-           return 0;
-       len = strlen(cpass);
-       if (cname[len-1] == '\n')
-           cname[len-1] = 0;
-#endif
     }
     (void)printf("\n");
-    (void)sendcmd(s, PASS, cpass);
+    sendcmd(s, "pass", cpass);
     memset(cpass, 0, strlen(cpass));   /* for core dumps */
     if (!expect(s, C_CMDOK, buf)) {
        (void)fprintf(stderr, "Bad password\n");
        return 0;
     }
     if (kill_proc) {
-       (void)sendcmd(s, KILL, (s_char *)0);
+       sendcmd(s, "kill", NULL);
        (void)printf("\n\t-=O=-\n");
        (void)expect(s, C_EXIT, buf);
        fprintf(stderr, "%s\n", buf);
        return 0;
     }
-    (void)sendcmd(s, PLAY, (s_char *)0);
+    sendcmd(s, "play", NULL);
     (void)printf("\n\t-=O=-\n");
     if (!expect(s, C_INIT, buf)) {
        fprintf(stderr, "%s\n", buf);
@@ -116,13 +149,14 @@ int kill_proc;
     }
     for (ptr = buf; !isspace(*ptr); ptr++) ;
     ptr++;
-    p = index(ptr, '\n');
-    if (p != 0)
+    p = strchr(ptr, '\n');
+    if (p != NULL)
        *p = 0;
     if (atoi(ptr) != CLIENTPROTO) {
        printf("Empire client out of date; get new version!\n");
        printf("   this version: %d, current version: %d\n",
               CLIENTPROTO, atoi(ptr));
     }
+    fflush(stdout);
     return 1;
 }