Subversion Repositories Games.Chess Giants

Rev

Rev 136 | Rev 171 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 136 Rev 140
Line 203... Line 203...
203
 
203
 
204
   the_board.game_state = STATE_SETUPPOSITION; // game not started yet, enter board setup mode
204
   the_board.game_state = STATE_SETUPPOSITION; // game not started yet, enter board setup mode
205
   the_board.reevaluate = true; // evaluate board again
205
   the_board.reevaluate = true; // evaluate board again
206
 
206
 
207
   // display the "please choose start position" phrase in the middle of the screen
207
   // display the "please choose start position" phrase in the middle of the screen
208
   Scene_SetText (&the_scene.gui.central_text, 50.0f, 50.0f, -1, ALIGN_CENTER, ALIGN_CENTER, ALIGN_CENTER, centermsg_fontindex, RGBA_TO_RGBACOLOR (255, 255, 255, 191), 999999.0f, true, LOCALIZE (L"SetupMode"));
208
   Scene_UpdateText (&the_scene.gui.central_text, RGBA_TO_RGBACOLOR (255, 255, 255, 191), DURATION_INFINITE, true, L"\n\n\n\n\n\n%s", LOCALIZE (L"SetupMode"));
209
   the_scene.gui.partspick_selectedpart = ' '; // no selected part yet
209
   the_scene.gui.partspick_selectedpart = ' '; // no selected part yet
210
   the_scene.update = true; // and update the 3D scene
210
   the_scene.update = true; // and update the 3D scene
211
 
211
 
212
   return; // finished
212
   return; // finished
213
}
213
}