]> git.cworth.org Git - ttt/blob - src/ttt-error.c
2005-12-03 Richard D. Worth <richard@theworths.org>
[ttt] / src / ttt-error.c
1 /* ttt-error.c - errors returned to clients
2  *
3  * Copyright © 2005 Carl Worth
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2, or (at your option)
8  * any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software Foundation,
17  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  *
19  * Author: Carl Worth <cworth@cworth.org>
20  */
21
22 #include "ttt-error.h"
23
24 const char *
25 ttt_error_string (ttt_error_t error)
26 {
27     switch (error) {
28     case TTT_ERROR_NONE:
29         return "ERROR NONEi\r\n";
30     case TTT_ERROR_NO_NAME_SET:
31         return "ERROR NO_NAME_SET\r\n";
32     case TTT_ERROR_INVALID_NAME:
33         return "ERROR INVALID_NAME\r\n";
34     case TTT_ERROR_COMMAND:
35         return "ERROR COMMAND\r\n";
36     case TTT_ERROR_SYNTAX:
37         return "ERROR SYNTAX\r\n";
38     case TTT_ERROR_NOT_NUMBER:
39         return "ERROR NOT_NUMBER\r\n";
40     case TTT_ERROR_NOT_GRID:
41         return "ERROR NOT_GRID\r\n";
42     case TTT_ERROR_NO_USER:
43         return "ERROR NO_USER\r\n";
44     case TTT_ERROR_NOT_IN_GAME:
45         return "ERROR_NOT_IN_GAME\r\n";
46     case TTT_ERROR_NOT_PLAYING:
47         return "ERROR_NOT_PLAYING\r\n";
48     case TTT_ERROR_NOT_YOUR_TURN:
49         return "ERROR NOT_YOUR_TURN\r\n";
50     /* Not an actual protocol errror, so this should never happen. */
51     case TTT_ERROR_QUIT_REQUESTED:
52         ASSERT_NOT_REACHED;
53         break;
54     }
55
56     ASSERT_NOT_REACHED;
57     return NULL;
58 }