IT 140 Project 1

docx

School

Southern New Hampshire University *

*We aren’t endorsed by this school

Course

140 - X625

Subject

Computer Science

Date

Jan 9, 2024

Type

docx

Pages

5

Uploaded by CorporalSardine2367

Report
IT 140 Design Document Template Nick Nguyen Storyboard (Description and Map) You are a former CIA agent. Due to your special skillsets in combat, agility, stealth, and computer programming, you are asked by your former boss who is now head of the CIA, to go on a mission to retrieve some classified documents from a well-known kingpin who has these documents on his compound on an island. We don’t want these classified documents in the wrong hands. He is hosting a banquet on his compound and that will be your opportunity to go in there and retrieve these documents on the computer. Upon entering the banquet, you will be checked at security, so there will be no weapons in your procession. This is where your skills will come in handy. There will be an insider (agent) who will give you the map and instructions on the mission. He will be disguised as a bartender. You must collect all of the items in the instructions to get to the computer and put the classified files on a USB drive. Finally, once you’ve obtained the keys to the helicopter which is on the helipad located on the roof, in order to get off the island. Avoid the master bedroom, this is where the Big Boss will be. Get caught and this mission will be a failure! Good Luck!!! 1 West East Storage Room Item: Knockout Gas Grenade Master Bedroom The Big Boss Roof Helipad with Helicopter Stairway Access to Roof Item: Bolt Cutters Computer Room Item: USB Drive Security Room Item: Keys to Helicopter Office Item: Flashlight Banquet Room Item: Map with Instructions North North North South South South East East East West West West
Pseudocode or Flowchart for Code to “Move Between Rooms” Current Room = “Banquet Room” LOOP STARTS Player inputs a direction: IF player is in Banquet Room IF direction is North Enter Storage Room ELIF direction is South Enter Office ELIF direction is East Enter Stairway Access to Roof ELIF direction is West Enter Security Room ELSE Output shows Invalid Direction IF player is in Storage Room IF direction is South Enter Banquet Room ELIF direction is East Enter Master Bedroom ELSE Output shows Invalid Direction IF player is in Master Bedroom IF direction is West 2
Enter Storage Room ELSE Output shows Invalid Direction IF player is in Security Room IF direction is East Enter Banquet Room ELSE Output shows Invalid Direction IF player is in Office IF direction is North Enter Banquet Room ELIF direction is East Enter Computer Room ELSE Output shows Invalid Direction IF player is in Computer Room IF direction is West Enter Office ELSE Output shows Invalid Direction IF player is in Stairway Access to Roof IF direction is North Enter Roof ELIF direction is West 3
Your preview ends here
Eager to read complete document? Join bartleby learn and gain access to the full version
  • Access to all documents
  • Unlimited textbook solutions
  • 24/7 expert homework help
Enter Banquet Room ELSE Output shows Invalid Direction If player is in Roof If direction is South Enter Stairway Access to Roof Else: Output shows Invalid Direction Go to LOOP STARTS End Pseudocode or Flowchart for Code to “Get an Item” Command to add to inventory: get “item name” LOOP STARTS When player enters each room Display each inventory item [Map with instructions, Knockout Gas Grenade, Bolt Cutters, Flashlight, USB Drive, Keys to Helicopter] IF item is in room and not in player inventory Display item name User selects get or leave item IF get Put in inventory ELIF item already added to inventory Display item 4
ELIF leave item Leave item ELSE Leave room Go to LOOP STARTS End 5