Skip to content

Practice using JavaScript control flow by building a Choose Your Own Adventure game.

Notifications You must be signed in to change notification settings

SEI-R-2-22/u1_hw_control_flow_adventure

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

Choose Your Own Adventure!

Choose

Homework Overview

Using what you know about data types, variables, operators, conditional blocks, and accepting user input, you'll be creating a text-based game that allows the user to arrive at different "destinations" based on the inputs they type.

Requirements

  • Any path the user goes down must ask them at least three questions.

  • There must be a minimum of seven total destinations the user could arrive at based on their responses.

  • For at least one of the questions asked, there must be more than two possible user responses.

  • Your adventure must offer the user an option to replay at the end.

  • Your code must contain at least one switch statement.

  • Your code must make use of both string and number user inputs.

    Hint: You may need :

    • parseInt()
    • toString()
    • prompt
    • confirm
    • alert

Getting Started

  • Fork and Clone this repository
  • cd into the directory
  • Run the command code . to open it in VS Code.
  • Start by looking at the starter files in the starter directory
  • Open the index.html in your browser
    • open starter/index.html for mac
    • explorer.exe starter and select the html file for windows
  • All of your javascript will be run in the browser, node will not work

How to Get User Input

prompt()

At any point in our JS code, if we write prompt(), a pop up box will open in our browser for a user to enter in text. The prompt() function returns the string entered into the pop up.

// prompts user and stores value in the variable
let valueOfPrompt = prompt()
// logs value stored
console.log(valueOfPrompt)

Prompt takes a string as an argument. That string is displayed in the pop up.

let age = prompt('How old are you?')
// ES6 String Interpolation
alert(`You are ${age} years old.`)
// ES5 Version
alert('You are ' + age + ' years old.')

Whatever we type into the textbox in the window that prompt() brings up, is returned by prompt to the variable age.

confirm()

Like prompt(), confirm opens a pop-up but instead of a text input field, the pop up has two buttons, ok and cancel. If the user selects ok, confirm() returns true (and otherwise returns false). Also like prompt, confirm() also takes a string that will be displayed to the user in the pop up.

Pass

...this homework (jk)

Need Some Inspiration?

How about...

  • A Lord of the Rings style adventure where the player is Frodo, and he must choose how to get to Mordor. Possible obstacles involve Orcs, Goblins and getting drunk on mead.
  • A "Top Chef" style cooking adventure where the player is the chef, trying to make dinner for an elite group of judges. Possible obstacles include overcooking the meal, running out of time or mean judges.
  • A Harry Potter themed adventure where the user is Harry and he must find all the horcruxes. Possible obstacles include He-who-must-not-be-named, Professor Snape or Ron being completely useless.

Delorian

Pseudo-coded Example

What is your name?

  • Marty

Nice to meet you, Marty. What year would you like to go to? (YYYY)

  • >= 2015
    • I see you're a fan of Back to the Future 2. Would you rather deal with Biff, or Griff? (B/G)
      • Biff
        • Hmm, interesting. Biff is angry and has a cane. Do you stand and fight, or run away like a coward? (S/R)
          • Stand and fight
            • Good choice. Biff is old and feeble at this point. You push him over and he falls in a pile of manure.
          • Run like a coward
            • You get away, but your future son Marty Jr. is heckled for the rest of his days for his dad's cowardice.
      • Griff
        • Griff is asking you if you are in, or out. What do you say? (I/O)
          • In
            • Bad call. Griff and his cronies rob the Hill Valley bank and frame you for it. No more time travel for you.
          • Out
            • Good call. You deck Griff in the jaw and run away. He gives chase on his hoverboard and ends up in a pile of manure.
  • 1985-2014
    • Doc has already destroyed the Time Machine at this point. I guess you'll have to wait around until 2015. What name would you like to go by until then?
      • Calvin Klein
        • Welcome to the future, Calvin Klein.
  • 1955-1984
    • I see you're a fan of Back to the Future 1. Your future Mom has just asked you to the Enchantment Under the Sea dance. What do you do? (Y/N/S)
      • Yes
        • Creepy. I hope you have some backup plan in place to get out of this. Until then, you're stuck in 1955.
      • No
        • Honorable. But this also means that your future Dad will never meet your Mom, and therefore you cannot exist.
      • Set her up with George
        • Interesting. You set up an elaborate plan for your future Dad to surprise your Mom by beating you up. Despite going horribly awry, the plan ultimately works. You may go back to your own time.
  • < 1955
    • I see you're a fan of Back to the Future 3. You've run out of gas and can't get back to your own time! How do you power the Time Machine? (H/M/T)
      • Horses
        • Good idea, but no. The time machine needs to get to 88mph. 12 horsepower ain't gonna cut it.
      • Moonshine
        • You'd be better off drinking the moonshine. Do not pass Go, do not collect $200. Stuck in 1855.
      • Train
        • Good call! This plan seems to be working. But wait! Clara wants to go Back to the Future with you at the last moment. What do you do? (T/L)
          • Take her
            • Interesting choice. Unfortunately the Doc can't grab Clara and get back to the car in time. He ends up staying in 1855 with her.
          • Leave her
            • Smart choice. Unfortunately the Doc was deeply in love with Clara, and when he gets back to 1985 he becomes very depressed.

Doc

Submission Guidelines

About

Practice using JavaScript control flow by building a Choose Your Own Adventure game.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published