Rev 189 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | pmbaty | 1 | // dialog_options.cpp |
| 2 | |||
| 3 | #include "../common.h" |
||
| 4 | |||
| 5 | |||
| 6 | // dialog template |
||
| 7 | #define THIS_DIALOG DIALOG_OPTIONS |
||
| 8 | |||
| 9 | |||
| 10 | // global variables used in this module only |
||
| 11 | static void *tab_control; |
||
| 12 | static wchar_t server_string[MAX_PATH]; |
||
| 13 | static COLORREF custom_colors[16]; |
||
| 14 | static CHOOSECOLOR cc; |
||
| 15 | static unsigned long selectedcolor_clock; |
||
| 16 | static unsigned long selectedcolor_history; |
||
| 17 | |||
| 18 | |||
| 19 | // prototypes of local functions |
||
| 20 | static void StartThread_ThisDialog (void *thread_parms); |
||
| 21 | static int CALLBACK DialogProc_ThisDialog (HWND hWnd, unsigned int message, WPARAM wParam, LPARAM lParam); |
||
| 22 | static void StartThread_DialogBoxLoad (void *thread_parms); |
||
| 23 | |||
| 24 | |||
| 25 | void DialogBox_Options (void) |
||
| 26 | { |
||
| 27 | // helper function to fire up the modeless dialog box |
||
| 28 | |||
| 140 | pmbaty | 29 | is_dialogbox_displayed = true; |
| 1 | pmbaty | 30 | _beginthread (StartThread_ThisDialog, 0, NULL); // fire up a new one |
| 31 | |||
| 32 | return; // return as soon as the thread is fired up |
||
| 33 | } |
||
| 34 | |||
| 35 | |||
| 36 | void DialogBox_Options_Validated (void) |
||
| 37 | { |
||
| 38 | // callback function called by the main game thread when the dialog box is validated |
||
| 39 | |||
| 40 | // remember this callback is no longer to be called |
||
| 41 | is_dialogbox_options_validated = false; |
||
| 42 | |||
| 43 | return; // finished |
||
| 44 | } |
||
| 45 | |||
| 46 | |||
| 47 | static void StartThread_ThisDialog (void *thread_parms) |
||
| 48 | { |
||
| 49 | // this function runs in a separate thread, for that's the only way (seemingly) |
||
| 50 | // to implement a non-modal message box using the Common Controls library. |
||
| 51 | |||
| 52 | // display the dialog box |
||
| 53 | if (DialogBox (hAppInstance, MAKEINTRESOURCE (THIS_DIALOG), hMainWnd, DialogProc_ThisDialog) == 1) |
||
| 54 | is_dialogbox_options_validated = true; |
||
| 140 | pmbaty | 55 | TabControl_Destroy (tab_control); // FIXME: move to this dialog's WM_DESTROY ? |
| 56 | is_dialogbox_displayed = false; |
||
| 1 | pmbaty | 57 | |
| 58 | |||
| 124 | pmbaty | 59 | the_board.reevaluate = true; // refresh the GUI buttons if needed |
| 1 | pmbaty | 60 | return; // _endthread() implied |
| 61 | } |
||
| 62 | |||
| 63 | |||
| 64 | static int CALLBACK DialogProc_ThisDialog (HWND hWnd, unsigned int message, WPARAM wParam, LPARAM lParam) |
||
| 65 | { |
||
| 66 | // message handler for the dialog box |
||
| 67 | |||
| 29 | pmbaty | 68 | static wchar_t temp_string[MAX_PATH]; |
| 26 | pmbaty | 69 | static wchar_t value_string[32]; |
| 1 | pmbaty | 70 | |
| 71 | unsigned short wParam_hiword; |
||
| 72 | unsigned short wParam_loword; |
||
| 73 | wchar_t *port_string; |
||
| 59 | pmbaty | 74 | int language_index; |
| 119 | pmbaty | 75 | int engine_index; |
| 1 | pmbaty | 76 | int is_checked; |
| 189 | pmbaty | 77 | int level; |
| 1 | pmbaty | 78 | |
| 79 | // filter out the commonly used message values |
||
| 80 | wParam_hiword = HIWORD (wParam); |
||
| 81 | wParam_loword = LOWORD (wParam); |
||
| 82 | |||
| 83 | // have we just fired up this window ? |
||
| 84 | if (message == WM_INITDIALOG) |
||
| 85 | { |
||
| 86 | // center the window |
||
| 87 | CenterWindow (hWnd, hMainWnd); |
||
| 88 | |||
| 89 | // set dialog icons (small one for title bar & big one for task manager) |
||
| 90 | SendMessage (hWnd, WM_SETICON, ICON_SMALL, (LPARAM) LoadIcon (hAppInstance, MAKEINTRESOURCE (ICON_MAIN))); |
||
| 91 | SendMessage (hWnd, WM_SETICON, ICON_BIG, (LPARAM) LoadIcon (hAppInstance, MAKEINTRESOURCE (ICON_MAIN))); |
||
| 92 | |||
| 93 | // set window title and control texts |
||
| 94 | SetWindowText (hWnd, LOCALIZE (L"Options_Title")); |
||
| 95 | SetWindowText (GetDlgItem (hWnd, BUTTON_OK), LOCALIZE (L"Button_OK")); |
||
| 96 | SetWindowText (GetDlgItem (hWnd, BUTTON_CANCEL), LOCALIZE (L"Button_Cancel")); |
||
| 97 | |||
| 98 | // create the tab control and populate it |
||
| 99 | tab_control = TabControl_New (GetDlgItem (hWnd, TABBOX_OPTIONS), (WNDPROC) DialogProc_ThisDialog); |
||
| 100 | TabControl_AddPage (tab_control, LOCALIZE (L"Options_OfflineGameParameters"), DIALOG_OPTIONS_ENGINE); |
||
| 101 | TabControl_AddPage (tab_control, LOCALIZE (L"Options_OnlineGameParameters"), DIALOG_OPTIONS_INTERNET); |
||
| 102 | TabControl_AddPage (tab_control, LOCALIZE (L"Options_DisplayParameters"), DIALOG_OPTIONS_DISPLAY); |
||
| 103 | TabControl_AddPage (tab_control, LOCALIZE (L"Options_GameplayParameters"), DIALOG_OPTIONS_GAMEPLAY); |
||
| 104 | |||
| 105 | // setup page 1 (computer play) |
||
| 33 | pmbaty | 106 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINEPROGRAMNAME), LOCALIZE (L"Options_EngineProgramName")); |
| 119 | pmbaty | 107 | for (engine_index = 0; engine_index < options.engine.program_count; engine_index++) |
| 192 | pmbaty | 108 | if (kernel32_version >= options.engine.programs[engine_index].kernel32_minver) |
| 109 | ComboBox_AddString (TabControl_GetItem (tab_control, COMBOBOX_ENGINE), options.engine.programs[engine_index].friendly_name); // add all SUPPORTED engine programs to the combo box |
||
| 119 | pmbaty | 110 | ComboBox_SetCurSel (TabControl_GetItem (tab_control, COMBOBOX_ENGINE), options.engine.selected_program); // select the right entry |
| 33 | pmbaty | 111 | |
| 1 | pmbaty | 112 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINESEARCHDEPTH), LOCALIZE (L"Options_EnginePredictionLevel")); |
| 113 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_EASY), LOCALIZE (L"Options_Easy")); |
||
| 114 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_HARD), LOCALIZE (L"Options_Hard")); |
||
| 26 | pmbaty | 115 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d", options.engine.depth); |
| 116 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINESEARCHDEPTHVALUE), value_string); |
||
| 117 | |||
| 1 | pmbaty | 118 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINEBLUNDERS), LOCALIZE (L"Options_AllowEngineBlunders")); |
| 119 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_1PCCHANCE), LOCALIZE (L"Options_1PercentChance")); |
||
| 120 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_100PCCHANCE), LOCALIZE (L"Options_100PercentChance")); |
||
| 40 | pmbaty | 121 | if (options.engine.blunder_chances > 0) |
| 26 | pmbaty | 122 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d %%", options.engine.blunder_chances); |
| 123 | else |
||
| 124 | value_string[0] = 0; |
||
| 125 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINEBLUNDERSVALUE), value_string); |
||
| 126 | |||
| 1 | pmbaty | 127 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINERESIGNS), LOCALIZE (L"Options_AllowEngineResigns")); |
| 128 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_YIELDING), LOCALIZE (L"Options_Yielding")); |
||
| 129 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OBSTINATE), LOCALIZE (L"Options_Obstinate")); |
||
| 26 | pmbaty | 130 | if (options.engine.obstinacy_level != -1) |
| 131 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d", 1 + options.engine.obstinacy_level); |
||
| 132 | else |
||
| 133 | value_string[0] = 0; |
||
| 134 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINERESIGNVALUE), value_string); |
||
| 29 | pmbaty | 135 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_EXPERTSETTINGS), LOCALIZE (L"Options_ExpertSettingsHelpText")); |
| 136 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_IAMANEXPERT), LOCALIZE (L"Options_IAmAnExpert")); |
||
| 137 | SetWindowText (TabControl_GetItem (tab_control, BUTTON_EXPERTSETTINGS), LOCALIZE (L"Options_ExpertSettings")); |
||
| 1 | pmbaty | 138 | |
| 139 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINEBLUNDERS), (options.engine.blunder_chances > 0 ? BST_CHECKED : BST_UNCHECKED)); |
||
| 140 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), (options.engine.blunder_chances > 0)); |
||
| 141 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_1PCCHANCE), (options.engine.blunder_chances > 0)); |
||
| 142 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_100PCCHANCE), (options.engine.blunder_chances > 0)); |
||
| 143 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), (options.engine.blunder_chances > 0)); |
||
| 144 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINERESIGNS), (options.engine.obstinacy_level >= 0 ? BST_CHECKED : BST_UNCHECKED)); |
||
| 145 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), (options.engine.obstinacy_level >= 0)); |
||
| 146 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_YIELDING), (options.engine.obstinacy_level >= 0)); |
||
| 147 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_OBSTINATE), (options.engine.obstinacy_level >= 0)); |
||
| 29 | pmbaty | 148 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_IAMANEXPERT), (options.engine.is_expert_mode ? BST_CHECKED : BST_UNCHECKED)); |
| 149 | EnableWindow (TabControl_GetItem (tab_control, BUTTON_EXPERTSETTINGS), options.engine.is_expert_mode); |
||
| 150 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL), TBM_SETRANGE, true, MAKELONG (1, options.engine.max_depth * (options.engine.is_expert_mode ? 3 : 1))); |
||
| 1 | pmbaty | 151 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL), TBM_SETPOS, true, options.engine.depth); |
| 152 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), TBM_SETRANGE, true, MAKELONG (1, 100)); |
||
| 153 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), TBM_SETPOS, true, (options.engine.blunder_chances > 0 ? options.engine.blunder_chances : 1)); |
||
| 154 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), TBM_SETRANGE, true, MAKELONG (0, 9)); |
||
| 155 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), TBM_SETPOS, true, (options.engine.obstinacy_level >= 0 ? options.engine.obstinacy_level : 9)); |
||
| 156 | |||
| 157 | // setup page 2 (Internet play) |
||
| 158 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERADDRESS), LOCALIZE (L"Options_ServerAddress")); |
||
| 159 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERLOGIN), LOCALIZE (L"Options_ServerLogin")); |
||
| 160 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERPASSWORD), LOCALIZE (L"Options_ServerPassword")); |
||
| 161 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSERVERMESSAGES), LOCALIZE (L"Options_ShowServerMessages")); |
||
| 162 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPUBLICCHAT), LOCALIZE (L"Options_ShowPublicChat")); |
||
| 163 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERURL), LOCALIZE (L"Options_CreateAccount")); |
||
| 164 | ConvertStaticToHyperlink (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERURL)); |
||
| 165 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_SERVERWARNING), LOCALIZE (L"Options_ServerWarning")); |
||
| 166 | |||
| 167 | swprintf_s (server_string, WCHAR_SIZEOF (server_string), L"%s:%d", options.network.server_address, options.network.server_port); |
||
| 168 | SetWindowText (TabControl_GetItem (tab_control, EDITBOX_SERVERADDRESS), server_string); |
||
| 169 | EnableWindow (TabControl_GetItem (tab_control, EDITBOX_SERVERADDRESS), false); // FIXME: as long as we don't support ICC, don't allow users to change server address |
||
| 170 | SetWindowText (TabControl_GetItem (tab_control, EDITBOX_LOGIN), options.network.login); |
||
| 171 | SetWindowText (TabControl_GetItem (tab_control, EDITBOX_PASSWORD), options.network.password); |
||
| 172 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPUBLICCHAT), (options.network.want_publicchat ? BST_CHECKED : BST_UNCHECKED)); |
||
| 173 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSERVERMESSAGES), (options.network.want_servermessages ? BST_CHECKED : BST_UNCHECKED)); |
||
| 174 | |||
| 175 | // setup page 3 (display) |
||
| 59 | pmbaty | 176 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_LANGUAGE), LOCALIZE (L"Options_Language")); |
| 124 | pmbaty | 177 | ComboBox_AddString (TabControl_GetItem (tab_control, COMBOBOX_LANGUAGE), LOCALIZE (L"Options_SystemLanguage")); |
| 59 | pmbaty | 178 | for (language_index = 0; language_index < language_count; language_index++) |
| 179 | ComboBox_AddString (TabControl_GetItem (tab_control, COMBOBOX_LANGUAGE), languages[language_index].name); // add it to the combo box |
||
| 124 | pmbaty | 180 | if (is_language_auto) |
| 181 | ComboBox_SetCurSel (TabControl_GetItem (tab_control, COMBOBOX_LANGUAGE), 0); // select the right entry |
||
| 182 | else |
||
| 183 | ComboBox_SetCurSel (TabControl_GetItem (tab_control, COMBOBOX_LANGUAGE), 1 + language_id); // select the right entry |
||
| 59 | pmbaty | 184 | |
| 1 | pmbaty | 185 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_FULLSCREEN), LOCALIZE (L"Options_Fullscreen")); |
| 186 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_TEXTUREFILTERING), LOCALIZE (L"Options_TextureFiltering")); |
||
| 187 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_HIGHQUALITYFILTERING), LOCALIZE (L"Options_HiQualityFiltering")); |
||
| 188 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SPECULARLIGHTING), LOCALIZE (L"Options_SpecularLighting")); |
||
| 189 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWREFLECTIONS), LOCALIZE (L"Options_ShowReflections")); |
||
| 190 | |||
| 191 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_FULLSCREEN), (options.want_fullscreen ? BST_CHECKED : BST_UNCHECKED)); |
||
| 192 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_TEXTUREFILTERING), (options.want_filtering ? BST_CHECKED : BST_UNCHECKED)); |
||
| 193 | EnableWindow (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_HIGHQUALITYFILTERING), options.want_filtering); |
||
| 194 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_HIGHQUALITYFILTERING), (options.want_hiquality ? BST_CHECKED : BST_UNCHECKED)); |
||
| 195 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SPECULARLIGHTING), (options.want_specularlighting ? BST_CHECKED : BST_UNCHECKED)); |
||
| 196 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWREFLECTIONS), (options.want_reflections ? BST_CHECKED : BST_UNCHECKED)); |
||
| 197 | |||
| 198 | // setup page 4 (gameplay) |
||
| 199 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWLASTMOVE), LOCALIZE (L"Options_ShowLastMove")); |
||
| 200 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPOSSIBLEMOVES), LOCALIZE (L"Options_ShowPossibleMoves")); |
||
| 201 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTHREATS), LOCALIZE (L"Options_ShowThreats")); |
||
| 202 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWANIMATIONS), LOCALIZE (L"Options_ShowAnimations")); |
||
| 130 | pmbaty | 203 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSLIDINGANIMATIONS), LOCALIZE (L"Options_ShowSlidingAnimations")); |
| 1 | pmbaty | 204 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTAKENPARTS), LOCALIZE (L"Options_ShowTakenParts")); |
| 205 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTURN), LOCALIZE (L"Options_ShowTurn")); |
||
| 206 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWCLOCK), LOCALIZE (L"Options_ShowClock")); |
||
| 207 | SetWindowText (TabControl_GetItem (tab_control, BUTTON_COLORCLOCK), LOCALIZE (L"Button_Color")); |
||
| 208 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWHISTORY), LOCALIZE (L"Options_ShowHistory")); |
||
| 209 | SetWindowText (TabControl_GetItem (tab_control, BUTTON_COLORHISTORY), LOCALIZE (L"Button_Color")); |
||
| 210 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_USESEPIAFORHISTORY), LOCALIZE (L"Options_UseSepiaForHistory")); |
||
| 211 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ROTATEBOARD), LOCALIZE (L"Options_RotateBoard")); |
||
| 212 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_ROTATESPEED), LOCALIZE (L"Options_RotateSpeed")); |
||
| 213 | SetWindowText (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_PLAYSOUNDS), LOCALIZE (L"Options_PlaySounds")); |
||
| 214 | |||
| 215 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWLASTMOVE), (options.want_lastmove ? BST_CHECKED : BST_UNCHECKED)); |
||
| 216 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPOSSIBLEMOVES), (options.want_possiblemoves ? BST_CHECKED : BST_UNCHECKED)); |
||
| 217 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTHREATS), (options.want_threats ? BST_CHECKED : BST_UNCHECKED)); |
||
| 218 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWANIMATIONS), (options.want_animations ? BST_CHECKED : BST_UNCHECKED)); |
||
| 130 | pmbaty | 219 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSLIDINGANIMATIONS), (options.want_slidinganimations ? BST_CHECKED : BST_UNCHECKED)); |
| 1 | pmbaty | 220 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTAKENPARTS), (options.want_takenparts ? BST_CHECKED : BST_UNCHECKED)); |
| 221 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTURN), (options.want_turn ? BST_CHECKED : BST_UNCHECKED)); |
||
| 222 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWCLOCK), (options.want_clock ? BST_CHECKED : BST_UNCHECKED)); |
||
| 223 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWHISTORY), (options.want_history ? BST_CHECKED : BST_UNCHECKED)); |
||
| 224 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_USESEPIAFORHISTORY), (options.want_sepiafilter ? BST_CHECKED : BST_UNCHECKED)); |
||
| 225 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ROTATEBOARD), (options.want_autorotateon1vs1 ? BST_CHECKED : BST_UNCHECKED)); |
||
| 226 | Button_SetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_PLAYSOUNDS), (options.want_sounds ? BST_CHECKED : BST_UNCHECKED)); |
||
| 227 | SendMessage (TabControl_GetItem (tab_control, SLIDER_OPTIONS_ROTATESPEED), TBM_SETRANGE, true, MAKELONG (5, 80)); |
||
| 228 | SendMessage (TabControl_GetItem (tab_control, SLIDER_OPTIONS_ROTATESPEED), TBM_SETPOS, true, options.rotate_speed); |
||
| 229 | |||
| 230 | // set the selected color to the current game clock color (convert from RGBA to GDI BGR) |
||
| 231 | selectedcolor_clock = ((options.clock_color & 0x0000ff00) << 8) |
||
| 232 | | ((options.clock_color & 0x00ff0000) >> 8) |
||
| 233 | | ((options.clock_color & 0xff000000) >> 24); |
||
| 234 | |||
| 235 | // set the selected color to the current game history color (convert from RGBA to GDI BGR) |
||
| 236 | selectedcolor_history = ((options.history_color & 0x0000ff00) << 8) |
||
| 237 | | ((options.history_color & 0x00ff0000) >> 8) |
||
| 238 | | ((options.history_color & 0xff000000) >> 24); |
||
| 239 | |||
| 240 | // set focus on the first settable item |
||
| 241 | SendMessage (TabControl_GetItem (tab_control, EDITBOX_LOGIN), EM_SETSEL, 0, -1); // select all text |
||
| 242 | SetFocus (TabControl_GetItem (tab_control, EDITBOX_LOGIN)); |
||
| 243 | } |
||
| 244 | |||
| 245 | // else did we click the close button on the title bar ? |
||
| 246 | else if (message == WM_CLOSE) |
||
| 247 | EndDialog (hWnd, 0); // close the dialog box |
||
| 248 | |||
| 249 | // else did we take action on one of the controls ? |
||
| 250 | else if (message == WM_COMMAND) |
||
| 251 | { |
||
| 252 | // did we cancel the dialog box ? (IDCANCEL is a system-wide dialog box handler value, that catches the ESC key) |
||
| 253 | if (wParam_loword == IDCANCEL) |
||
| 254 | EndDialog (hWnd, 0); // close the dialog box |
||
| 255 | |||
| 256 | // else was it the OK button ? |
||
| 257 | else if (wParam_loword == BUTTON_OK) |
||
| 258 | { |
||
| 259 | // grab the new parameters and close the dialog box |
||
| 260 | |||
| 261 | // set the server address, login and password |
||
| 262 | GetWindowText (TabControl_GetItem (tab_control, EDITBOX_SERVERADDRESS), server_string, WCHAR_SIZEOF (server_string)); |
||
| 263 | options.network.server_address[0] = 0; // default values |
||
| 264 | options.network.server_port = 0; |
||
| 265 | port_string = wcschr (server_string, L':'); // find the address:port separator |
||
| 266 | if (port_string != NULL) |
||
| 267 | { |
||
| 268 | port_string[0] = 0; // split the string |
||
| 269 | options.network.server_port = _wtoi (&port_string[1]); // and read the port |
||
| 270 | } |
||
| 271 | wcscpy_s (options.network.server_address, WCHAR_SIZEOF (options.network.server_address), server_string); // now read the address |
||
| 272 | GetWindowText (TabControl_GetItem (tab_control, EDITBOX_LOGIN), options.network.login, WCHAR_SIZEOF (options.network.login)); |
||
| 273 | GetWindowText (TabControl_GetItem (tab_control, EDITBOX_PASSWORD), options.network.password, WCHAR_SIZEOF (options.network.password)); |
||
| 274 | |||
| 59 | pmbaty | 275 | // display |
| 124 | pmbaty | 276 | language_index = ComboBox_GetCurSel (TabControl_GetItem (tab_control, COMBOBOX_LANGUAGE)); |
| 277 | is_language_auto = (language_index == 0); // first, see if the system language is selected |
||
| 278 | if (!is_language_auto) |
||
| 279 | language_id = language_index - 1; // because slot #0 of the list is taken by "System Language" |
||
| 59 | pmbaty | 280 | CreateOrUpdateApplicationMenu (); // on language change, update the application menu |
| 1 | pmbaty | 281 | options.want_fullscreen = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_FULLSCREEN)) != 0); |
| 282 | options.want_filtering = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_TEXTUREFILTERING)) != 0); |
||
| 283 | options.want_specularlighting = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SPECULARLIGHTING)) != 0); |
||
| 284 | options.want_reflections = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWREFLECTIONS)) != 0); |
||
| 59 | pmbaty | 285 | |
| 286 | // gameplay |
||
| 287 | options.network.want_servermessages = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSERVERMESSAGES)) != 0); |
||
| 288 | options.network.want_publicchat = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPUBLICCHAT)) != 0); |
||
| 1 | pmbaty | 289 | options.want_lastmove = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWLASTMOVE)) != 0); |
| 290 | options.want_possiblemoves = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWPOSSIBLEMOVES)) != 0); |
||
| 291 | options.want_threats = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTHREATS)) != 0); |
||
| 292 | options.want_animations = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWANIMATIONS)) != 0); |
||
| 130 | pmbaty | 293 | options.want_slidinganimations = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSLIDINGANIMATIONS)) != 0); |
| 1 | pmbaty | 294 | options.want_takenparts = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTAKENPARTS)) != 0); |
| 295 | options.want_turn = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWTURN)) != 0); |
||
| 296 | options.want_clock = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWCLOCK)) != 0); |
||
| 297 | options.clock_color = 0 | ((selectedcolor_clock & 0x000000ff) << 24) |
||
| 298 | | ((selectedcolor_clock & 0x0000ff00) << 8) |
||
| 299 | | ((selectedcolor_clock & 0x00ff0000) >> 8); // convert from GDI BGR to RGBA |
||
| 300 | options.want_history = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWHISTORY)) != 0); |
||
| 301 | options.history_color = 0 | ((selectedcolor_history & 0x000000ff) << 24) |
||
| 302 | | ((selectedcolor_history & 0x0000ff00) << 8) |
||
| 303 | | ((selectedcolor_history & 0x00ff0000) >> 8); // convert from GDI BGR to RGBA |
||
| 304 | options.want_sepiafilter = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_USESEPIAFORHISTORY)) != 0); |
||
| 305 | options.want_autorotateon1vs1 = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ROTATEBOARD)) != 0); |
||
| 306 | options.want_sounds = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_PLAYSOUNDS)) != 0); |
||
| 40 | pmbaty | 307 | options.rotate_speed = SendMessage (TabControl_GetItem (tab_control, SLIDER_OPTIONS_ROTATESPEED), TBM_GETPOS, 0, 0); |
| 1 | pmbaty | 308 | |
| 40 | pmbaty | 309 | // engine options |
| 310 | ComboBox_GetLBText (TabControl_GetItem (tab_control, COMBOBOX_ENGINE), ComboBox_GetCurSel (TabControl_GetItem (tab_control, COMBOBOX_ENGINE)), temp_string); |
||
| 119 | pmbaty | 311 | for (engine_index = 0; engine_index < options.engine.program_count; engine_index++) |
| 150 | pmbaty | 312 | if ((_wcsicmp (temp_string, options.engine.programs[engine_index].friendly_name) == 0) && (engine_index != options.engine.selected_program)) |
| 119 | pmbaty | 313 | { |
| 314 | options.engine.selected_program = engine_index; |
||
| 178 | pmbaty | 315 | if ((the_board.game_state == STATE_SETUPPOSITION) || ((the_board.game_state == STATE_PLAYING) && (the_board.move_count > 1))) |
| 316 | MessageBox (hWnd, LOCALIZE (L"Options_ChessEngineChangeWillAffectNextGame"), LOCALIZE (L"ImportantMessage"), MB_ICONINFORMATION | MB_OK); |
||
| 119 | pmbaty | 317 | } |
| 40 | pmbaty | 318 | |
| 1 | pmbaty | 319 | options.engine.depth = SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL), TBM_GETPOS, 0, 0); |
| 40 | pmbaty | 320 | if (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINEBLUNDERS))) |
| 321 | options.engine.blunder_chances = SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), TBM_GETPOS, 0, 0); |
||
| 322 | else |
||
| 323 | options.engine.blunder_chances = 0; |
||
| 324 | if (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINERESIGNS))) |
||
| 325 | options.engine.obstinacy_level = SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), TBM_GETPOS, 0, 0); |
||
| 326 | else |
||
| 327 | options.engine.obstinacy_level = -1; |
||
| 1 | pmbaty | 328 | |
| 329 | EndDialog (hWnd, 0); // close the dialog box |
||
| 330 | } |
||
| 331 | |||
| 332 | // else was it the cancel button ? |
||
| 333 | else if (wParam_loword == BUTTON_CANCEL) |
||
| 334 | EndDialog (hWnd, 0); // close the dialog box |
||
| 335 | |||
| 29 | pmbaty | 336 | // else was it the expert settings button ? |
| 337 | else if (wParam_loword == BUTTON_EXPERTSETTINGS) |
||
| 338 | { |
||
| 189 | pmbaty | 339 | swprintf_s (temp_string, WCHAR_SIZEOF (temp_string), L"%s\\engines\\%s\\init.txt", app_path, options.engine.programs[ComboBox_GetCurSel (TabControl_GetItem (tab_control, COMBOBOX_ENGINE))].folder); |
| 29 | pmbaty | 340 | ShellExecute (NULL, L"open", temp_string, NULL, NULL, SW_SHOWNORMAL); // open the engine initialization text file |
| 341 | } |
||
| 342 | |||
| 1 | pmbaty | 343 | // else is it the rotate board check box ? if so, enable or disable the speed slider |
| 344 | else if (wParam_loword == CHECKBOX_OPTIONS_ROTATEBOARD) |
||
| 345 | { |
||
| 346 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_OPTIONS_ROTATESPEED), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ROTATEBOARD))); |
||
| 347 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_OPTIONS_ROTATESPEED), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ROTATEBOARD))); |
||
| 348 | } |
||
| 349 | |||
| 29 | pmbaty | 350 | // else is it the I am an expert check box ? if so, enable or disable the expert settings button and adjust the engine level slider |
| 351 | else if (wParam_loword == CHECKBOX_OPTIONS_IAMANEXPERT) |
||
| 352 | { |
||
| 353 | options.engine.is_expert_mode = (Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_IAMANEXPERT)) == BST_CHECKED); |
||
| 354 | EnableWindow (TabControl_GetItem (tab_control, BUTTON_EXPERTSETTINGS), options.engine.is_expert_mode); |
||
| 355 | SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL), TBM_SETRANGE, true, MAKELONG (1, options.engine.max_depth * (options.engine.is_expert_mode ? 3 : 1))); |
||
| 356 | } |
||
| 357 | |||
| 1 | pmbaty | 358 | // else is it the allow engine blunders check box ? if so, enable or disable the blunder chance slider |
| 359 | else if (wParam_loword == CHECKBOX_OPTIONS_ALLOWENGINEBLUNDERS) |
||
| 360 | { |
||
| 361 | is_checked = Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINEBLUNDERS)); |
||
| 362 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), is_checked); |
||
| 363 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_1PCCHANCE), is_checked); |
||
| 364 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_100PCCHANCE), is_checked); |
||
| 26 | pmbaty | 365 | if (is_checked) |
| 40 | pmbaty | 366 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d %%", SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), TBM_GETPOS, 0, 0)); |
| 26 | pmbaty | 367 | else |
| 368 | value_string[0] = 0; |
||
| 369 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINEBLUNDERSVALUE), value_string); |
||
| 1 | pmbaty | 370 | } |
| 371 | |||
| 372 | // else is it the allow engine resigns check box ? if so, enable or disable the blunder chance slider |
||
| 373 | else if (wParam_loword == CHECKBOX_OPTIONS_ALLOWENGINERESIGNS) |
||
| 374 | { |
||
| 375 | is_checked = Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_ALLOWENGINERESIGNS)); |
||
| 376 | EnableWindow (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), is_checked); |
||
| 377 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_YIELDING), is_checked); |
||
| 378 | EnableWindow (TabControl_GetItem (tab_control, STATICTEXT_OBSTINATE), is_checked); |
||
| 26 | pmbaty | 379 | if (is_checked) |
| 40 | pmbaty | 380 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d", 1 + SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), TBM_GETPOS, 0, 0)); |
| 26 | pmbaty | 381 | else |
| 382 | value_string[0] = 0; |
||
| 383 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINERESIGNVALUE), value_string); |
||
| 1 | pmbaty | 384 | } |
| 385 | |||
| 386 | // else is it the enable filtering check box ? if so, enable or disable the high quality checkbox |
||
| 387 | else if (wParam_loword == CHECKBOX_OPTIONS_TEXTUREFILTERING) |
||
| 388 | EnableWindow (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_HIGHQUALITYFILTERING), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_TEXTUREFILTERING))); |
||
| 389 | |||
| 130 | pmbaty | 390 | // else is it the show animations check box ? if so, enable or disable the show sliding animations checkbox too |
| 391 | else if (wParam_loword == CHECKBOX_OPTIONS_SHOWANIMATIONS) |
||
| 392 | EnableWindow (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWSLIDINGANIMATIONS), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWANIMATIONS))); |
||
| 393 | |||
| 1 | pmbaty | 394 | // else is it the show game clock check box ? if so, enable or disable the game clock color button |
| 395 | else if (wParam_loword == CHECKBOX_OPTIONS_SHOWCLOCK) |
||
| 396 | EnableWindow (TabControl_GetItem (tab_control, BUTTON_COLORCLOCK), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWCLOCK))); |
||
| 397 | |||
| 398 | // else is it the game clock color button ? |
||
| 399 | else if (wParam_loword == BUTTON_COLORCLOCK) |
||
| 400 | { |
||
| 401 | // prepare a color pick dialog box |
||
| 402 | memset (&cc, 0, sizeof (cc)); |
||
| 403 | cc.lStructSize = sizeof (cc); |
||
| 404 | cc.hwndOwner = hWnd; |
||
| 405 | cc.lpCustColors = (unsigned long *) custom_colors; |
||
| 406 | cc.rgbResult = selectedcolor_clock; |
||
| 407 | cc.Flags = CC_FULLOPEN | CC_RGBINIT; |
||
| 408 | |||
| 409 | // fire it up |
||
| 410 | if (ChooseColor (&cc)) |
||
| 411 | selectedcolor_clock = cc.rgbResult; // save away returned color |
||
| 412 | } |
||
| 413 | |||
| 414 | // else is it the show game history check box ? if so, enable or disable the game history color button |
||
| 415 | else if (wParam_loword == CHECKBOX_OPTIONS_SHOWHISTORY) |
||
| 416 | EnableWindow (TabControl_GetItem (tab_control, BUTTON_COLORHISTORY), Button_GetCheck (TabControl_GetItem (tab_control, CHECKBOX_OPTIONS_SHOWHISTORY))); |
||
| 417 | |||
| 418 | // else is it the game history color button ? |
||
| 419 | else if (wParam_loword == BUTTON_COLORHISTORY) |
||
| 420 | { |
||
| 421 | // prepare a color pick dialog box |
||
| 422 | memset (&cc, 0, sizeof (cc)); |
||
| 423 | cc.lStructSize = sizeof (cc); |
||
| 424 | cc.hwndOwner = hWnd; |
||
| 425 | cc.lpCustColors = (unsigned long *) custom_colors; |
||
| 426 | cc.rgbResult = selectedcolor_history; |
||
| 427 | cc.Flags = CC_FULLOPEN | CC_RGBINIT; |
||
| 428 | |||
| 429 | // fire it up |
||
| 430 | if (ChooseColor (&cc)) |
||
| 431 | selectedcolor_history = cc.rgbResult; // save away returned color |
||
| 432 | } |
||
| 433 | |||
| 434 | // else is it the create/manage account hyperlink ? |
||
| 435 | else if (wParam_loword == STATICTEXT_OPTIONS_SERVERURL) |
||
| 436 | { |
||
| 59 | pmbaty | 437 | swprintf_s (temp_string, WCHAR_SIZEOF (temp_string), ACCOUNTCREATION_URL, languages[language_id].name); // build account creation url |
| 29 | pmbaty | 438 | ShellExecute (NULL, L"open", temp_string, NULL, NULL, SW_MAXIMIZE); // open the accounts page in the default browser, maximized |
| 1 | pmbaty | 439 | } |
| 440 | } |
||
| 441 | |||
| 26 | pmbaty | 442 | // else is it a notification for a slider moving ? |
| 443 | else if (message == WM_HSCROLL) |
||
| 444 | { |
||
| 445 | // is it the engine prediction level slider ? if so, update the slider value text |
||
| 446 | if ((HWND) lParam == TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL)) |
||
| 447 | { |
||
| 189 | pmbaty | 448 | level = SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_DIFFICULTYLEVEL), TBM_GETPOS, 0, 0); // retrieve the difficulty level |
| 449 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d", level); |
||
| 26 | pmbaty | 450 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINESEARCHDEPTHVALUE), value_string); |
| 189 | pmbaty | 451 | if ((level > 20) && (wParam_loword == SB_THUMBPOSITION)) |
| 452 | MessageBox (hWnd, LOCALIZE (L"Options_ExcessiveDifficulty"), LOCALIZE (L"ImportantMessage"), MB_ICONWARNING | MB_OK); // if the user is a dumb fuck, let him know that he is (FIXME: this displays twice) |
||
| 26 | pmbaty | 453 | } |
| 454 | |||
| 455 | // else is it the engine blunders slider ? if so, update the slider value text |
||
| 456 | else if ((HWND) lParam == TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE)) |
||
| 457 | { |
||
| 458 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d %%", SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_BLUNDERCHANCE), TBM_GETPOS, 0, 0)); |
||
| 459 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINEBLUNDERSVALUE), value_string); |
||
| 460 | } |
||
| 461 | |||
| 462 | // else is it the engine obstinacy slider ? if so, update the slider value text |
||
| 463 | else if ((HWND) lParam == TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY)) |
||
| 464 | { |
||
| 465 | swprintf_s (value_string, WCHAR_SIZEOF (value_string), L"%d", 1 + SendMessage (TabControl_GetItem (tab_control, SLIDER_ENGINE_OBSTINACY), TBM_GETPOS, 0, 0)); |
||
| 466 | SetWindowText (TabControl_GetItem (tab_control, STATICTEXT_ENGINERESIGNVALUE), value_string); |
||
| 467 | } |
||
| 468 | } |
||
| 469 | |||
| 1 | pmbaty | 470 | // else is it a notification for the tab control ? |
| 471 | else if ((message == WM_NOTIFY) && (((NMHDR *) lParam)->hwndFrom == GetDlgItem (hWnd, TABBOX_OPTIONS))) |
||
| 472 | TabControl_Notify ((NMHDR *) lParam); |
||
| 473 | |||
| 474 | // call the default dialog message processing function to keep things going |
||
| 475 | return (false); |
||
| 476 | } |