]> git.pond.sub.org Git - empserver/blob - src/client/login.c
Supply prototypes where possible. This uncovered type errors with
[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 #include <stdlib.h>
41 #include <string.h>
42 #if !defined(_WIN32)
43 #include <unistd.h>
44 #endif
45
46 int expect(int s, int match, s_char *buf);
47 void sendcmd(int s, int cmd, s_char *arg);
48
49 int
50 login(int s, s_char *uname, s_char *cname, s_char *cpass, int kill_proc)
51 {
52     s_char tmp[128];
53     s_char buf[1024];
54     s_char *ptr;
55     s_char *p;
56     int len;
57
58     if (!expect(s, C_INIT, buf))
59         return 0;
60     (void)sendcmd(s, USER, uname);
61     if (!expect(s, C_CMDOK, buf))
62         return 0;
63     if (cname == 0) {
64         (void)printf("Country name? ");
65         cname = fgets(tmp, sizeof(tmp), stdin);
66         if (cname == 0 || *cname == 0)
67             return 0;
68     }
69     len = strlen(cname);
70     if (cname[len-1] == '\n')
71         cname[len-1] = 0;
72     (void)sendcmd(s, COUN, cname);
73     if (!expect(s, C_CMDOK, buf)) {
74         (void)fprintf(stderr, "empire: no such country\n");
75         return 0;
76     }
77     if (cpass == 0) {
78 #ifndef _WIN32
79         cpass = (s_char *)getpass("Your name? ");
80         if (cpass == 0 || *cpass == 0)
81             return 0;
82 #else
83         printf("Note: This is echoed to the screen\n");
84         printf("Your name? ");
85         cpass = fgets(tmp, sizeof(tmp), stdin);
86         if (cpass == 0 || *cpass == 0)
87             return 0;
88         len = strlen(cpass);
89         if (cname[len-1] == '\n')
90             cname[len-1] = 0;
91 #endif
92     }
93     (void)printf("\n");
94     (void)sendcmd(s, PASS, cpass);
95     memset(cpass, 0, strlen(cpass));    /* for core dumps */
96     if (!expect(s, C_CMDOK, buf)) {
97         (void)fprintf(stderr, "Bad password\n");
98         return 0;
99     }
100     if (kill_proc) {
101         (void)sendcmd(s, KILL, (s_char *)0);
102         (void)printf("\n\t-=O=-\n");
103         (void)expect(s, C_EXIT, buf);
104         fprintf(stderr, "%s\n", buf);
105         return 0;
106     }
107     (void)sendcmd(s, PLAY, (s_char *)0);
108     (void)printf("\n\t-=O=-\n");
109     if (!expect(s, C_INIT, buf)) {
110         fprintf(stderr, "%s\n", buf);
111         return 0;
112     }
113     for (ptr = buf; !isspace(*ptr); ptr++) ;
114     ptr++;
115     p = strchr(ptr, '\n');
116     if (p != 0)
117         *p = 0;
118     if (atoi(ptr) != CLIENTPROTO) {
119         printf("Empire client out of date; get new version!\n");
120         printf("   this version: %d, current version: %d\n",
121                CLIENTPROTO, atoi(ptr));
122     }
123     return 1;
124 }