Starting from:
$35

$29

CS 1520 Programming Languages Assignment 2 Solved


Goal: To get more experience with Java graphical components and event-handling, including MouseEvents, and to utilize Java Threads to allow motion in a graphical program.
Details: 
Your program should have the same functionality as the one demonstrated in lecture.  This demonstration should be the primary way that you examine and understand the program specifications.  If you miss the demonstration in lecture, you must see either me or your TA for a demonstration during office hours.  Some specific requirements of the program are listed below, with some snapshots of the execution to show you what you need to do.
Idea:
Your program is to be a Java application that is window-based.  This means that your main class must extend JFrame.   Your program will implement a primitive version of the video game "Breakout", which is described in more detail below.
The Game:
    • The player gets a paddle that can move horizontally across the bottom of the screen.  When the game is started, a ball "falls" down from a random starting point toward the bottom of the window.  The ball should be moving at an angle (not straight down).  See Figure 1.




    • The player's job is to move the paddle so that the ball bounces off of it and back upward toward 6 rows of disks at the top of the screen.  Each time the ball hits a disk, the disk is destroyed, and the ball bounces back off of it (usually back down toward the paddle – however, if the ball goes "above" the disks it can bounce around in that area, destroying many disks without the user even having to hit it – this is often a goal of a good Breakout player).  See Figure 2 below.











    • If the player destroys all of the disks on the screen he/she has won the game.  When this occurs, indicate the victory in the right label on the bottom of the screen.
    • If the player "misses" the ball, it will fall through the bottom of the screen and a "new" ball will randomly appear for the player to hit.  The player gets 3 balls per game – if he/she misses all of them he/she has lost the game.  When a player loses, indicate defeat in the right label on the bottom of the screen.
    • When an initial disk is destroyed in the second "color" of disks, the speed of the ball should increase by a significant amount.  This speed increase should occur again when a disk in the third "color" is destroyed. 
    • At any time during a game, the user can click on either the New Game or End Game buttons.  New Game should end the current game and start a new one.  End Game should just stop the game (and its associated Threads and also remove the ball from the screen) and indicate that the game is over. 
Implementation Details and Hints:
    • Some things that you will need to do in this program will require some thought.  Below are some details of things you will need to do and some hints at doing them:
    • Move the paddle across the screen: the left mouse button will move the paddle to the left as long as it is held down, and similar for the right mouse button.  However, the paddle should not be allowed to move past either edge of the window.  The movement must be achieved by starting a "motion" thread for the paddle on mousePressed and stopping that thread (gracefully) on mouseReleased.  The reason for this is that you want the paddle to move at a consistent rate relative to the ball's movement.  This can best be accomplished via Threads.
    • Move the ball:  for this you should initially have a "deltaX" and a "deltaY" that get added to the ball's location coordinates each time it moves.  To keep the games interesting, these can be initialized in a somewhat random fashion each game.  A thread will alternate sleeping and moving the ball, which translates to motion on the screen.  When the speed is "increased", the deltaX and deltaY values are increased, which makes the ball appear to move faster. If the ball moves past the bottom of the screen, that ball (and its thread) should be destroyed.  If the user has any remaining balls, a new one should be created and started moving to continue the game.
    • Ball hitting the walls, the paddle and the disks: each time you move the ball, you can test to see if it is "hitting" another object using the intersects() method as defined for all Java Shapes.  You can test to see if the ball hits the side walls or top wall by testing its coordinates against the known dimensions of the window.  When the ball hits something, either the deltaX or deltaY value should be reversed, depending upon where the ball hits (ex: if it is going down and hits the paddle, the deltaY should be reversed; if it is going up or down and hits the side wall, the deltaX should be reversed).  Additionally, if the ball has hit a disk, that disk should be removed from the array to indicate that it is no longer there (set its location to null).  
    • Sound Effects: When the ball hits the paddle, a disk or any wall, an appropriate sound must be made.  Sounds can easily be incorporated into Java programs using predefined classes and methods.  For more details on using Java sounds, see p. 553 of the Learning Java text and the online API. 
    • Drawing the graphics: You must have a JPanel subclass that handles the graphical display of the game.  Within this class the paintComponent() method will do the actual drawing.  This will simply draw the ball, paddle and disks each time it is called.  Be careful with null pointers – it is best to test for null before trying to draw an object.  It is also a good idea to have a separate thread in your program whose sole job is to refresh the screen (repaint()) every so often.  With this you will NOT have repaints from any other threads. You will find if you have repaint()s in your other threads that the graphics are choppy and unpredictable, since the repaints are occurring in different places at different rates.
    • Starting and stopping threads: recall that we do NOT want to use the deprecated stop() method, so you should stop threads using some Boolean condition to terminate the loop in the run() method.  Make sure (especially when you do a New Game) that you terminate any running threads BEFORE starting new ones.  Otherwise you will have extra, unwanted threads running and it will cause irregular results (and waste CPU time).  In my version of the game, I have at most 3 threads running at a time: one for the paddle motion, one for the ball motion and one to refresh the screen.  Note that before a game is started and after a game completes NONE of these threads should be running.
Other Important Notes:
    • Test your program thoroughly before handing it in.  Make sure special situations are handled correctly and consistently.   There are a lot of situations that can cause the dreaded "Null Pointer Exception" (as explained above in paintComponent) if you are not careful.
    • Since this program is somewhat complex, I strongly advise you to work on it one part at a time.  For example, you may want to get the paddle motion to work, then the ball motion, then the disk interaction.  If you find that it is not working completely when it is time to turn it in, be sure to show what you have working so that you can get partial credit.
Extra Credit:
    • Since this program is challenging but also potentially fun, I will allow for up to 15 extra credit points on it.  There are MANY ways to improve this program, some of which are listed below.
    • Make the ball motion more interesting by having the "bounce" from the paddle differ depending upon where on the paddle it hits.  In the arcade game, a "bounce" from the edge of the paddle causes the ball to move at a harsher angle, making it harder for the user to hit it the next time.
    • As rows of disks are destroyed, make the game more challenging by reducing the paddle size.
    • Add additional "levels" to the game.  Each time a user completes a level he/she goes on to the next level.  These can be more challenging by having more disks or a faster speed or both.
    • Allow the user to "pause" the game by clicking on a button.  This will temporarily stop the game where it is and will resume when the user clicks on the button again.
    • In addition to your application program, write another version that is an applet and submit that together with the .html file necessary to run it.
    • If you have any other extra credit ideas, be sure to ask me about them before putting in the effort.  Also realize that 15 points is significant but still not an outrageous amount of credit.  Don't spend a disproportionate amount of time on extra credit!
The README:
    • Since all games are likely to have some variation in them, you must prepare a README.TXT file that precisely describes how to play your game.   Be sure to include in your README.TXT any extra features that you have added, so that the user (i.e. TA) can take advantage of them. 
Submission:
    • As with all of your assignments, be sure that your program will run for the TA directly from the files that you submit onto the submission site.  Don't forget to submit ALL necessary files (including the README.TXT file)
    • Be sure to COMMENT your code and don't forget your Assignment Information Sheet.

More products