[Solved] COMS 227 Homework 2: Anyone for Tennis?

$25

File Name: COMS_227_Homework_2:_Anyone_for_Tennis?.zip
File Size: 367.38 KB

SKU: [Solved] COMS 227 Homework 2: Anyone for Tennis? Category: Tag:
5/5 - (1 vote)

OverviewThe goals of this assignment are to give you more experience writing classes from specifications and to provide you with practive working with conditionals.For this assignment you will implement one class, called TennisMatch, that models the serving, endchanging, and scoring of a best-of-three or best-of-five, advantage sets tennis match. Your class will keep track of scores, server, ends, and faults, games, sets, and match.Additionally, provided for you is a TennisPlayer class. Using it reduces some of the complexity of TennisMatch. You should usebut should not modifyTennisPlayer.SpecificationThe specification for this assignment includes this pdf, the TennisMatch javadocs, the official rules of Tennis (the 2019 Friend of the Court, linked on Piazza) along with any official clarifications posted on Piazza.Wheres the main() method??There isnt one! Like most Java classes, this isnt a complete program and you cant run it by itself. Its just a single class, that is, the definition for a type of object that might be part of a larger system. To try out your class, you can write a test class with a main method such the example provided (on Piazza) inTestTennisMatch.java.There will also be a SpecChecker (not ready yet) that will perform a lot of functional tests, but when you are developing and debugging your code at first youll always want to have some simple test cases of your own as in the main method above.Note that neither the SpecChecker nor the provided test program nor the combination of the pair provide complete, comprehensive test coverage of your TennisMatch implementation. You will have to write your own tests.Sample usageA good way to think about the specification is to try to write some simple test cases and think about what behavior you expect to see. The included TestTennisMatch class implements a main method which tests muchbut not allof the functionality. It plays a complete first set, then modifies the score to jump to the last set and finish the match.There is also a SpecChecker (see below) that will perform a lot of functional tests, but when you are developing and debugging your code at first youll always want to have some simple test cases of your own as in the main method in TestTennisMatch.java.Suggestions for getting startedSmart developers dont try to write all the code and then try to find dozens of errors all at once; they work incrementally and test every new feature as its written. Here is a rough guide for how an experienced coder might go about creating a class such as this one: Create a new, empty project and add a package called hw2. Create the TennisMatch class in the hw2 package and put in stubs for all the required methods and constructors. For methods that are required to return a value, just put in a dummy return statement that returns zero or false. Download the specchecker, import it into your project as you did in labs 1 and 2, and run it. There will be lots of error messages appearing in the console output, since you havent actually implemented the methods yet. Always start reading from the top. All you really want to check at this point is whether you have a missing or extra public method, if the method declarations are incorrect, or if something is really wrong like the class having the incorrect name or package. Any such errors will appear first in the output and will usually say Class does not conform to specification. Look at each method. Mentally classify it as either an accessor (returns some information without modifying the object) or a mutator (modifies the object, usually returning void). The accessors will give you a lot of hints about what instance variables you need. Before you write code for a method, always write a simple usage example or test case, similar to the main method in the provided test code. This will make sure you understand what the code is really supposed to do, and it will give later you a way to check whether you did it correctly. Of course, if you are really not sure what a method is supposed to do, bring up your question for discussion on Piazza! It would probably be best to start with the accessors, as theyll help you ascertain what instances variables to expect. The mutators should also be fairly straightforward and provide insights into the necessary instance variables. The bulk of the work occurs in increment*Points, where * is one of Game, Set, and Match. These must not only increment the particular point, but also control other aspects of game start, like switching server, switching ends, and ending the game. Furthermore, incrementGamePoints must call incrementSetPoints under certain conditions, and that in turn calls incrementMatchPoints under other conditions.Friend of the CourtThe rules of tennis that we will be implementing in this simulation are restricted to only a few sections of the Friend of the Court. These sections should be considered part of the specification of this assignment: Section 5a for scoring of games Section 6a for scoring of sets Section 7 for scoring of matches Section 10 for changing of ends Section 14 for order of service Section 23 for description of the letAdditionally, it may be benefitial to read other sections of the Friend of the Court for context and terminology; however, we will not be implementing rules described outside of the above sections. For instance, we will not be implementing tie-break sets, described in Section 6b and elsewhere.Additional notes No loops are needednor likely helpfulfor this assignment. You will, however, need many conditional expressions. Do not add any additional public methods; you may add your own methods if you feel compelled to do so, but they must be declared private. Do not create any additional Java classes.The SpecCheckerYou can find the SpecChecker online; see the Piazza Homework post for the link. Import and run the SpecChecker just as you practiced in Labs 1 and 2. It will run a number of functional tests and then bring up a dialog offering to create a zip file to submit. Remember that error messages will appear in the console output. There are many test cases so there may be an overwhelming number of error messages. Always start reading the errors at the top and make incremental corrections in the code to fix them. When you are happy with your results, click Yes at the dialog to create the zip file. See the document SpecChecker HOWTO, which can be found in the Piazza pinned messagesMore about gradingThis is a regular assignment so we are going to read your code. Your score will be based partly (about a third) on the speccheckers functional tests and partly on the graders assessment of the quality of your code. This means you can get partial credit even if you have errors, and it also means that even if you pass all the specchecker tests you can still lose points. Are you doing things in a simple and direct way that makes sense? Are you defining redundant instance variables? Some specific criteria that are important for this assignment are: Use instance variables only for the permanent state of the object, use local variables for temporary calculations within methods. You will lose points for having lots of unnecessary instance variables All instance variables should be private. Accessor methods should not modify instance variables.See the Style and documentation section below for additional guidelines.Style and documentationRoughly 15% of the points will be for documentation and code style. Here are some general requirements and guidelines: Each class, method, constructor and instance variable, whether public or private, must have a meaningful and complete Javadoc comment. Class javadoc must include the @author tag, and method javadoc must include @param and @return tags as appropriate. Try to state what each method does in your own words, but there is no rule against copying and pasting the descriptions from this document or from the posted javadoc. Run the javadoc tool and see what your documentation looks like! You do not have to turn in the generated html, but at least it provides some satisfaction 🙂 All variable names must be meaningful (i.e., named for the value they store). Your code should not be producing console output. You may add println statements when debugging, but you need to remove them before submitting the code. Internal (//-style) comments are normally used inside of method bodies to explain how something works, while the Javadoc comments explain what a method does. (A good rule of thumb is: if you had to think for a few minutes to figure out how something works, you should probably include a comment explaining how it works.) Internal comments always precede the code they describe and are indented to the same level. In a simple homework like this one, as long as your code is straightforward and you use meaningful variable names, your code will probably not need many internal comments. Use a consistent style for indentation and formatting. Note that you can set up Eclipse with the formatting style you prefer and then use Ctrl-Shift-F to format your code. To play with the formatting preferences, go to WindowPreferencesJavaCode StyleFormatter and click the New button to create your own profile for formatting.If you have questionsFor questions, please see the Piazza Q & A pages and click on the folder assignment2. If you dont find your question answered, then create a new post with your question. Try to state the question or topic clearly in the title of your post, and attach the tag assignment2. But remember, do not post any source code for the classes that are to be turned in. It is fine to post source code for general Java examples that are not being turned in. (In the Piazza editor, use the button labeled pre to have Java code formatted the way you typed it.)If you have a question that absolutely cannot be asked without showing part of your source code, make the post private so that only the instructors and TAs can see it. Be sure you have stated a specific question; vague requests of the form read all my code and tell me whats wrong with it will generally be ignored.Of course, the instructors and TAs are always available to help you. See the Office Hours section of the syllabus to find a time that is convenient for you. We do our best to answer every question carefully, short of actually writing your code for you, but it would be unfair for the staff to fully review your assignment in detail before it is turned in.Any posts from the instructors on Piazza that are labeled Official Clarification are considered to be part of the spec, and you may lose points if you ignore them. Such posts will always be placed in the Announcements section of the course page in addition to the Q & A page. (We promise that no official clarifications will be posted within 24 hours of the due date.)What to turn inPlease submit, on Canvas, the zip file that is created by the SpecChecker. The file, SUBMIT THIS hw2.zip, will be located in the directory you selected when you ran the SpecChecker. It should contain one directory, hw2, which in turn contains one file, TennisMatch.java. Please LOOK at the file you upload and make sure it is the right one!Submit the zip file to Canvas using the Assignment 2 submission link and verify that your submission was successful. If you are not sure how to do this, see the document Assignment Submission HOWTO which can be found in the Piazza pinned messages.We recommend that you submit the zip file as created by the specchecker. If necessary for some reason, you can create a zip file yourself. The zip file must contain the directory hw2, which in turn should contain the file TennisMatch.java. You can accomplish this by zipping up the src directory of your project. The file must be a zip file, so be sure you are using the Windows or Mac zip utility, and NOT a third-party installation of WinRAR, 7-zip, or Winzip

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] COMS 227 Homework 2: Anyone for Tennis?
$25