]> git.pond.sub.org Git - empserver/blob - src/client/login.c
Import of Empire 4.2.12
[empserver] / src / client / login.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program is free software; you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation; either version 2 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program; if not, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  login.c: Log into an empire server
29  * 
30  *  Known contributors to this file:
31  *     Dave Pare, 1989
32  *     Steve McClure, 1998
33  */
34
35 #include "misc.h"
36 #include "proto.h"
37
38 #include <ctype.h>
39 #include <stdio.h>
40 #if !defined(_WIN32)
41 #include <unistd.h>
42 #endif
43
44 int expect();
45 int atoi();
46 void sendcmd();
47
48 int
49 login(s, uname, cname, cpass, kill_proc)
50         int     s;
51         s_char  *uname;
52         s_char  *cname;
53         s_char  *cpass;
54         int     kill_proc;
55 {
56         s_char  tmp[128];
57         s_char  buf[1024];
58         s_char  *ptr;
59         s_char  *p;
60
61         if (!expect(s, C_INIT, buf))
62                 return 0;
63         (void) sendcmd(s, USER, uname);
64         if (!expect(s, C_CMDOK, buf))
65                 return 0;
66         if (cname == 0) {
67                 (void) printf("Country name? ");
68                 cname = fgets(tmp, 128, stdin);
69                 if (cname == 0 || *cname == 0)
70                         return 0;
71         }
72         if (cname[strlen(cname) - 1] == '\n')
73                 cname[strlen(cname) - 1] = 0;
74         if (cname[strlen(cname) - 1] == '\r')
75                 cname[strlen(cname) - 1] = 0;
76         (void) sendcmd(s, COUN, cname);
77         if (!expect(s, C_CMDOK, buf)) {
78                 (void) fprintf(stderr, "empire: no such country\n");
79                 return 0;
80         }
81         if (cpass == 0) {
82 #ifndef _WIN32
83                 cpass = (s_char *)getpass("Your name? ");
84 #else
85                 printf("Note: This is echoed to the screen\n");
86                 printf("Your name? ");
87                 cpass = tmp;
88                 *cpass = 0;
89                 fgets(cpass, 128, stdin);
90 #endif
91                 if (cpass == 0 || *cpass == 0)
92                         return 0;
93         }
94         (void) printf("\n");
95         (void) sendcmd(s, PASS, cpass);
96         bzero(cpass, strlen(cpass));            /* for core dumps */
97         if (!expect(s, C_CMDOK, buf)) {
98                 (void) fprintf(stderr, "Bad password\n");
99                 return 0;
100         }
101         if (kill_proc) {
102                 (void) sendcmd(s, KILL, (s_char *)0);
103                 (void) printf("\n\t-=O=-\n");
104                 (void) expect(s, C_EXIT, buf);
105                 fprintf(stderr, "%s\n", buf);
106                 return 0;
107         }
108         (void) sendcmd(s, PLAY, (s_char *)0);
109         (void) printf("\n\t-=O=-\n");
110         if (!expect(s, C_INIT, buf)) {
111                 fprintf(stderr, "%s\n", buf);
112                 return 0;
113         }
114         for (ptr = buf; !isspace(*ptr); ptr++)
115                 ;
116         ptr++;
117         p = index(ptr, '\n');
118         if (p != 0)
119                 *p = 0;
120         if (atoi(ptr) != CLIENTPROTO) {
121                 printf("Empire client out of date; get new version!\n");
122                 printf("   this version: %d, current version: %d\n",
123                         CLIENTPROTO, atoi(ptr));
124         }
125         return 1;
126 }