Scenario You work for a small company that creates text-based games. You have been asked to pitch an idea to your team for a text-based adventure game with a theme and environment of your choice. Your game must include different rooms, items, and a villain. The basic gameplay will require the player to move between different rooms to gather all of the items. A player wins the game by collecting all the items before encountering the villain. The player will have two options for commands in the game: moving to a different room, and getting an item from the room they are in. Movement between rooms happens in four simple directions: North, South, East, and West.   Directions In this project, you will break the problem down into a set of requirements for your game program. Then you will design your game by creating a storyboard and pseudocode or flowcharts. Remember, in Project One, you are only designing the game. You will actually develop the code for your game in Project Two. Review the Sample Dragon Text Game Storyboard in the Supporting Materials section to see a sample storyboard for a dragon-themed game. You will begin by creating a storyboard to plan out your game. Using one of the templates located in the What to Submit section, write a short paragraph that describes the theme of your game by answering all of the following questions: What is your theme? What is the basic storyline? What rooms will you have? (Note: You need a minimum of eight.) What items will you have? (Note: You need a minimum of six.) Who is your villain? Next, you will complete your storyboard by designing a map that organizes the required elements of the game (rooms, items, and villain). Using the blank map in your template, organize the different rooms and the items in each room. The following requirements must be met: There must be a minimum of eight rooms. Each room must contain one item, with the exception of the “start” room and the room containing the villain. The “start” room is where players will begin their moves and should not contain any items. The room containing the villain should not contain any items. Remember, to win the game, the player must move through the rooms, collect all the items, and avoid the room with the villain until all of the items have been collected. Make sure that it is possible for the player to win the game. For example, the room with the villain should not block a room containing an item. Carefully review the Sample Dragon Text Game Walkthrough video and Sample Dragon Text Game Output reading, located in the Supporting Materials section. These will give you an understanding of how the text-based game should work. As you read, consider the following questions: What are the different steps needed in this program? How might you outline them in a way that a computer can understand? What information would you need from the player at each point (inputs)? What information would you output to the player at each point? When might it be a good idea to use “IF” and “IF ELSE” statements? When might it be a good idea to use loops? When might it be a good idea to use functions (optional)? Note: You are not required to turn in anything for this step. However, this step is important to prepare you to design your code in Steps #4 and 5. Create pseudocode or a flowchart that logically outlines the steps that will allow the player to move between rooms using commands to go North, South, East, and West. Use your notes from Step #3 to help you design this section of code. Be sure to address the following: What input do you need from the player? How will you prompt the player for that input? How will you validate the input? What should the program do if the player enters a valid direction? What output should result? What should the program do if the player enters an invalid direction? What output should result? How will you control the program flow with decision branching and loops? Create pseudocode or a flowchart that logically outlines the steps that will allow the player to get the item from the room they are in and add it to their inventory. Use your notes from Step #3 to help you design this section of code. Be sure to address the following: What input do you need from the player? How will you prompt the player for that input? How will you validate the input? What should the program do if the player enters a valid item (the item in their current room)? What output should result? What should the program do if the player enters an invalid item (an item not in their current room)? What output should result? How will you control the program flow with decision branching or loops?

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Scenario

You work for a small company that creates text-based games. You have been asked to pitch an idea to your team for a text-based adventure game with a theme and environment of your choice. Your game must include different rooms, items, and a villain. The basic gameplay will require the player to move between different rooms to gather all of the items. A player wins the game by collecting all the items before encountering the villain. The player will have two options for commands in the game: moving to a different room, and getting an item from the room they are in. Movement between rooms happens in four simple directions: North, South, East, and West.

 

Directions

In this project, you will break the problem down into a set of requirements for your game program. Then you will design your game by creating a storyboard and pseudocode or flowcharts. Remember, in Project One, you are only designing the game. You will actually develop the code for your game in Project Two.

  1. Review the Sample Dragon Text Game Storyboard in the Supporting Materials section to see a sample storyboard for a dragon-themed game. You will begin by creating a storyboard to plan out your game. Using one of the templates located in the What to Submit section, write a short paragraph that describes the theme of your game by answering all of the following questions:
    • What is your theme? What is the basic storyline?
    • What rooms will you have? (Note: You need a minimum of eight.)
    • What items will you have? (Note: You need a minimum of six.)
    • Who is your villain?
  1. Next, you will complete your storyboard by designing a map that organizes the required elements of the game (rooms, items, and villain). Using the blank map in your template, organize the different rooms and the items in each room. The following requirements must be met:
    • There must be a minimum of eight rooms.
    • Each room must contain one item, with the exception of the “start” room and the room containing the villain.
    • The “start” room is where players will begin their moves and should not contain any items.
    • The room containing the villain should not contain any items.

    Remember, to win the game, the player must move through the rooms, collect all the items, and avoid the room with the villain until all of the items have been collected. Make sure that it is possible for the player to win the game. For example, the room with the villain should not block a room containing an item.

  1. Carefully review the Sample Dragon Text Game Walkthrough video and Sample Dragon Text Game Output reading, located in the Supporting Materials section. These will give you an understanding of how the text-based game should work. As you read, consider the following questions:
    • What are the different steps needed in this program? How might you outline them in a way that a computer can understand?
    • What information would you need from the player at each point (inputs)? What information would you output to the player at each point?
    • When might it be a good idea to use “IF” and “IF ELSE” statements?
    • When might it be a good idea to use loops?
    • When might it be a good idea to use functions (optional)?

    Note: You are not required to turn in anything for this step. However, this step is important to prepare you to design your code in Steps #4 and 5.
  1. Create pseudocode or a flowchart that logically outlines the steps that will allow the player to move between rooms using commands to go North, South, East, and West. Use your notes from Step #3 to help you design this section of code. Be sure to address the following:
    • What input do you need from the player? How will you prompt the player for that input? How will you validate the input?
    • What should the program do if the player enters a valid direction? What output should result?
    • What should the program do if the player enters an invalid direction? What output should result?
    • How will you control the program flow with decision branching and loops?
  1. Create pseudocode or a flowchart that logically outlines the steps that will allow the player to get the item from the room they are in and add it to their inventory. Use your notes from Step #3 to help you design this section of code. Be sure to address the following:
    • What input do you need from the player? How will you prompt the player for that input? How will you validate the input?
    • What should the program do if the player enters a valid item (the item in their current room)? What output should result?
    • What should the program do if the player enters an invalid item (an item not in their current room)? What output should result?
    • How will you control the program flow with decision branching or loops?
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

where is the pseudocode?

Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question
  1. Create pseudocode or a flowchart that logically outlines the steps that will allow the player to move between rooms using commands to go North, South, East, and West. Use your notes from Step #3 to help you design this section of code. Be sure to address the following:
    • What input do you need from the player? How will you prompt the player for that input? How will you validate the input?
    • What should the program do if the player enters a valid direction? What output should result?
    • What should the program do if the player enters an invalid direction? What output should result?
    • How will you control the program flow with decision branching and loops?
Bedroom
item: Armor
East
West
Stockade
item: sword
North
Dragon Test game story board
East
Gallery
item: sheild
West
Kitchen
item: water container
North
South
North
South
Main hall
South
Library
item: Book
East
West
East
West
Dining Hall
Dragon!
Cellar
item: Helmet
Transcribed Image Text:Bedroom item: Armor East West Stockade item: sword North Dragon Test game story board East Gallery item: sheild West Kitchen item: water container North South North South Main hall South Library item: Book East West East West Dining Hall Dragon! Cellar item: Helmet
Solution
Bartleby Expert
SEE SOLUTION
Follow-up Question
  1. Create pseudocode or a flowchart that logically outlines the steps that will allow the player to get the item from the room they are in and add it to their inventory. Use your notes from Step #3 to help you design this section of code. Be sure to address the following:
    • What input do you need from the player? How will you prompt the player for that input? How will you validate the input?
    • What should the program do if the player enters a valid item (the item in their current room)? What output should result?
    • What should the program do if the player enters an invalid item (an item not in their current room)? What output should result?
    • How will you control the program flow with decision branching or loops?
Bedroom
item: Armor
East
West
Stockade
item: sword
North
Dragon Test game story board
East
Gallery
item: sheild
West
Kitchen
item: water container
North
South
North
South
Main hall
South
Library
item: Book
East
West
East
West
Dining Hall
Dragon!
Cellar
item: Helmet
Transcribed Image Text:Bedroom item: Armor East West Stockade item: sword North Dragon Test game story board East Gallery item: sheild West Kitchen item: water container North South North South Main hall South Library item: Book East West East West Dining Hall Dragon! Cellar item: Helmet
Solution
Bartleby Expert
SEE SOLUTION
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY