source: mainline/uspace/app/tetris/scores.c@ c88d7f99

ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c88d7f99 was 87822ce, checked in by Jiri Svoboda <jiri@…>, 5 years ago

Avoid infinite loop when console communication is broken

Need to make sure callers of console_get_event_timeout() can distinguish
between timeout and I/O error. Fix all callers of console_get_event()
and console_get_event_timeout() not to enter infinite loop when console
connection is broken. Also avoid setting of errno variable.

  • Property mode set to 100644
File size: 6.1 KB
Line 
1/*
2 * Copyright (c) 2011 Martin Decky
3 * 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 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** Attributations
30 *
31 * scores.c 8.1 (Berkeley) 5/31/93
32 * NetBSD: scores.c,v 1.2 1995/04/22 07:42:38 cgd
33 * OpenBSD: scores.c,v 1.11 2006/04/20 03:25:36 ray
34 *
35 * Based upon BSD Tetris
36 *
37 * Copyright (c) 1992, 1993
38 * The Regents of the University of California.
39 * Distributed under BSD license.
40 *
41 * This code is derived from software contributed to Berkeley by
42 * Chris Torek and Darren F. Provine.
43 *
44 */
45
46/** @addtogroup tetris
47 * @{
48 */
49/** @file
50 */
51
52/*
53 * Score code for Tetris, by Darren Provine (kilroy@gboro.glassboro.edu)
54 * modified 22 January 1992, to limit the number of entries any one
55 * person has.
56 *
57 * Major whacks since then.
58 */
59
60#include <errno.h>
61#include <stdbool.h>
62#include <stdio.h>
63#include <str.h>
64#include <io/console.h>
65#include <io/keycode.h>
66#include <vfs/vfs.h>
67#include <stdlib.h>
68#include <time.h>
69#include "screen.h"
70#include "tetris.h"
71#include "scores.h"
72
73/*
74 * Within this code, we can hang onto one extra "high score", leaving
75 * room for our current score (whether or not it is high).
76 *
77 * We also sometimes keep tabs on the "highest" score on each level.
78 * As long as the scores are kept sorted, this is simply the first one at
79 * that level.
80 */
81
82#define NUMSPOTS (MAXHISCORES + 1)
83#define NLEVELS (MAXLEVEL + 1)
84
85static struct highscore scores[NUMSPOTS];
86
87/** Copy from hiscore table score with index src to dest
88 *
89 */
90static void copyhiscore(int dest, int src)
91{
92 str_cpy(scores[dest].hs_name, STR_BOUNDS(MAXLOGNAME) + 1,
93 scores[src].hs_name);
94 scores[dest].hs_score = scores[src].hs_score;
95 scores[dest].hs_level = scores[src].hs_level;
96}
97
98void showscores(int firstgame)
99{
100 int i;
101
102 clear_screen();
103 moveto(10, 0);
104 printf("\tRank \tLevel \tName\t points\n");
105 printf("\t========================================================\n");
106
107 for (i = 0; i < NUMSPOTS - 1; i++)
108 printf("\t%6d %6d %-16s %20d\n",
109 i + 1, scores[i].hs_level, scores[i].hs_name, scores[i].hs_score);
110
111 if (!firstgame) {
112 printf("\t========================================================\n");
113 printf("\t Last %6d %-16s %20d\n",
114 scores[NUMSPOTS - 1].hs_level, scores[NUMSPOTS - 1].hs_name, scores[NUMSPOTS - 1].hs_score);
115 }
116
117 printf("\n\n\n\n\tPress any key to return to main menu.");
118 getchar();
119}
120
121void insertscore(int score, int level)
122{
123 int i;
124 int j;
125 size_t off;
126 cons_event_t ev;
127 kbd_event_t *kev;
128 errno_t rc;
129
130 clear_screen();
131 moveto(10, 10);
132 fputs("Insert your name: ", stdout);
133 str_cpy(scores[NUMSPOTS - 1].hs_name, STR_BOUNDS(MAXLOGNAME) + 1,
134 "Player");
135 i = 6;
136 off = 6;
137
138 moveto(10, 28);
139 printf("%s%.*s", scores[NUMSPOTS - 1].hs_name, MAXLOGNAME - i,
140 "........................................");
141
142 while (true) {
143 console_flush(console);
144 rc = console_get_event(console, &ev);
145 if (rc != EOK)
146 exit(1);
147
148 if (ev.type != CEV_KEY || ev.ev.key.type == KEY_RELEASE)
149 continue;
150
151 kev = &ev.ev.key;
152
153 if (kev->key == KC_ENTER || kev->key == KC_NENTER)
154 break;
155
156 if (kev->key == KC_BACKSPACE) {
157 if (i > 0) {
158 char32_t uc;
159
160 --i;
161 while (off > 0) {
162 --off;
163 size_t otmp = off;
164 uc = str_decode(scores[NUMSPOTS - 1].hs_name,
165 &otmp, STR_BOUNDS(MAXLOGNAME) + 1);
166 if (uc != U_SPECIAL)
167 break;
168 }
169
170 scores[NUMSPOTS - 1].hs_name[off] = '\0';
171 }
172 } else if (kev->c != '\0') {
173 if (i < (MAXLOGNAME - 1)) {
174 if (chr_encode(kev->c, scores[NUMSPOTS - 1].hs_name,
175 &off, STR_BOUNDS(MAXLOGNAME) + 1) == EOK) {
176 ++i;
177 }
178 scores[NUMSPOTS - 1].hs_name[off] = '\0';
179 }
180 }
181
182 moveto(10, 28);
183 printf("%s%.*s", scores[NUMSPOTS - 1].hs_name, MAXLOGNAME - i,
184 "........................................");
185 }
186
187 scores[NUMSPOTS - 1].hs_score = score;
188 scores[NUMSPOTS - 1].hs_level = level;
189
190 i = NUMSPOTS - 1;
191 while ((i > 0) && (scores[i - 1].hs_score < score))
192 i--;
193
194 for (j = NUMSPOTS - 2; j > i; j--)
195 copyhiscore(j, j - 1);
196
197 copyhiscore(i, NUMSPOTS - 1);
198}
199
200void initscores(void)
201{
202 int i;
203 for (i = 0; i < NUMSPOTS; i++) {
204 str_cpy(scores[i].hs_name, STR_BOUNDS(MAXLOGNAME) + 1, "HelenOS Team");
205 scores[i].hs_score = (NUMSPOTS - i) * 200;
206 scores[i].hs_level = (i + 1 > MAXLEVEL ? MAXLEVEL : i + 1);
207 }
208}
209
210errno_t loadscores(void)
211{
212 FILE *f;
213 size_t cnt;
214 int rc;
215
216 f = fopen("/w/data/tetris.sco", "rb");
217 if (f == NULL)
218 return ENOENT;
219
220 cnt = fread(scores, sizeof(struct highscore), NUMSPOTS, f);
221 rc = fclose(f);
222
223 if (cnt != NUMSPOTS || rc != 0)
224 return EIO;
225
226 return EOK;
227}
228
229void savescores(void)
230{
231 FILE *f;
232 size_t cnt;
233 int rc;
234
235 f = fopen("/w/data/tetris.sco", "wb");
236 if (f == NULL) {
237 printf("Error creating table\n");
238 return;
239 }
240
241 cnt = fwrite(scores, sizeof(struct highscore), NUMSPOTS, f);
242 rc = fclose(f);
243
244 if (cnt != NUMSPOTS || rc != 0)
245 printf("Error saving score table\n");
246}
247
248/** @}
249 */
Note: See TracBrowser for help on using the repository browser.