So i am building a game with Swing. My main game is in a JPanel called Board while the the starting screen is a JPanel called StartScreen, i also made a JPanel called MainPanel with a CardLayout layout that i use to switch between the two panels.
MainPanel:
public class MainPanel extends JPanel {
JPanel startMenu, board;
public MainPanel(){
setLayout(new CardLayout());
startMenu = new StartMenu(this);
board = new Board();
add(startMenu, "startMenu");
add(board, "board");
}
}
My problem is that once i initialize board, the constructor of the board panel is crating and starting a thread that will run the game, so by the time i switch to the game, the game has already started running. Is there a way to start the game only when the i switch to the second panel.
Right now this is the constructor for Board:
public Board(){
addKeyListener(new KeyBoard());
snake = new Snake();
apple = new Apple();
thread = new Thread(Board.this);
thread.start();
}
These suggestions may seem simplistic, but simplistic is what you likely need:
e.g.,
Edit
You state:
And that is what I believe is one problem with CardLayout -- I know of no such listener for this event, and if you look at its API, you'll see no such listener. You will likely have to hard-code it into your swap method.