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