[SOLVED] CSE102 Homework 6

35.00 $

Category:
Click Category Button to View Your Next Assignment | Homework

You will receive the following solution file(s) instantly after successful payment:

zip file icon HW6-8tn2yi.zip (156.8 KB)
Assignment Instructions Updated Recently? Submit Below and we will provide new Solution!
Submit New Instructions
đź”’ Securely Powered by:
Secure Checkout
Rate this product

The word hunter game typically consists of scrambled letters in a grid in which a player seeks for hidden meaningful words. Hidden words are placed vertically, horizontally or diagonally. They may overlap but cannot be in a zigzag form or wrap around. Your task is to create a word hunter puzzle and let the player play the game

Example:  

This is a 6×6 puzzle. There are 4 words hidden in this puzzle. Words and their positions are:

•  “hello” [d,0] & [d,4]

•  “world” [b,0] & [e,4]

•  “great” [a,0] & [a,4]

•  “random” [e,5] & [a,5]

Note that: Row Numbers are denoted with letters a to z.

Assignment:

You will create a puzzle map with a  20×20 grid where each cell contains a character. To build a puzzle map, you must do the followings:

  • You are given a list of 100 words. You will choose 10 random words from this list and place them in the puzzle table with random directions and positions. (Remember words can be scribed left to right, top-down, diagonally or in the reverse order of these directions)
  • Following word placement, you will fill the rest of the board with random characters.

Gameplay: On each turn, the puzzle and the selected word list are printed on the screen with lowercase characters. Puzzle board should be printed with the corresponding coordinates as a chessboard.

The coordinate of the top-left corner should be a0  and the bottom right should be o14

All characters should be lowercase. The program asks for a word and a coordinate (r=row, c=column).   

Example:

  • Please enter the coordinate and the word:
  • E5 random

As soon as the player enters a makes a guess, the program must search for all 8 directions If the guess is correct(both positions of the word are and list contains the word), the corresponding word on the board and the list must be converted to uppercase and reprinted.  Otherwise, there is no change on board and the list.

Termination Conditions: 

  • The player finds all the words in the puzzle.
  • Player types “Exit”.

 

  • HW6-8tn2yi.zip