πŸ•Ή Game loop state and dictionary

Keep track of game state

There are a few final features to complete our Wordle clone. We need to limit the user to six guesses and read a file representing the dictionary.

First try to write a function, stubs.gameLoop, which does the following:

  • Gets the user's guess from the console
  • Renders the result of the guess with the user's previous guesses
  • Lets the user know if they have guessed successfully or run out of attempts.

Load the dictionary file

Thus far we've been assuming that a bunch of five letter words represented by a Set of Text will be provided as an argument to our functions. We still need to write the function which generates this data. To do that we'll read in a file.

Try to write a function, stubs.loadDict, which returns the words in the words file. Each five letter word is separated by a newline character. For the sake of convenience you might want to place it in the same folder where you're calling the UCM from.

Write the main function

Your main function is what the ucm run command will execute. It should do the following:

  • Create the target word (hard-coding it is fine for now)
  • Read the dictionary file
  • Kick off the game loop 🍾

When you're done post your wordle in the #beginner-friendly slack channel so the Unison crew and others can procrastinate play it! 😁

✨ See a breakdown of each of the arguments in stubs.gameLoop
✨ See a breakdown of each of the arguments in stubs.gameLoop

Imagine we call stubs.gameLoop with the following named arguments: stubs.gameLoop turns target results.

  • turns is a Nat representing the number of guesses a user has had
  • target is the word of the day
  • results is the history of the user's guesses, for rendering purposes
  • The Ask ability requirement can be thought of as an environment which provides the dictionary

Think about which of these are tracking state which should change based on the user's input.

πŸ“š How to read files using the IO ability
πŸ“š How to read files using the IO ability

To perform a file read we'll need readFileUtf8 function from base.

πŸ“š Handling the Ask ability
πŸ“š Handling the Ask ability

The handler for Ask is called provide.

provide : a -> '{g, Ask a} r ->{g} r

When functions call ask for a value in the environment, it makes sense that the value they should get is supplied by provide.

The second argument to provide is a delayed computation.

Note that provide 42 '(myAskFunction a b) is different from provide 42 'myAskFunction a b. Read more about this difference here.

πŸ“š Packaging and sharing Unison code
πŸ“š Packaging and sharing Unison code

To share your Unison source code, push your code to your Unison Share and set its visibility to public in the Share UI.

wordle/main> push

The push command with no arguments will push the current namespace to a correspondingly named remote repository on Unison Share.

You can also create a standalone executable file from your main function for other folks to run with the compile command in the UCM. Read more about standalone binaries here

Resources

Solutions

πŸ”‘ basic.gameLoop implementation
πŸ”‘ basic.gameLoop implementation

basic.gameLoop is a recursive function which determines if the user has won, keeps track of the state of the user's turn, and prints the user's past guesses.

basic.gameLoop :
  Nat
  -> basic.Target
  -> [[basic.Result]]
  ->{IO, Exception, Ask (Set Text)} ()
basic.gameLoop turn target pastGuesses =
  use List :+
  use Nat + >=
  if turn >= 6 then printLine "Alas! Better luck next time! 🀑"
  else
    guess = basic.getUserInput()
    result = basic.Guess.score guess target
    results = pastGuesses :+ result
    printLine (basic.renderGuesses results)
    if basic.isVictory result then printLine "πŸŽ‰ Yay! 🎊"
    else basic.gameLoop (turn + 1) target results
πŸ”‘ basic.loadDict implementation
πŸ”‘ basic.loadDict implementation

stubs.loadDict loads the Text from the dictionary file as raw text, then splits it on the new line character.

basic.loadDict : FilePath -> '{IO, Exception} Set Text
basic.loadDict filePath _ =
  if FilePath.exists filePath then
    printLine "πŸ“š Dictionary found! This may take a second... ⏰"
    text = ((<|) basic.readFile filePath ())
    t =
      xml.lib.base.Text.split ?\n text
        |> distributed.lib.base.data.Set.fromList
    printLine "πŸ“— Dictionary created."
    t
  else
    Exception.raise
      (Generic.failure "Dictionary file not found" filePath)

basic.readFile is the function which handles the file reading as described above. Inside basic.readFile is a recursive function calling getBytes in 4096 byte chunks at a time (the size of a page of memory in most OS architectures).

basic.readFile : FilePath -> '{IO, Exception} Text
basic.readFile filePath =
  read : Handle ->{IO, Exception} Bytes
  read fileHandle =
    go acc =
      use Bytes ++
      use Nat <
      bs = getBytes fileHandle 4096
      if Bytes.size bs < 4096 then acc ++ bs else go (acc ++ bs)
    go Bytes.empty
  fileHandle : '{IO, Exception} Handle
  fileHandle _ = FilePath.open filePath Read
  do
    Exception.bracket
      fileHandle Handle.close (file -> read file |> fromUtf8)
πŸ”‘ basic.main function implementation
πŸ”‘ basic.main function implementation

basic.main is our "edge of the world πŸ—Ί" function. We've hard-coded the file path to a dictionary file, and hard-coded the target word for this iteration of the code.

It's here that we provide a handler for the Ask ability. The handler for Ask is provide, which provides the set of five letter words as its first argument to the basic.gameLoop function which requires it.

basic.main : '{IO, Exception} ()
basic.main _ =
  printLine "πŸ₯³ Welcome to WORDLE!"
  filePath = FilePath "dict"
  dict = basic.loadDict filePath ()
  target = "party"
  if Boolean.not (Text.size target === 5) then
    Exception.raise
      (Generic.failure
        "The word of the day must be 5 letters long" target)
  else
    printLine "Guess a five letter word"
    provide dict do
      basic.gameLoop 0 (basic.Target.fromText target) [[]]

Next steps

πŸ‘‰ Check out the challenge task for this lab

πŸ‘‰ Explore other ways to extend this code