Computers and Technology
Computers and Technology, 20.08.2021 04:20, tlecuyer

You are to write an Ant class to simulate Langton's Ant. In this simulation, a virtual "ant" moves about a two-dimensional square matrix, whose spaces can be designated white or black, according to the rules below:
If the ant is on a white space, it will turn right 90 degrees relative to the directions it is facing, move forward one step, and change the space it left to black.
If the ant is on a black space, it will turn left 90 degrees relative to the directions it is facing, move forward one step, and change the space it left to white.
When the ant hits the edge of the board and is going to go out of the bounds, wrap the board around so the ant will appear on the other side.
The matrix is initially composed of all white spaces. The user will specify the size of the square matrix. The user will also specify the number of steps that the ant will move and the starting location and direction of the ant. After the simulation, the final board with the ant position will be displayed to the console. In this display, the ant is represented by number "8", a black space is represented by the number sign ("#"), and a white space is represented by an underscore ("\_").
Simulation flow:
Your program's main function will collect the user input for the information needed to initialize the simulation. The information to be collected will include:
The number of rows/columns for the square board matrix.
The ant's starting location. This will be collected via user input to ask users to enter an integer number for row and an integer number for the column as the starting position of the ant. For example, if the board is 9X9, and you choose "4,4" as ant's starting location, then the ant will start from the center of the board.
The ant's starting direction, which can be 0 for up, 1 for right, 2 for down, 3 for left.
Main will use the information collected to initialize an Ant object that will be used to run the simulation.
Once the Ant object is initialized, main will collect user input for the number of steps that the simulation will run. When testing, don't choose a very large number when you do the test.
After all the information described above is collected from the user, a function called run_simulation will start the simulation of the Ant movement. For each step, it will...
Increment the step counter;
Use Ant object to store the Ant object's current position and direction on the board;
Move the Ant based on the movement rule;
Change the color of the space on the board the Ant just left.
Once the simulation is finished, display the board by printing it to the console using the print_board function. Here, for the space that is dominated by the Ant, you don't need to display the color. If the step number is 0, print the initial board.
During the development of your program, you could test your code by choosing the step number as 0, 1, 2, 3, etc. to see the results.
Case won't matter for all the messages that your functions return.
Feel free to add whatever other classes, functions, or data members you want. All data members must be private. All functions must have no more than 20-25 lines of code - don't try to get around this by making really long or complicated lines of code.
Here's a very simple example of how your program could be used by the autograder or a TA:
Welcome to Langton's ant simulation!
First, please enter a number no larger than 100 for the size of the square board:
5
Choose the ant's starting location, please enter a number as the starting row number (where 0 is the first row from the top):
0
Please enter a number as the starting column number (where 0 is the first column from the left):
0
Please choose the ant's starting orientation, 0 for up, 1 for right, 2 for down, 3 for left:
2
Please enter the number of steps for the simulation:
3
#___#



8___#

answer
Answers: 2

Other questions on the subject: Computers and Technology

image
Computers and Technology, 21.06.2019 19:30, kprincess16r
Why is it a good idea to leave an interview being courteous and polite?
Answers: 1
image
Computers and Technology, 22.06.2019 11:30, melissalopez12
Write a function so that the main program below can be replaced by the simpler code that calls function original main program: miles_per_hour = float( minutes_traveled = float( hours_traveled = minutes_traveled / 60.0 miles_traveled = hours_traveled * miles_per_hour print('miles: %f' % miles_traveled) sample output with inputs: 70.0 100.0 miles: 116.666667
Answers: 3
image
Computers and Technology, 22.06.2019 15:30, 1232444553
Which of the following examples has four beats in each measure?
Answers: 2
image
Computers and Technology, 22.06.2019 18:10, AdoNice
How can i delete permalinks from a word press site?
Answers: 1
Do you know the correct answer?
You are to write an Ant class to simulate Langton's Ant. In this simulation, a virtual "ant" moves...

Questions in other subjects:

Konu
Computers and Technology, 16.02.2021 21:10
Konu
Mathematics, 16.02.2021 21:10
Konu
Mathematics, 16.02.2021 21:10