Java代写,java作业代写:100%原创代码
当前位置:以往案例 > >案例cs:java案例实现一个俄罗斯方块final Project Tetris 游戏案例 game
2017-07-22

演示gif:
1545283301121607.gif

Institute of Technology, University of Washington Tacoma TCSS305 – Programming Practicum


You will submit your code for this project in 2 separate milestone phases.




This project is a 2 part project designed to test your overall understanding of the concepts covered in the course, including object-oriented design, graphical user interfaces, events, and animation.


Game Description:
For this project, you will write a set of classes to play a graphical game of Tetris. Tetris is a game in which the player moves and rotates dropping pieces so that they form solid lines. Completely filled lines are cleared, giving points to the player. The Wikipedia page for Tetris is a very good source of information about the various incarnations of the game. There are many free versions of Tetris online that you could look at such as http://www.tetrislive.com/


Game Pieces:
There are seven pieces in standard Tetris, typically referred to by letter (picture from Wikipedia):

image.png

Our abstraction will be that a MovableTetrisPiece object represents a single Tetris piece with position and rotation state.


A piece can be rotated 90° clockwise. Enough rotations get you back to the original orientation. Each Tetris piece has one (the O), or four (the L, J, T, I, S and Z) distinct rotational states as shown on the next page. At the top of the diagram notice the increasing series of numbers 0 – 3 which represent the various rotational states.

New pieces are initialized to the 0 state. Clockwise rotations increment the rotational state.



Rotation: 0 1 2 3

image.png

Figure 2



A piece is represented by the coordinates of its blocks, which we can refer to as the “body” of the piece. Each piece has its own coordinate system with its (0, 0) origin in the lower left of the rectangle that encloses the body as shown in figure 2. The coordinates of blocks in the body are relative to the origin of the piece. So, the four blocks of the O piece are:

image.png


(1,1) – the lower left-hand block (1,2) – the upper left-hand block (2,1) – the lower right-hand block (2,2) – the upper right-hand block


Here is another ple: Rotation 2 of the S piece, with the axes drawn explicitly:

image.png

[(0,0), (1,0), (1,1), (2,1)]


Note that not all pieces will actually have a block at (0, 0). For ple, the next rotation of the S has the following body:

image.png


[(0,1), (0,2), (1,0), (1,1)]



Provided Code (Tetris Model):
The provided Tetris model is a set of classes to represent all game pieces and the game board.


If you choose to make anychanges and/or additions to these classes, then the following requirements apply:


1) Add a non-javadoc (implementation) comment to the code wherever you make changes. These comments must explain the purpose of everychange that you make to the provided code.


2) Provide complete javadoc comments for everynew interface, class, field, constant, or method which you add to the provided code.


3) Additionally, LIST and briefly describe everychange and/or addition you have made to the provided code in your executive summary. (Provide a numbered list of changes in your summary.)


NOTE: You will NOT need to make any changes to the model code to implement a fully functional Tetris game. You should certainly NOT need to make any changes for part A. However, for some types of part B extra credit it is possible that you may need to make changes and/or additions to the model code.


NOTE: The piece classes and the Board class serve a specific function. The abstractions they define are the geometry of the game. You should NOT add code to these classes which represents some other abstraction, such as the information tracked by the current game for scoring purposes (the score, the level, the total number of lines cleared in a game, etc.). Information needed by the game which is not related to the geometry of the game should be stored and manipulated elsewhere. The model code (pieces and Board) should not contain ANY code to implement GUI features, such as colors, graphics, or sound.


NOTE: No new classes should be added to the model package or to the ‘default’ package. All of your GUI classes should be in the view package, or in other named packages. DO NOT change ‘private’ or ‘protected’ access modifiers of fields or methods in the model code to ‘public’ to make them visible in other packages. The model code already exposes an adequate API upon which you can build a graphical front end.


Tetris Pieces:


A piece keeps track of its position on the Board and rotational state. A piece has methods to move in various directions (left, right, down, rotate).


A piece has a local coordinate system, as described above; rotating the piece means changing the locations of its 4 blocks in the local coordinate system, and moving a piece means changing its position on the board in the board’s coordinate system. A piece does not make any assumptions about the board it will be placed on. In particular, it does not assume any particular board position is valid or invalid, because it is the board’s job to determine whether a piece is in a legal position. A piece is printable via a toString method, which generates a 2D text drawing which clearly depicts the rotational state of the piece. This is useful for testing.



Tetris Board:


The project includes a class called Board which is a representation of a Tetris game board. The board is essentially a grid of squares that may be filled with previously dropped pieces (and remnants thereof). The standard Tetris board is 10 squares wide and 20 squares tall, but can be initialized with arbitrary dimensions.


The Board class contains the following data and functionality:


· A representation of all filled squares.

· A current piece-in-progress, which conceptually starts above the middle of the board; this means that the piece does not occupy any of the squares on the board when in its starting position. (The piece should not be visible in the GUI when it is first instantiated.)

· Methods to move the current piece left, right, and down and to rotate the current piece while doing collision detection – that is, if the method to move the current piece left is called, and the current piece cannot move left (because that would cause it to collide with a previously frozen piece, or move off the board), the current piece does not move. Rotations near walls will cause the piece to offset enough to allow the rotation when necessary (wall kicks).

· The ability to provide a specific sequence of pieces to use – by default the Board uses randomly generated pieces (see below).

· The down() method updates the game state by one step. Calling down() causes the current piece-in- progress to move down by one row, and may cause additional changes to the board as follows:

o when the piece-in-progress is resting on top of existing filled squares or reaches the bottom row of the Board and attempts to move down one more time, it freezes and its blocks become part of the board's grid of filled squares

o when the piece-in-progress freezes, if any lines are completely filled, they are cleared from the board; all squares above a filled line drop downward by one line (note that up to 4 lines may be cleared at a time)

o when the piece-in-progress freezes, a new piece-in-progress is chosen either randomly or from a predetermined sequence of pieces.


There are multiple reasons for the ability to specify whether the board uses random pieces or a specific piece sequence. The ability to specify a sequence of pieces is helpful for testing; it allows you to drop pieces in a specific order, onto the board to see that they give correct board layouts as they drop. The ability to specify a sequence of pieces can also be useful for gameplay features because it gives you the ability to “replay” games, or to always use the same sequence of pieces (as in tournament play). Clearly, the ability to randomly generate pieces is important in standard gameplay, as it makes the game unpredictable for players.


The game is advanced externally, by using a timer to call the down() method.


The Board class fires PropertyChangeEvents, so that the GUI you write will be notified of changes that occur on the game board. The Board notifies of changes whenever a piece moves, rotates, or lines are cleared (and does not notify when a piece attempts to move left or right, or rotate, but does not change position because of bounds checking).



Milestone A (Initial Graphical User Interface):
The first version of your code is an initial graphical user interface (GUI) for the Tetris game. The GUI must contain the following:


· a graphical representation of a 10 x 20 Tetris game board, showing its filled squares and its piece-in- progress

· a graphical display of the "next" piece that will come after the current piece-in-progress. This piece preview must show the "next" piece in the same rotational state in which it will appear on the board.

· the ability for the user to move the piece in progress left, right, rotate it clockwise, move it down 1 line, and instantly drop the piece downward to the bottom using keyboard keys. You must encode the following default key controls:

Move Left       left arrow and 'a' (both must work) Move Right     right arrow and 'd' (both must work) Rotate up arrow and 'w' (both must work) Move Down    down arrow and 's' (both must work) Drop space

· an animation timer that makes the game board update once per second, causing the current piece to fall

· some message or indication that the game is over, displayed when the game ends (that is, when frozen pieces extend above the top of the board)

· the GUI MUST implement PropertyChangeListener to complete the pattern for communication between the GUI and the board. Neither your Timer nor your KeyListener should call repaint(). Instead, they should call methods of the Board class, which will, in turn, notify the GUI after updating the model.


Your game should not lock up (due to an infinite loop or memory overflow), produce console output, or throw exceptions (check the console window in Eclipse).


10% extra credit can be earned in this phase for giving the GUI the ability to resize gracefully, within reasonable limits (you can, if you choose, use WindowEvents to enforce these limits; however, that is not necessary for the extra credit). Providing a selection of at least 3 fixed sizes for the user to choose from can earn up to 5% extra credit. To earn the full 10% extra credit the GUI must be resizable by dragging a corner. (Resizing gracefully, in part, means that squares in the graphical representation of the Tetris game board remain square as the GUI is resized. The squares should not become elongated, either horizontally or vertically, into rectangles. Resizing gracefully also means that the squares in the graphical representation of the Tetris game board should resize. The squares should not remain at a fixed size if the GUI is resized.)


NOTE: If you choose not to pursue the resize extra credit, then select a fixed size for your GUI that cannot be changed.


NOTE: There is a section in the executive summary template for you to discuss any extra credit that you did for this project. If you did not implement any extra credit then just enter 'none' in that section of the summary.



Milestone B (Final GUI and Extra Features):
The second version is the final, polished version of your Tetris game. You will have an opportunity to demonstrate your code in class, if you choose, before it is due, which is a good way to receive feedback.


Your final submission should have the following new features:

· an option to pause the game, which suspends the timer and prevents the user from moving/rotating the current piece. The ability to pause and to un-pause the game must be accessible through key command(s) which do not require opening a menu. Your GUI must indicate to the user how to pause/unpause the game.

· the ability to play multiple games; that is:

o The user can end a game (The GUI continues to display the state of the game at the point it was ended. The GUI displays some indication that the game is over. The timer does not continue to animate the current piece and keyboard commands do not continue to control the current piece.)

o The user can start a new game when no game is in progress (The GUI does not allow the user to start a new game while another game is in progress. The user must end the current game before starting a new game.) The user must use this feature to start all games including the first game.

· a difficulty level that causes the game to animate faster at higher game levels. Your game should start at level 1 and increment the level for each cumulative five lines cleared. (0-4 lines cleared = level 1; 5-9 lines cleared = level 2; 10-14 lines cleared = level 3; etc.)

· a score that is updated as the game is played. You may implement any scoring algorithm you choose. Optionally you might choose to implement a standard Tetris scoring algorithm. Standard Tetris scoring algorithms are described online at https://en.wikipedia.org/wiki/Tetris and in other places online.

· the GUI must in some way communicate your scoring algorithm to the user. This could be in a dialog at the start of the game, in a 'help' menu, or in some other fashion. The method of presenting this information to the user is up to you.

· a display of the current score, current total number of lines cleared during the game, and current level.

· the game must also display an indication to the user of when the next level will be reached. (The number of lines still to clear to reach the next level.)



In addition, the Part B game MUST have at least one special feature. Implementation of more than one special feature can earn up to 10% extra credit, depending on the impressiveness of the extra feature(s). NOTE: Your first special feature is NOT extra credit, it is REQUIRED. The special feature(s) can be anything you want. Your executive summary MUST include a numbered list of the special feature(s) you have implemented. Below are some ples of special features. I am most interested in UNIQUE features which you think up yourself. I will award extra credit based on the difficulty, quality, and creativeness of your extra features. Extra credit will NOT be awarded in milestone B for the milestone A extra credit feature.


Some ples of typical special features

Max Extra Credit

sound effects and/or background music

5

multiplayer option (competitive or collaborative)

(two sets of keys to control pieces on two boards simultaneously, for ple)

4

ability to save/load a game

4

ability to show an instant replay of a game

3

ability to save high scores

2

for also submitting an executable jar version of your game in your project (place the jar file in your project and commit it to SVN, then mention it in your summary)

1

ability for the user to select a specific difficulty level

1

'ghost' piece or 'projection' piece

1

a 'hold' piece

1

gameplay variants of various kinds

credit varies

ability for the user to customize aspects of the GUI

credit varies

visual enhancements to the GUI

credit varies


Submission and Grading:


Create your Eclipse project by downloading the tetris-project.zip file from the Tetris Part A page on Canvas, importing it into your workspace, and using “Refactor” to change “username” to your UWNetID. Remember to make this change before you first commit the project to Subversion.


You must check your Eclipse project into Subversion (following the instructions from Lecture 1 and project 0), including all configuration files that were supplied with it (even if you have not changed them from the distributed ones). If you use any supplementary files (images, music, sound effects), those must be committed as part of your Eclipse project. If you have any questions about this, ask the instructor as soon as possible. When you have committed the revision of your code you wish to submit, make a note of its Subversion revision number. To get the revision number, after you commit your code, perform an update on the top level of your project; the revision number will then be displayed next to the project name. For each milestone, you should keep working on the same Eclipse project – do not create multiple Tetris projects.


After checking your project into Subversion, for each part of the project, you must submit (on Canvas) an executive summary containing the Subversion revision number of your submission, an “project overview” (1 paragraph, up to about 250 words) explaining what you understand to be the purpose and scope of the project, and a “technical impression” section (1-2 paragraphs, about 200-500 words) describing your experiences while carrying out the project (especially any difficulties you had using the tools). The project overview shows how well you understand the project; the technical impression section helps to determine what parts of the project need clarification, improvement, etc. for the future, and also identifies areas that potentially need more coverage in class. Your summary must also include a list of all changes / additions you made to the provided starter code and a list of any extra credit features implemented in the project. On the Canvas submission page for this project there is a new version of the executive summary template which includes these two new required sections.



The filename for your executive summary must be “username-project6-a.txt” for part A and “username-project6-b.txt” for part B, where username is your UWNetID. for ple, the filename for the instructor’s submission of Part A would be “acfowler-project6-a.txt”. An executive summary template, which you must use, is available on Canvas. In particular, your executive summary must have a line “Subversion Revision Number: #”, with no leading spaces, where “#” is the Subversion revision number you made a note of above (with no parentheses or other symbols). Executive summaries without a line following this exact format will be penalized. Executive summaries will only be accepted in plain text format – other file formats (RTF, Microsoft Word, Adobe PDF, Apple Pages) are not acceptable.


Part of your project’s score will come from its "external correctness." External correctness will be evaluated by running your GUI and playing the

在线提交订单