Question
need MAJOR HELP 1. Change the size of the arrays: const int MAX_ROW = 40; const int MAX_COL = 80; ***Make sure that only global
need MAJOR HELP
1. Change the size of the arrays:
const int MAX_ROW = 40; const int MAX_COL = 80;
***Make sure that only global variables you have in your program are Max_ROW and MAX_COL. Move any global variables you declared to a function or functions.
***Make sure to update setNextGenArray(). Use the variable names, not 40 or 80.
***For testing, I will be changing the array size. Your program should work by only modifying the array size.
2. Use two-dimensional arrays (tempArray, currentArray) of type char, instead of type int.
3. Choose a character for live cells, and a character for dead cells.
4. When you start your program, it should display only dead cells.
5. Modify the menu to include the followings (you may change the menu and descriptions, but must contain all the following options):
Initial - 'I' to load the 'U' pattern.
Play - 'P' to play the game.
Stop - 'S' to stop the game.
Clear - 'C' to set the arrays to the dead cells.
Quit - 'Q' to exit the program
1) pattern1 name - '1' to load the pattern1.txt file to the screen. (Replace pattern1 name with an actual pattern name you have, ex: 1) spaceship ). The location of the loaded pattern should be randomized.
2) pattern2 name - '2' to load the pattern2.txt file to the screen. (Replace pattern2 name with actual pattern name you have, ex: 2) snake ). The location of the loaded pattern should be randomized.
3) pattern3 name - '3' to load the pattern3.txt file to the screen. (Replace pattern3 name with actual pattern name you have, ex: 3) phython ). The location of the loaded pattern should be randomized.
Custom - 'T' to create a pattern from the user's input (collect row and column numbers) and set each cell to a live cell.
Save - 'A' to save the current live cell pattern of the currentArray to a file; save the row and column numbers of the live cells. (You may allow the user to type a file name.)
Load - 'L' to load a saved file. (You may allow the user to type the file name the user wish to load.)
***Allow the user to type uppercase or lowercase characters.
6. Add three more patterns except the 'U' pattern. See the file below (do not use block and tub), or you may create your own patterns. Present the different patterns (at least 3 using files - pattern1.txt, pattern2.txt, pattern3.txt) to the user in the menu (see 5), then allow the user to load those files; create a function to access each file (pass filename as a parameter to the function). Each file contains the row and column numbers of live cells.
7. Define variables and functions as necessary.
****When declaring variables and functions, use a meaningful name; don't just use x, y, a, b, etc. Don't just use a single character. (-30 points)
output
When i press "i"
When i press "p"
Load I] Press 'I' to load the initial pattern Load[1] Press '1' to load spaceship pattern Load [3] Press '3' to load diamond pattern [P]lay Press 'P' to play [C]lear Press 'C' to reset display s[A]ve Press 'A' to save current Array to a file. [Display Press 'D' to display the saved Array Load[2] Press '2' to load two pattern Load TI Press 'T' to input custom pattern [S]top Press S to stop program [Q]uit Press 'Q' to exit programStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started