+2005-12-06 Richard D. Worth <richard@theworths.org>
+
+ * PROTOCOL: Add error NO_INVITE
+
+ * TODO: Uncheck INVITE, ACCEPT
+
+ * src/ttt-error.c: (ttt_error_string): Add errors NO_INVITE,
+ NO_GAME
+
+ * src/ttt-client.c: (_ttt_client_execute_message),
+ (_ttt_client_execute_help), (_ttt_client_execute_version),
+ (_ttt_client_execute_invite), (_ttt_client_execute_accept),
+ (_ttt_client_execute_retract), (_ttt_client_execute_decline):
+ Whitespace changes. Partially implement RETRACT, DECLINE.
+
2005-12-05 Richard D. Worth <richard@theworths.org>
* PROTOCOL: Fill some missing possible error occurrences.
ACCEPT
- Possible errors: NO_NAME_SET, NO_USER
+ Possible errors: NO_NAME_SET, NO_USER, NO_INVITE
1.3.3. Retracting an invitiation
RETRACT
- Possible errors: NO_NAME_SET, NO_USER
+ Possible errors: NO_NAME_SET, NO_USER, NO_INVITE
1.3.3. Declining an invitation
DECLINE
- Possible errors: NO_NAME_SET, NO_USER
+ Possible errors: NO_NAME_SET, NO_USER, NO_INVITE
1.4. In-game commands
Errors from game management commands
- 3.4.1. No such game
+ 3.4.1. No invitiation from/for specified user
+
+ ERROR NO_INVITE
+
+ An invitiation action was attempted where no invitation
+ exists.
+
+ Possibly returned by: ACCEPT, RETRACT, DECLINE
+
+ 3.4.2. No such game
ERROR NO_GAME
};
typedef ttt_error_t (*ttt_command_func_t) (ttt_client_t *client,
- char **args,
- int num_args);
+ char **args,
+ int num_args);
static ttt_error_t
_ttt_client_execute_helo (ttt_client_t *client,
static ttt_error_t
_ttt_client_execute_help (ttt_client_t *client,
- char **args,
- int num_args);
+ char **args,
+ int num_args);
static ttt_error_t
_ttt_client_execute_version (ttt_client_t *client,
- char **args,
- int num_args);
+ char **args,
+ int num_args);
static ttt_error_t
_ttt_client_execute_quit (ttt_client_t *client,
static ttt_error_t
_ttt_client_execute_invite (ttt_client_t *client,
- char **args,
- int num_args);
+ char **args,
+ int num_args);
static ttt_error_t
_ttt_client_execute_accept (ttt_client_t *client,
- char **args,
- int num_args);
+ char **args,
+ int num_args);
+
+static ttt_error_t
+_ttt_client_execute_retract (ttt_client_t *client,
+ char **args,
+ int num_args);
+
+static ttt_error_t
+_ttt_client_execute_decline (ttt_client_t *client,
+ char **args,
+ int num_args);
typedef struct _ttt_command_description {
const char *command;
{"ACCEPT", 1, 1, _ttt_client_execute_accept,
"ACCEPT <username> ", "Accept a game invitation."},
+ {"RETRACT", 1, 1, _ttt_client_execute_retract,
+ "RETRACT <username> ", "Retract a game invitation."},
+
+ {"DECLINE", 1, 1, _ttt_client_execute_decline,
+ "DECLINE <username> ", "Decline a game invitation."},
+
{"MESSAGE", 1, 1, _ttt_client_execute_message,
"MESSAGE <message> ", "Send a message to everyone."},
static ttt_error_t
_ttt_client_execute_message (ttt_client_t *client,
- char **args,
- int num_args)
+ char **args,
+ int num_args)
{
char *response;
char *notice;
static ttt_error_t
_ttt_client_execute_help (ttt_client_t *client,
- char **args,
- int num_args)
+ char **args,
+ int num_args)
{
char *response;
char *command;
static ttt_error_t
_ttt_client_execute_version (ttt_client_t *client,
- char **args,
- int num_args)
+ char **args,
+ int num_args)
{
char *response;
char *clientversion;
static ttt_error_t
_ttt_client_execute_invite (ttt_client_t *client,
- char **args,
- int num_args)
+ char **args,
+ int num_args)
{
const char *username;
char *response;
username);
ttt_server_broadcast (client->server, notice);
+ /* XXX: Store invitation in state */
+
free (notice);
free (response);
static ttt_error_t
_ttt_client_execute_accept (ttt_client_t *client,
- char **args,
- int num_args)
+ char **args,
+ int num_args)
{
const char *username;
char *response;
if (error)
return error;
+ /* XXX: Verify invitation, else return ERROR NO_INVITE */
+
xasprintf (&response, "ACCEPT\r\n");
ttt_client_send (client, response);
return TTT_ERROR_NONE;
}
+static ttt_error_t
+_ttt_client_execute_retract (ttt_client_t *client,
+ char **args,
+ int num_args)
+{
+ const char *username;
+ char *response;
+ char *notice;
+ ttt_error_t error;
+
+ assert (num_args == 1);
+
+ username = args[0];
+
+ if (!client->registered)
+ return TTT_ERROR_NO_NAME_SET;
+
+ error = ttt_server_verify_username (client->server, username);
+ if (error)
+ return error;
+
+ /* XXX: Verify invitation, else return ERROR NO_INVITE */
+
+ xasprintf (&response, "RETRACT\r\n");
+ ttt_client_send (client, response);
+
+ xasprintf (¬ice, "NOTICE RETRACT %s %s\r\n",
+ client->username,
+ username);
+ ttt_server_broadcast (client->server, notice);
+
+ /* XXX: Remove invitiation from state */
+
+ free (notice);
+ free (response);
+
+ return TTT_ERROR_NONE;
+}
+
+static ttt_error_t
+_ttt_client_execute_decline (ttt_client_t *client,
+ char **args,
+ int num_args)
+{
+ const char *username;
+ char *response;
+ char *notice;
+ ttt_error_t error;
+
+ assert (num_args == 1);
+
+ username = args[0];
+
+ if (!client->registered)
+ return TTT_ERROR_NO_NAME_SET;
+
+ error = ttt_server_verify_username (client->server, username);
+ if (error)
+ return error;
+
+ /* XXX: Verify invitation, else return ERROR NO_INVITE */
+
+ xasprintf (&response, "DECLINE\r\n");
+ ttt_client_send (client, response);
+
+ xasprintf (¬ice, "NOTICE DECLINE %s %s\r\n",
+ client->username,
+ username);
+ ttt_server_broadcast (client->server, notice);
+
+ /* XXX: Remove invitation from state */
+
+ free (notice);
+ free (response);
+
+ return TTT_ERROR_NONE;
+}
+
static void
_free_request (ttt_client_t *client);