]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - games/mille/save.c
This commit was generated by cvs2svn to compensate for changes in r92828,
[FreeBSD/FreeBSD.git] / games / mille / save.c
1 /*
2  * Copyright (c) 1983, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #ifndef lint
35 #if 0
36 static char sccsid[] = "@(#)save.c      8.1 (Berkeley) 5/31/93";
37 #endif
38 static const char rcsid[] =
39  "$FreeBSD$";
40 #endif /* not lint */
41
42 #include <sys/types.h>
43 #include <sys/stat.h>
44
45 #include <fcntl.h>
46 #include <string.h>
47 #include <termios.h>
48 #include <time.h>
49 #include <unctrl.h>
50 #include <unistd.h>
51
52 #include "mille.h"
53
54 # ifdef attron
55 #       include <term.h>
56 #       define  _tty    cur_term->Nttyb
57 # endif attron
58
59 /*
60  * @(#)save.c   1.2 (Berkeley) 3/28/83
61  */
62
63 typedef struct stat     STAT;
64
65 /*
66  *      This routine saves the current game for use at a later date
67  */
68
69 bool
70 save() {
71
72         extern int      errno;
73         char            *sp;
74         int             outf;
75         time_t          *tp;
76         char            buf[80];
77         time_t          tme;
78         STAT            junk;
79
80         sp = NULL;
81         tp = &tme;
82         if (Fromfile && getyn(SAMEFILEPROMPT))
83                 strcpy(buf, Fromfile);
84         else {
85 over:
86                 prompt(FILEPROMPT);
87                 leaveok(Board, FALSE);
88                 refresh();
89                 sp = buf;
90                 while ((*sp = readch()) != '\n') {
91                         if (*sp == killchar())
92                                 goto over;
93                         else if (*sp == erasechar()) {
94                                 if (--sp < buf)
95                                         sp = buf;
96                                 else {
97                                         addch('\b');
98                                         /*
99                                          * if the previous char was a control
100                                          * char, cover up two characters.
101                                          */
102                                         if (*sp < ' ')
103                                                 addch('\b');
104                                         clrtoeol();
105                                 }
106                         }
107                         else {
108                                 addstr(unctrl(*sp));
109                                 ++sp;
110                         }
111                         refresh();
112                 }
113                 *sp = '\0';
114                 leaveok(Board, TRUE);
115         }
116
117         /*
118          * check for existing files, and confirm overwrite if needed
119          */
120
121         if (sp == buf || (!Fromfile && stat(buf, &junk) > -1
122             && getyn(OVERWRITEFILEPROMPT) == FALSE))
123                 return FALSE;
124
125         if ((outf = creat(buf, 0644)) < 0) {
126                 error(strerror(errno));
127                 return FALSE;
128         }
129         mvwaddstr(Score, ERR_Y, ERR_X, buf);
130         wrefresh(Score);
131         time(tp);                       /* get current time             */
132         strcpy(buf, ctime(tp));
133         sp = buf;
134         for (; *sp != '\n'; sp++)
135                 continue;
136         *sp = '\0';
137         varpush(outf, write);
138         close(outf);
139         wprintw(Score, " [%s]", buf);
140         wclrtoeol(Score);
141         wrefresh(Score);
142         return TRUE;
143 }
144
145 /*
146  *      This does the actual restoring.  It returns TRUE if the
147  * backup was made on exiting, in which case certain things must
148  * be cleaned up before the game starts.
149  */
150 bool
151 rest_f(file)
152 char    *file; {
153
154         char    *sp;
155         int             inf;
156         char            buf[80];
157         STAT            sbuf;
158
159         if ((inf = open(file, 0)) < 0) {
160                 perror(file);
161                 exit(1);
162         }
163         if (fstat(inf, &sbuf) < 0) {            /* get file stats       */
164                 perror(file);
165                 exit(1);
166         }
167         varpush(inf, read);
168         close(inf);
169         strcpy(buf, ctime(&sbuf.st_mtime));
170         for (sp = buf; *sp != '\n'; sp++)
171                 continue;
172         *sp = '\0';
173         /*
174          * initialize some necessary values
175          */
176         (void)sprintf(Initstr, "%s [%s]\n", file, buf);
177         Fromfile = file;
178         return !On_exit;
179 }
180