BEST代写-线上编程学术专家

Best代写-最专业靠谱代写IT | CS | 留学生作业 | 编程代写Java | Python |C/C++ | PHP | Matlab | Assignment Project Homework代写

Java代写|Assignment 6

Java代写|Assignment 6

这是一篇美国的游戏开发java代写

 

GOAL: Modify the Grab game to add some game features. In particular, you should add a “grab” command, issued by pressing “G” on the keyboard, which takes a coin which you are standing next to and facing (and does nothing if there is no such coin) and a “blast” command, issued by pressing “B” on the keyboard, which takes a block which you are standing next to and facing and removes the block from the board. Each player starts the game with 4 sticks of dynamite and uses one for each blast, so there should be a counter for each player making sure they don’t blast more than 4 blocks. In each case these moves need to be sent to the server to check for legality and then reported back to both clients (so the displays stay synchronized). You should also display the scores (number of coins collected) for each player.

You should also add sound effects which are played by the client whenever a coin is grabbed or a block is blasted. If you have the time, you could put in different sounds depending on whether you or your opponent grabbed a coin.

METHOD: The main thing you need to do here is understand how the demo game works and add in some new messages between the clients and the server. You’ll need to be able to tell the server that a player is trying to grab or blast something, and the server will need to be able to tell the players that a coin is gone, score has changed, or a block is gone. Of course, each of the server and client will need to be changed to correctly react to the new messages.

If you’re having trouble understanding the basic networking, remember that the NetDemo example (April19) contains the stripped-down client/server demo that we discussed in class.

Remember that to run the demos (either Grab or NetDemo), you need to start the server (with the command “java GameServer” or run in IDE), and then start two clients (“java Grab” or run in IDE). Currently, the server will stop when the clients are closed, so you need to run the server every time.

EXTRA: Anything to improve the game. Things that occurred to me include checking for game over when all coins are picked up, announcing a winner, allowing more than two players.

HAND-IN: You should submit the Java code for your program (*.java), any other files which you need, and a description of any special game features. Remember your code should say who wrote it and why.

bestdaixie

评论已关闭。