2003-11-01 06:35:29 +01:00
|
|
|
/* -*-mode: C; fill-column: 76; c-basic-offset: 4; -*- */
|
|
|
|
/*
|
2009-01-04 00:54:25 +01:00
|
|
|
* Copyright 2001-2009 by Eric House (xwords@eehouse.org). All rights
|
|
|
|
* reserved.
|
2003-11-01 06:35:29 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GAME_H_
|
|
|
|
#define _GAME_H_
|
|
|
|
|
|
|
|
#include "model.h"
|
|
|
|
#include "board.h"
|
|
|
|
#include "comms.h"
|
|
|
|
#include "server.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
#ifdef CPLUS
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2009-09-26 16:37:49 +02:00
|
|
|
#define STREAM_VERS_CHANNELSEED 0x09 /* new short in relay connect must be
|
|
|
|
saved in comms */
|
2009-04-05 21:16:52 +02:00
|
|
|
#define STREAM_VERS_UTF8 0x08
|
2009-01-04 00:54:25 +01:00
|
|
|
#define STREAM_VERS_ALWAYS_MULTI 0x07 /* stream format same for multi and
|
|
|
|
one-device game builds */
|
2008-09-09 14:18:32 +02:00
|
|
|
#define STREAM_VERS_MODEL_NO_DICT 0x06
|
2007-12-14 04:38:55 +01:00
|
|
|
#define STREAM_VERS_BLUETOOTH 0x05
|
2006-11-05 17:54:18 +01:00
|
|
|
#define STREAM_VERS_KEYNAV 0x04
|
2006-10-05 03:17:03 +02:00
|
|
|
#define STREAM_VERS_RELAY 0x03
|
|
|
|
#define STREAM_VERS_41B4 0x02
|
2004-10-09 01:57:24 +02:00
|
|
|
#define STREAM_VERS_405 0x01
|
2003-11-01 06:35:29 +01:00
|
|
|
|
2009-09-26 16:37:49 +02:00
|
|
|
#define CUR_STREAM_VERS STREAM_VERS_CHANNELSEED
|
2006-10-05 03:17:03 +02:00
|
|
|
|
2003-11-01 06:35:29 +01:00
|
|
|
typedef struct LocalPlayer {
|
|
|
|
XP_UCHAR* name;
|
|
|
|
XP_UCHAR* password;
|
|
|
|
XP_U16 secondsUsed;
|
|
|
|
XP_Bool isRobot;
|
|
|
|
XP_Bool isLocal;
|
|
|
|
} LocalPlayer;
|
|
|
|
|
|
|
|
#define DUMB_ROBOT 0
|
|
|
|
#define SMART_ROBOT 1
|
|
|
|
|
|
|
|
typedef struct CurGameInfo {
|
|
|
|
XP_UCHAR* dictName;
|
|
|
|
LocalPlayer players[MAX_NUM_PLAYERS];
|
2008-05-31 05:26:16 +02:00
|
|
|
XP_U16 gameID; /* uniquely identifies game */
|
|
|
|
XP_U16 gameSeconds; /* for timer */
|
2003-11-01 06:35:29 +01:00
|
|
|
XP_U8 nPlayers;
|
|
|
|
XP_U8 boardSize;
|
2007-02-02 09:34:37 +01:00
|
|
|
DeviceRole serverRole;
|
2003-11-01 06:35:29 +01:00
|
|
|
|
|
|
|
XP_Bool hintsNotAllowed;
|
|
|
|
XP_Bool timerEnabled;
|
2003-11-19 05:06:32 +01:00
|
|
|
XP_Bool allowPickTiles;
|
2004-06-18 15:16:40 +02:00
|
|
|
XP_Bool allowHintRect;
|
2003-11-01 06:35:29 +01:00
|
|
|
XP_U8 robotSmartness;
|
|
|
|
XWPhoniesChoice phoniesAction;
|
2007-12-14 04:38:55 +01:00
|
|
|
XP_Bool confirmBTConnect; /* only used for BT */
|
2003-11-01 06:35:29 +01:00
|
|
|
} CurGameInfo;
|
|
|
|
|
|
|
|
typedef struct XWGame {
|
|
|
|
BoardCtxt* board;
|
|
|
|
ModelCtxt* model;
|
|
|
|
ServerCtxt* server;
|
|
|
|
#ifndef XWFEATURE_STANDALONE_ONLY
|
|
|
|
CommsCtxt* comms;
|
|
|
|
#endif
|
|
|
|
} XWGame;
|
|
|
|
|
|
|
|
void game_makeNewGame( MPFORMAL XWGame* game, CurGameInfo* gi,
|
2005-01-13 02:43:02 +01:00
|
|
|
XW_UtilCtxt* util, DrawCtx* draw, XP_U16 gameID,
|
2009-09-12 23:39:13 +02:00
|
|
|
CommonPrefs* cp, const TransportProcs* procs );
|
2005-04-03 03:36:59 +02:00
|
|
|
void game_reset( MPFORMAL XWGame* game, CurGameInfo* gi, XW_UtilCtxt* util,
|
2009-09-12 23:39:13 +02:00
|
|
|
XP_U16 gameID, CommonPrefs* cp, const TransportProcs* procs );
|
2003-11-01 06:35:29 +01:00
|
|
|
|
2006-11-05 17:54:18 +01:00
|
|
|
XP_Bool game_makeFromStream( MPFORMAL XWStreamCtxt* stream, XWGame* game,
|
|
|
|
CurGameInfo* gi,
|
|
|
|
DictionaryCtxt* dict, XW_UtilCtxt* util,
|
|
|
|
DrawCtx* draw, CommonPrefs* cp,
|
2009-09-12 23:39:13 +02:00
|
|
|
const TransportProcs* procs );
|
2003-11-01 06:35:29 +01:00
|
|
|
|
2006-09-15 09:31:24 +02:00
|
|
|
void game_saveToStream( const XWGame* game, const CurGameInfo* gi,
|
|
|
|
XWStreamCtxt* stream );
|
2003-11-01 06:35:29 +01:00
|
|
|
void game_dispose( XWGame* game );
|
2007-02-03 18:54:20 +01:00
|
|
|
void gi_initPlayerInfo( MPFORMAL CurGameInfo* gi,
|
|
|
|
const XP_UCHAR* nameTemplate );
|
2003-11-01 06:35:29 +01:00
|
|
|
void gi_disposePlayerInfo( MPFORMAL CurGameInfo* gi );
|
2006-09-15 09:31:24 +02:00
|
|
|
void gi_writeToStream( XWStreamCtxt* stream, const CurGameInfo* gi );
|
2004-06-24 07:18:46 +02:00
|
|
|
void gi_readFromStream( MPFORMAL XWStreamCtxt* stream, CurGameInfo* gi );
|
2007-12-31 21:00:13 +01:00
|
|
|
void gi_copy( MPFORMAL CurGameInfo* destGI, const CurGameInfo* srcGi );
|
2007-05-20 22:46:29 +02:00
|
|
|
XP_U16 gi_countLocalHumans( const CurGameInfo* gi );
|
2003-11-01 06:35:29 +01:00
|
|
|
|
|
|
|
XP_Bool player_hasPasswd( LocalPlayer* player );
|
|
|
|
XP_Bool player_passwordMatches( LocalPlayer* player, XP_U8* buf, XP_U16 len );
|
|
|
|
XP_U16 player_timePenalty( CurGameInfo* gi, XP_U16 playerNum );
|
|
|
|
|
|
|
|
#ifdef CPLUS
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|