Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question is bottom pictures, top pics are supporting documents. Executive Summary > Requirements Design Constraints System Architecture View Please note: There is nothing required here

image text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribedimage text in transcribed

Question is bottom pictures, top pics are supporting documents.

Executive Summary > Requirements Design Constraints System Architecture View Please note: There is nothing required here for these projects, but this section serves as a reminder that describing the system and subsystem architecture present in the application, including physical components or tiers, may be required for other projects. A logical topology of the communication and storage aspects is also necessary to understand the overall architecture and should be provided. Domain Model 2. Operating Systems Architectures: 3. Storage Management: 4. Memory Management: 5. Distributed Systems and Networks: 6. Security: Southern New Hampshire University ICS 230 Project One UML Diagram Text Version Instructions This document contains underlined text and symbols used in code. If you use a screen reader, please adjust your screen reader verbosity settings. This UML Class Diagram shows seven rectangles (or classes), three classes at the top and four classes below the top class. ProgramDriver Class A class titled ProgramDriver is divided into three horizontal rows. SingletonTester Class A class titled SingletonTester is divided into three horizontal rows. A straight horizontal line with a closed arrow points from the "ProgramDriver" class to the "SingletonTester" class and is denoted as uses . Entity Class A class titled Entity is divided into three horizontal rows. Below the Entity class, there are four more classes, as follows: Gameservice Class A class titled GameService is divided into three horizontal rows. Southern New Hampshire University Game Class A class titled Game is divided into three horizontal rows. Team Class A class titled Team is divided into three horizontal rows. Player Class A class titled Player is divided into three horizontal rows. The following classes are connected by a solid line denoted with "0..." - GameService is connected to Game - Game is connected to Team - Team is connected to Player Southern New Hampshire University A line with an open arrow points from the following classes to the Entity class: - Game - Team - Player Competency In this project, you will demonstrate your mastery of the following competency: - Utilize software design templates and patterns to efficiently solve a problem Scenario You work for Creative Technology Solutions (CTS) as a Technology Consultant. CTS has recently taken on a new client, The Gaming Room. The Gaming Room wants to develop a web-based game that serves multiple platforms based on their current game, Draw It or Lose It, which is currently available in an Android app only. Draw It or Lose It is loosely similar to the 1980 s television game Win, Lose or Draw, where teams compete to guess what is being drawn. Rather than a player drawing images on an easel to help team members guess the puzzle (a phrase, title, or thing), the application will render images from a large library of stock drawings as clues. A game consists of four rounds of play lasting one minute each. Drawings are rendered at a steady rate and are fully complete at the 30-second mark. If the team does not guess the puzzle before time expires, the remaining teams have an opportunity to offer one guess each to solve the puzzle with a 15 -second time limit. The staff at The Gaming Room does not know how to set up the environment. To facilitate the development of the web-based version of the gaming app, they will need your help in streamlining the development. You have been asked to prepare a software design document and begin developing the game application, addressing their software requirements. Keep in mind that the hardware requirements will come later as a result of the software application decisions. Your technical manager will want to review your progress with this client. Specifically, the client has requested that the following software requirements be met for the game application: - A game will have the ability to have one or more teams involved. - Each team will have multiple players assigned to it. - Game and team names must be unique to allow users to check whether a name is in use when choosing a team name. - Only one instance of the game can exist in memory at any given time. This can be accomplished by creating unique identifiers for each instance of a game, team, or player. Directions You have been asked to prepare a software design document and begin developing the game application, addressing their software requirements. Part I. Software Design Document: Use the template provided in the Supporting Materials section below to create a software design document for your client. Keep in mind your audience and be sure to communicate clearly and concisely in the template. You have been asked to complete the following sections of the template: - Executive Summary: Write a summary to introduce the software design problem and present a solution. Be sure to provide the client with any critical information they must know in order to proceed with the process you are proposing. - Design Constraints: Identify the design constraints for developing the game application in a web-based distributed environment and explain the implications of the design constraints on application development. continue to build upon the code to meet your client's software requirements. - Domain Model: Review the UML diagram for the game application that represents the Domain Model within the software design template. Consider what information you have at this point regarding the game application and how it is represented in the model. Note: The Entity class is a base class introduced to hold common attributes and behaviors. Describe the UML class diagram and explain how the classes relate to each other. Be sure to identify any object-oriented programming principles that are demonstrated in the diagram and how they are used to fulfill the software requirements efficiently. Part II. Java Application: Use the code you submitted in the Project One Milestone to continue developing the game application in this project. Be sure to correct errors and incorporate feedback before submitting Project One. Please note: The starter code for this project was provided in the Project One Milestone. If you have not completed the Project One Milestone, you will not be penalized in this assignment, but you will have additional steps to complete to ensure you meet all the components of Project One. Review the class files provided and complete the following tasks to create a functional game application that meets your client's requirements. You will submit the completed game application code for review. Begin by reviewing the base Entity class. It contains the attributes 'id' and 'name', implying that all entities in the application will have an identifier and name. - Software Design Patterns: Review the GameService class. Notice the static variables holding the next identifier to be assigned for game id, team id, and player id. - Referring back to the Project One Milestone, be sure that you use the singleton pattern to adapt an ordinary class, so only one instance of the GameService class can exist in memory at any given time. This can be accomplished by creating unique identifiers for each instance of a game, team, or player. - Your client has requested that the game and team names be unique to allow users to check whether a name is in use when choosing a team name. Referring back to the Project One Milestone, be sure that you use the iterator pattern to complete the addGame() and getGame() methods. - Create a base class called Entity. The Entity class must hold the common attributes and behaviors (as shown in the UML diagram provided in the Supporting Materials section below). - Refactor the Game class to inherit from this new Entity class. - Complete the code for the Player and Team classes. Each class must derive from the Entity class, as demonstrated in the UML diagram. - Every team and player must have a unique name by searching for the supplied name prior to adding the new instance. Use the iterator pattern in the addTeam() and addPlayer() methods. - Functionality and Best Practices - Once you are finished coding, use the main() method provided in the ProgramDriver class to run and test the game application to ensure it is functioning properly. - Be sure your code demonstrates industry standard best practices to enhance the readability of your code, including appropriate naming conventions and in-line comments that describe the functionality. What to Submit To complete this project, you must submit the following: Part I. Software Design Template Word Document Complete the software design document using the template provided. The document must address each section outlined in the directions provided above. Part II. Java Application Submit the completed game application code. This will be the first prototype showcasing how The Gaming Room can offer their game, Draw It or Lose It, in a web-based format and serve multiple platforms. Be sure to download and save the project as CS 230 Project One Game App. Compress your Eclipse project directory into a single ZIP file to be submitted

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions