Make a simple text adventure game in C++. The theme of the game is that you are hunting for a creature in a forest. The player should be able to move between 4 different areas. In 3 of these areas, there will be an item. In the fourth area, there will be the enemy creature. The player must get all of the items from the 3 areas before encountering the enemy in the fourth area to win the game. If the player goes to the enemy area before they collect all 3 items they lose the game. The player should be asked to type up, down, right, or left in order to move between areas.
Try to include as many of these criteria in the program as possible:
Inputs and Outputs (I/O)
Variables
Arrays
File (I/O)
Iteration (Loops)
Interaction
Control