This assignment does not count toward the final grade.

Rubric

Find Rubric
Keep in mind that 7 students have already been assessed using this rubric. Changing it will affect their evaluations.
Grid-based Game Level 2
Grid-based Game Level 2
Criteria Ratings
the program compiles
Passing
Not passing
the program runs without crashing
Passing
Not passing
the program behaves as a "normal" player would expect
Passing
Not passing
all output displayed by the program is well formatted and spaced nicely
Passing
Not passing
the source code uses appropriately typed and named varaibles
Passing
Not passing
the source code includes useful comments that clarify logical chunks of the program
Passing
Not passing
the source code uses appropriate indentation
Passing
Not passing
the source code uses appropriately placed blank lines to separate the code into chunks that hang well together
Passing
Not passing
the source code includes appropriate use of functions as necessary
Passing
Not passing
the source code includes a comment at the top stating whether you worked alone or with others, and if so, who you worked with
Passing
Not passing
the source code includes a citation for any code not from the zyBook or from class
Passing
Not passing
the gridworld is represented as a 2D character array or 1D string vector
Passing
Not passing
characters (chars) are used to indicate the player's position, open spaces, obstacles, walls, rewards, enemies, etc.
Passing
Not passing
a key is provided to the player describing what each of the characters means
Passing
Not passing
the gridworld is displayed between interactions with the player
Passing
Not passing
the player is be prompted to make a move with a list of valid options based on where they are positioned in the gridworld
Passing
Not passing
player input is validated (the player is re-prompted until they enter a valid move)
Passing
Not passing
some kind of score is kept and reported along the way (e.g., the number of moves made, enemies defeated, rewards captured, etc.)
Passing
Not passing
the game ends somehow, e.g., an exit is reached, all the rewards are collected, the player is defeated by enemies, health is 0, etc.
Passing
Not passing