Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a little game that will first show the player a simple login screen where they can enter their name (I will need it later to store their game state info), let them pick a difficulty level etc, and will only show the main game screen once the player has clicked the play button. I'd also like to allow the player to navigate to a (hopefully for them rather large) trophy collection, likewise in what will appear to them to be a new screen.

So far I have a main game window with a grid layout and a game in it that works (Yay for me!). Now I want to add the above functionality.

How do I go about doing this? I don't think I want to go the multiple JFrame route as I only want one icon visible in the taskbar at a time (or would setting their visibility to false effect the icon too?) Do I instead make and destroy layouts or panels or something like that?

What are my options? How can I control what content is being displayed? Especially given my newbie skills?

share|improve this question

2 Answers

up vote 9 down vote accepted

A simple modal dialog such as a JDialog should work well here. The main GUI which will likely be a JFrame can be invisible when the dialog is called, and then set to visible (assuming that the log-on was successful) once the dialog completes. If the dialog is modal, you'll know exactly when the user has closed the dialog as the code will continue right after the line where you call setVisible(true) on the dialog. Note that the GUI held by a JDialog can be every bit as complex and rich as that held by a JFrame.

Another option is to use one GUI/JFrame but swap views (JPanels) in the main GUI via a CardLayout. This could work quite well and is easy to implement. Check out the CardLayout tutorial for more.

Oh, and welcome to stackoverflow.com!

share|improve this answer
+1, Excellent suggestions. – mre Sep 6 '11 at 16:30

instead of adding the game directly to JFrame, you can add your content to JPanel(let's call it GamePanel) and add this JPanel to JFrame. Do the same thing for Login screen: add all content to JPanel(LoginPanel) and add it to JFrame. When your game will start, you should do the following:
1) Add LoginPanel to JFrame
2) Get user input and load it's details
3) Add GamePanel and destroy LoginPanel(since it will be quite fast to re-create new one, so you don't need to keep it memory)

Hope this helps,
Serhiy.

share|improve this answer
Keeping everything in a JFrame is easier than creating a complicated JDialog. Plus you will be able to reuse the panel-changing code when you switch between Trophies/Game/Menu. – Garrett Hall Sep 6 '11 at 16:41
Well maybe in some situations JDialog can also be handy.. Everything depends on implementation ;) – Serhiy Sep 6 '11 at 16:45
True, but I think he wants a fairly complex login screen - I think doing it in the JFrame is cleaner. – Garrett Hall Sep 6 '11 at 16:49
2  
"Keeping everything in a JFrame is easier than creating a complicated JDialog" What is complicated about a JDialog? And a CardLayout as suggested in the other answer is a better (IMO) way to go for swapping components within a single container. CPU cycles might be cheap, but so is RAM. – Andrew Thompson Sep 6 '11 at 16:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.