I attached all the needed files for the assignment, the assignment needs to be done only by working with the code provided in wheelGame zip file. There is a video of how the final product should look...

1 answer below »
I attached all the needed files for the assignment, the assignment needs to be done only by working with the code provided in wheelGame zip file. There is a video of how the final product should look like and an image which needs to be used. This assignment spec is a word file called "further prog" but the pdf file "assignment 1" was the first assignment in case there is a need to get any information from there. Once again, one of major requirements is to work with the code from first assignment which i provided in a zip file


Lavf58.10.100 Microsoft Word - FP_Assignment1_sem1_2019.docx Further Programming COSC 2391/2401 Semester 1, 2019 Casino Style Gaming Wheel Assignment Part 1: Console Implementation (25 marks) NOTE: The provided Javadoc and commented interface source code is your main specification, this document only serves as an overview. You should also regularly follow the Canvas assignment discussion board for assignment related clarifications and discussion. This assignment requires you to implement a game engine and console-based user interface (logging output only, no user interaction required) for a casino style gaming wheel that is loosely based on Roulette but with a simplified betting and scoring system. The rules are simple, each player places a bet with three different bet types, each with the odds described below. The house then spins the wheel and the result is the numbered and colored SLOT the ball lands in when it stops. After the wheel spins the win or loss amount is applied to the players point balance as follows. Bet Type Odds Description Example Red 1 to 1 Win on red slot/number Bet 100 win or lose 100 Black 1 to 1 Win on black slot/number As above Zeros WHEEL_SIZE / 2 – 1 to 1 for win, 1 to 1 for loss Win on green 0 or 00 slots Bet 100 win 1800 or lose 100* Table 1 – Bet types and odds to be implemented * The wheel size is 38 containing numbers 1-36 and the two green zeros, so the odds for a win when betting on zeros is 18 to 1. See the image in the Appendix that shows the order and coloring of slots on the wheel which must be implemented correctly to show the correct order for a ‘spin’. NOTE1: You do not need to model a real Casino “Roulette” game with its more complex rules, just the three simple bet types in the table above. NOTE2: Player points are not changed by placing a bet, they are only changed after the wheel has spun and the win/loss has been determined. HOW TO GET STARTED: For this assignment you are provided with a skeleton eclipse project (WheelGame.zip) that contains a number of interfaces that you must implement to provide the specified behaviour as well as a simple client which will help you get started. There are also two provided enum types in the package model.enumeration which need to be completed (in the case of BetType) and used appropriately. The provided Javadoc documentation (load index.html from WheelGame/docs/ into a browser to view), and commented interface source code (in the provided package model.interfaces) is your main specification, this document only serves as an overview. NOTE: You may copy and add to the provided console client code to facilitate more thorough testing. You must however ensure that the original unaltered code can still execute since we will use our own test client to check your code which is strictly based on the interfaces and provided enum classes (this is the point of having interfaces and a specification after all!) i.e. DO NOT CHANGE ANY OF THE INTERFACES ETC. The supplied project also contains code that will validate your interfaces for the main four classes you must write (see implementation specification below), and will warn you if you have failed to implement the required interfaces or have otherwise added any non-private methods that break the public interface contract. By default the validator lists all the expected methods as well as your implemented methods so you can use the output of this to find problems if you fail the validation. You do not need to provide any console input, all your test data can be hard coded as in the provided SimpleTestClient.java Implementation Specifications Your primary goal is to implement the provided GameEngine, Player, GameEngineCallback and Slot interfaces, in classes called GameEngineImpl, SimplePlayer, GameEngineCallbackImpl and SlotImpl. You must provide the behaviour specified by the javadoc comments in the various interfaces and the generated javadoc index.html. The imports in SimpleTestClient.java show you which packages these classes should be placed in. Additionally, you are required to implement the applyWinLoss() method overrides in the BetType enum in order to implement the win/loss behaviour described in Table 1. More specifically, you must provide appropriate constructors (these can be determined from SimpleTestClient.java and are also documented in the relevant interfaces) and method implementations (from the four interfaces) in order to ensure that your solution can be complied and tested without modifying the provided SimpleTestClient.java1 (although you can and should extend this class to thoroughly test your code). A sample output trace (OutputTrace.txt) is provided to help you write correct behaviour in the GameEngineImpl which in turn calls the GameEngineCallbackImpl class to perform the actual logging. You should follow the exact output format since it is clearly specified and this facilitates automated testing. Your client code (SimpleTestClient.java and any extended derivatives) should be separate from, and use, your GameEngineImpl implementation via the GameEngine interface. Furthermore, your client should NOT call methods on any of the other interfaces/classes since these are designed to be called directly from the GameEngine2 The main implementation classes GameEngineImpl and GameEngineCallbackImpl are described in more detail below. The SimplePlayer and SlotImpl are relatively straightforward data classes and should not need further explanation for their implementation (beyond the comments provided in the respective interfaces). GameEngineImpl class This is where the main game functionality is contained. All methods from the client are called through this class (see footnote). Methods in the supporting classes should only be called from GameEngineImpl. 1 A common mistake is to change the imports (sometimes accidentally!) Therefore, you MUST NOT change the imports and must place the class implementations in the expected package so that we can test your code with our own testing client. 2 This is because we will be testing your code with our own client by calling the specified GameEngine methods. We will not call methods on any other classes and therefore if your GameEngineImpl code expected other methods to be called from the client (rather than calling them itself) it won’t work! The main feature of this class that is likely different to previous code you have written is that the GameEngineImpl does not provide any output of its own (i.e. it SHOULD HAVE NO println() or log() statements other than for debugging and these should be commented or removed prior to submission). Instead it calls appropriate methods on the GameEngineCallback as it runs (see below) which is where all output is logged to the console for assignment part 1. This provides a good level of isolation and will allow you to use your GameEngineImpl unchanged in assignment 2 when we add a graphical AWT/Swing use interface! NOTE: Your GameEngineImpl must maintain a collection of Players AND a collection of GameEngineCallbacks. When a callback method should be called this must be done in a loop iterating through all callbacks. Note that each callback receives the same data so there is no need to distinguish them (i.e. they are all the same and not player specific). SimpleTestClient.java gives an example for three players with each bet type and shows it is trivial to add more (simply increase the array size by adding to the initialiser). GameEngineCallbackImpl class The main purpose of this class is to support the user interface (view) which in assignment part 1 consists of simple console/logging output. Therefore, all this class needs to do is log data to the console from the parameters passed to its methods. Apart from implementing the logging (we recommend String.format() here) the main thing is to make sure you call the right method at the right time! (see below). You should also as much as possible make use the of the overidden toString() methods you will implement in SimplePlayer and SlotImpl since this will simplify the logging! The only class that will call the GameEngineCallbackImpl methods is the GameEngineImpl class. For example as the spin(…) method is executing in a loop it will call the nextSlot(…) method on the GameEngineCallbackImpl (via the GameEngineCallback interface). Details of the exact flow and where GameEngineCallback methods should be called are provided in the GameEngineImpl source code and associated Javadoc. IMPORTANT: The main thing to watch out for (i.e. “gotcha”) is that this class should not manage any game state or implement any game-based functionality which instead belongs in the GameEngineImpl. The core test here is that we should be able to replace your GameEngineCallbackImpl with our own (which obviously knows nothing about your implementation) and your GameEngineImpl code should still work. This is a true test of encapsulation and programming using interfaces (i.e. to a specification) and is one of the main objectives of this assignment! IF YOU DO NOT FOLLOW THE NOTE ABOVE YOUR CODE WILL NOT EXECUTE PROPERLY WITH OUR TEST HARNESS AND YOU WILL LOSE MARKS! PLEASE DON’T GET CAUGHT OUT .. IF IN DOUBT ASK, WE ARE HAPPY TO HELP :) IMPLEMENTATION TIPS Before you start coding make sure you have thoroughly read this overview document and carefully inspected the supplied Java code and Javadoc documentation. It might take a bit of work but the more carefully you read before beginning coding the better prepared you will be! 1. Start by importing the supplied Java project WheelGame.zip. It will not compile yet but this is normal and to be expected. 2. The first step is to get the code to compile by writing a minimal implementation of the required classes. Most of the methods can be left blank at this stage, the idea is satisfy all of the dependencies in SimpleTestClient.java that are preventing successful compilation. Eclipse can help automate much of this with the right click Source ... context menu but it is a good idea to write at least a few
Answered Same DayJun 05, 2021

Answer To: I attached all the needed files for the assignment, the assignment needs to be done only by working...

Aditi answered on Jun 10 2021
144 Votes
project/build.xml

Builds, tests, and runs the project project.


project/manifest.mf
Manifest-Version: 1.0
X-COMMENT: Main-Class will be added automatically by build
project/nbproject/build-impl.xml








































































































































































































Must set src.dir
Must set test.src.dir
Must set build.dir
Must set dist.dir
Must set build.classes.dir
Must set dist.javadoc.dir
Must set build.test.classes.dir
Must set build.test.results.dir
Must set build.classes.excludes
Must set dist.jar




































































































Must set javac.includes
































































































































No tests executed.























































































































































































































































Must set JVM to use for profiling in profiler.info.jvm
Must set profiler agent JVM arguments in profiler.info.jvmargs.agent





























































































































































































































Must select some files in the IDE or set javac.includes













































To run this application from the command line without Ant, try:

java -jar "${dist.jar.resolved}"










































Must select one file in the IDE or set run.class



Must select one file in the IDE or set run.class






















Must select one file in the IDE or set debug.class



...
SOLUTION.PDF

Answer To This Question Is Available To Download

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here