2003-11-20 05:40:34 +01:00
|
|
|
/* -*-mode: C; fill-column: 77; c-basic-offset: 4; -*- */
|
|
|
|
/*
|
2006-01-08 02:25:02 +01:00
|
|
|
* Copyright 2002 by Eric House (xwords@eehouse.org). All rights reserved.
|
2003-11-20 05:40:34 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ceblank.h"
|
|
|
|
#include "cemain.h"
|
|
|
|
#include "ceutil.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
loadLettersList( HWND hDlg, BlankDialogState* bState )
|
|
|
|
{
|
|
|
|
XP_U16 i;
|
|
|
|
XP_U16 nTiles = bState->nTiles;
|
2005-06-23 16:12:09 +02:00
|
|
|
const XP_UCHAR4* texts = bState->texts;
|
2003-11-20 05:40:34 +01:00
|
|
|
|
|
|
|
for ( i = 0; i < nTiles; ++i ) {
|
|
|
|
XP_U16 len;
|
|
|
|
wchar_t widebuf[4];
|
|
|
|
|
|
|
|
len = MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED,
|
|
|
|
texts[i], strlen(texts[i]),
|
2007-05-26 16:03:07 +02:00
|
|
|
widebuf, VSIZE(widebuf) );
|
2003-11-20 05:40:34 +01:00
|
|
|
widebuf[len] = 0;
|
|
|
|
|
|
|
|
SendDlgItemMessage( hDlg, BLANKFACE_LIST, LB_ADDSTRING,
|
|
|
|
0, (long)widebuf );
|
|
|
|
}
|
|
|
|
ce_selectAndShow( hDlg, BLANKFACE_LIST, 0 );
|
|
|
|
} /* loadLettersList */
|
|
|
|
|
2003-12-09 06:16:11 +01:00
|
|
|
#ifdef FEATURE_TRAY_EDIT
|
|
|
|
static void
|
|
|
|
showCurTray( HWND hDlg, BlankDialogState* bState )
|
|
|
|
{
|
|
|
|
if ( bState->pi->why == PICK_FOR_CHEAT ) {
|
2005-06-23 16:12:09 +02:00
|
|
|
const PickInfo* pi = bState->pi;
|
2003-12-09 06:16:11 +01:00
|
|
|
XP_U16 lenSoFar = 0;
|
|
|
|
XP_U16 i;
|
|
|
|
XP_UCHAR labelBuf[48];
|
|
|
|
wchar_t widebuf[48];
|
|
|
|
XP_UCHAR* name;
|
|
|
|
|
|
|
|
name = bState->globals->gameInfo.players[bState->playerNum].name;
|
|
|
|
|
|
|
|
lenSoFar += XP_SNPRINTF( labelBuf + lenSoFar,
|
|
|
|
sizeof(labelBuf) - lenSoFar,
|
|
|
|
"%d of %d for %s" XP_CR "Cur",
|
2004-05-15 03:06:39 +02:00
|
|
|
pi->thisPick + 1, pi->nTotal, name );
|
2003-12-09 06:16:11 +01:00
|
|
|
|
|
|
|
for ( i = 0; i < pi->nCurTiles; ++i ) {
|
|
|
|
lenSoFar += XP_SNPRINTF( labelBuf+lenSoFar,
|
|
|
|
sizeof(labelBuf)-lenSoFar, "%s%s",
|
|
|
|
i==0?": ":", ", pi->curTiles[i] );
|
|
|
|
}
|
|
|
|
|
|
|
|
(void)MultiByteToWideChar( CP_ACP, MB_PRECOMPOSED,
|
|
|
|
labelBuf, lenSoFar + 1,
|
|
|
|
widebuf,
|
2007-05-26 16:03:07 +02:00
|
|
|
VSIZE(widebuf) + sizeof(widebuf[0]) );
|
2003-12-09 06:16:11 +01:00
|
|
|
|
|
|
|
SetDlgItemText( hDlg,IDC_PICKMSG, widebuf );
|
|
|
|
}
|
|
|
|
} /* showCurTray */
|
|
|
|
#endif
|
|
|
|
|
2003-11-20 05:40:34 +01:00
|
|
|
LRESULT CALLBACK
|
|
|
|
BlankDlg(HWND hDlg, UINT message, WPARAM wParam, LPARAM lParam)
|
|
|
|
{
|
|
|
|
BlankDialogState* bState;
|
|
|
|
XP_U16 id;
|
|
|
|
|
|
|
|
if ( message == WM_INITDIALOG ) {
|
|
|
|
SetWindowLong( hDlg, GWL_USERDATA, lParam );
|
|
|
|
bState = (BlankDialogState*)lParam;
|
|
|
|
|
2003-12-09 06:16:11 +01:00
|
|
|
#ifdef FEATURE_TRAY_EDIT
|
|
|
|
if ( bState->pi->why == PICK_FOR_CHEAT ) {
|
|
|
|
showCurTray( hDlg, bState );
|
|
|
|
ceShowOrHide( hDlg, IDC_BPICK, XP_FALSE );
|
|
|
|
} else {
|
|
|
|
XP_ASSERT( bState->pi->why == PICK_FOR_BLANK );
|
|
|
|
ceShowOrHide( hDlg, IDC_CPICK, XP_FALSE );
|
2004-02-14 07:03:53 +01:00
|
|
|
ceShowOrHide( hDlg, IDC_PICKALL, XP_FALSE );
|
|
|
|
ceShowOrHide( hDlg, IDC_PICKMSG, XP_FALSE );
|
2003-12-09 06:16:11 +01:00
|
|
|
}
|
2004-05-15 03:06:39 +02:00
|
|
|
ceShowOrHide( hDlg, IDC_BACKUP,
|
|
|
|
bState->pi->why == PICK_FOR_CHEAT
|
2004-12-12 18:32:17 +01:00
|
|
|
&& bState->pi->thisPick > 0 );
|
2003-12-09 06:16:11 +01:00
|
|
|
#endif
|
|
|
|
|
2008-03-31 02:23:07 +02:00
|
|
|
ceDlgSetup( bState->globals, hDlg );
|
2008-03-24 13:41:12 +01:00
|
|
|
|
2003-11-20 05:40:34 +01:00
|
|
|
loadLettersList( hDlg, bState );
|
|
|
|
} else {
|
|
|
|
bState = (BlankDialogState*)GetWindowLong( hDlg, GWL_USERDATA );
|
2004-05-26 06:39:29 +02:00
|
|
|
if ( !!bState ) {
|
2003-11-20 05:40:34 +01:00
|
|
|
|
2004-05-26 06:39:29 +02:00
|
|
|
switch ( message ) {
|
|
|
|
case WM_KEYDOWN: /* key down. Select a list item? */
|
|
|
|
XP_LOGF( "got WM_KEYDOWN" );
|
|
|
|
break;
|
|
|
|
case WM_COMMAND:
|
|
|
|
id = LOWORD(wParam);
|
|
|
|
if ( 0 ) {
|
2004-02-14 07:03:53 +01:00
|
|
|
#ifdef FEATURE_TRAY_EDIT
|
2004-05-26 06:39:29 +02:00
|
|
|
} else if ( id == IDC_PICKALL ) {
|
|
|
|
bState->result = PICKER_PICKALL;
|
|
|
|
} else if ( id == IDC_BACKUP ) {
|
|
|
|
bState->result = PICKER_BACKUP;
|
2004-02-14 07:03:53 +01:00
|
|
|
#endif
|
2004-05-26 06:39:29 +02:00
|
|
|
} else if ( id == IDOK ) {
|
|
|
|
bState->result =
|
|
|
|
(XP_S16)SendDlgItemMessage( hDlg, BLANKFACE_LIST,
|
|
|
|
LB_GETCURSEL, 0, 0 );
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
EndDialog( hDlg, id );
|
|
|
|
return TRUE;
|
2003-11-20 05:40:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
} /* BlankDlg */
|