Results 1 to 2 of 2
Thread: Chess game selection screen
- 03-18-2011, 09:29 PM #1
Member
- Join Date
- Mar 2011
- Posts
- 1
- Rep Power
- 0
Chess game selection screen
I am making a chess game with Java. I am not tackling chess AI - the game simply enforces the rules of chess for two human players.
Each chess square is a JLabel with a MouseListener which calls the squareClicked(clickedPosition) method in my GameController class. I have implemented almost the whole game of chess like this, but I'm now stuck when trying to implement one of the final features.
When a pawn reaches the final square, I want a window to pop-up with some radio buttons so that the user can choose a replacement piece like a queen. It needs to work so that if the user tries to click on the chessboard whilst the window is still there, nothing should happen. Players should not be allowed to move until the replacement piece has been chosen.
So the window needs to appear, the user should click a radio button for their desired piece, and then click ok. The window should then disappear, and my gamecontroller object needs to somehow be notified about their selection, so that it can replace the pawn with their selected piece and continue the game.
I am not sure how to approach this. Sound like I may need to launch the window with a new thread, and join my main thread to the end of it. Or perhaps make my gamecontroller object wait(). However I am very inexperienced with threading and need some guidance.
Thanks.
- 03-19-2011, 03:27 AM #2
Member
- Join Date
- Mar 2009
- Posts
- 70
- Rep Power
- 0
Dialog (Java 2 Platform SE v1.4.2)
This will block input
Tutorial: http://download.oracle.com/javase/tu...ts/dialog.html
Make sure to set modal to true;
Similar Threads
-
Chess Game - Movement
By danborgir in forum Advanced JavaReplies: 1Last Post: 03-14-2011, 11:45 AM -
Java Game Expert Wanted to clone Chess.com
By TOPSECRET in forum Jobs OfferedReplies: 1Last Post: 04-28-2010, 03:20 AM -
chess game
By michail in forum New To JavaReplies: 13Last Post: 01-12-2010, 07:24 AM -
Chess game
By michail in forum New To JavaReplies: 4Last Post: 12-23-2009, 06:51 PM -
New Chess-Like game
By jSarK0Y in forum Reviews / AdvertisingReplies: 3Last Post: 06-10-2009, 03:28 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks