1. Homepage
  2. Programming
  3. ECE220: Computer Systems & Programming - Machine Problem 12: Dancing Turtles

ECE220: Computer Systems & Programming - Machine Problem 12: Dancing Turtles

Engage in a Conversation
USIllinois UniversityECE220Computer Systems & ProgrammingCDancing Turtles

Dancing Turtles

Your task this week is to write a short program to animate a turtle. Towards this end, you must open and read commands from an input file, then execute the commands frame by frame to animate the turtle. You will use the list template class (a doubly-linked list) from the Standard Template Library (STL) to keep track of line segments that must be drawn to the screen. The objective for this week is to give you experience writing I/O code and an introduction to event-driven animation and the STL. Although your code will be in C++, you need use only a small amount of new syntax: method invocations for the TurtleScreen object and your list of line segments, as well as declaration and use of an iterator (but an example is given in the code). CourseNana.COM

Background

The screenshot above shows the turtle replaying an infinite loop of a few commands. As the turtle moves, it leaves trails in a color specified by the commands (it starts in white). Ever hear of Logo? Check out http://www.calormen.com/jslogo/ for a more interesting version. We won’t ask you to do more than implement a few simple commands (which aren’t actually taken from that language—we just borrowed the turtle!). CourseNana.COM

Pieces

The code given to you includes a fairly substantial library as well as copies of header files and libraries for a graphics layer. You need read none of that code. Note that you need only read and modify files in the jni subdirectory. Your program will consist of a total of three files: mp12.h This header file provides type definitions, function declarations, and brief descriptions of the subroutines that you must write for this assignment. You should read through the file before you begin coding. CourseNana.COM

**mp12.cpp**   The source file for your code. A version has been provided to you with

placeholders for the subroutines described in this document. CourseNana.COM

TurtleScreen.h Functions for your use in animating the turtle. Look at the list of methods starting around the middle of the file. Use them with the TurtleScreen* passed into your frameUpdate function. CourseNana.COM

A number of other files are also provided to you in the jni subdirectory: CourseNana.COM

**Makefile**   A file that simplifies the building and visualization process. See the section

below on Compiling and Executing Your Program. CourseNana.COM

**mp5.c**   An empty file provided as a placeholder for your solution to MP5.

You can safely ignore the rest of the files, although, as always, you’re welcome to look at them. Be warned that I stripped the old library down a little since the cross-development options have broken down in the last few years. CourseNana.COM

You should copy your mp5.c code into the mp12/jni directory over the placeholder provided to you. Please note that the mp5.h file is slightly different; do NOT replace it with the old one! The draw_dot and set_color routines are not the same as they were in MP5, but they work in the same way, so your code should be fine. We will not be checking the detailed image output, and only your draw_line function will be needed, so as long as that function is reasonably correct, the output should be acceptable. CourseNana.COM

The Task

The total amount of code needed in my version of this assignment was just over 100 extra lines. You should first copy your mp5.c solution into your mp12 directory. You need to write five subroutines, of which two are likely to be more challenging that the others. I suggest the following order: CourseNana.COM

  1. Start with the following int32_t openInputStream (const char* fname);

Open the file with name given by fname and store the input stream into the variable input (see mp12.cpp). Return 1 if successful, or 0 on failure. CourseNana.COM

  1. Next, handle closing the stream: void closeInputStream (void); Close the input stream input (again, see mp12.cpp—it’s a variable in that file).
  2. Now write a function to use the MP5 functionality: void drawEverything (void);

You should read about the STL list class template before you implement this function. An example of iterating over the list lines (a variable in mp12.cpp) is shown in the provided function showLines (just above the drawEverything function), which you can also use later to look at the list in GDB (using STL inside GDB can be painful otherwise). CourseNana.COM

At this point, you can build the program and run a couple of tests. If you move or remove the commands file from the top-level directory, your openInputStream should fail, causing the program to terminate with an error message. You can also check for an empty lines list (lines.empty ()) at the start of drawEverything and add a line or two by hand to check whether your drawing code works. CourseNana.COM

  1. The last two routines work together to handle reading commands and animating the turtle. You may want to go back and forth, implementing reading the command and executing the animation for the command, then testing before moving on to another command. Command lines of 200 characters should be supported (use fgets). Commands are not case sensitive (use strcasecmp), nor does leading/trailing/extra space matter. Incorrect argument types and trailing non-space characters on a command’s line are not allowed and should result in an error message printing the offending command to stderr.

Commands include the following: color \<RGB> Set the color of lines drawn by the turtle. \<RGB> is a hex value (read it as an int32_t in hex). CourseNana.COM

move \<dist> \<frames> Move \<dist> pixels in the direction that the turtle is currently facing. Use sin and cos to calculate the final position, be sure to round (use round), and write the move command into cmd. The animation should require \<frames> calls to frameUpdate to finish (smaller numbers are faster movement). Movement commands with non-positive distances or numbers of frames must be ignored (no error message should print, though). CourseNana.COM

restart Go back to the beginning of the file and read it again. Use the rewind function on the input stream to implement this command. CourseNana.COM

turn \<amt> Turn the turtle by 10 degrees for each of the next |\<amt>| frames. Positive values turn left, and negative values turn right. Ignore turn commands with amount 0. CourseNana.COM

wait \<frames> Wait for \<frames> frames (pause). Non-positive wait commands must be ignored. CourseNana.COM

The frame update function for animation is void frameUpdate (TurtleScreen* ts); CourseNana.COM

The function is called 25 times per second. A command variable cmd in mp12.cpp tells the update routine what to do in each frame. If the current command is CMD_NONE, the function should call readNewCommand to see whether a new command is available in the input stream. Then the function should switch based on the type of command (see the enumeration in mp12.h for the exact names). Turns and waiting are relatively easy. Movement requires creating or updating a line segment in the list of line segments being drawn. Be sure to call makeVisibleChange on the TurtleScreen to show changes to the set of lines, as otherwise your changes will not be shown up. Also be sure to change the command type to CMD_NONE when appropriate to initiate reading a new command from the input stream on the next call to frameUpdate. Keep in mind that you must read the TurtleScreen.h header file to find the methods that you must use for executing the commands. The function for reading new commands is CourseNana.COM

void readNewCommand (TurtleScreen* ts); CourseNana.COM

The function should read commands and execute them immediately, if possible (such as restart and color commands, as well as bad commands), stopping only after it either reaches the end of the file (leaving the command as CMD_NONE) or reads a command that requires animation (moves, turns, and waits). To check for trailing garbage using sscanf, read an extra string. For example, if the string buf is supposed to contain an integer, scan buf using format string "%d%1s" and provide a 2-character array for the trailing garbage. In this example, sscanf will return 1 if no trailing non-white-space characters exist, or 2 if they do. Note: For library functions mentioned, please check their usages by yourself if you are not familiar with them. Besides, calculating positions might be tricky, be careful. CourseNana.COM

Specifics

Be sure that you have read the type definitions and other information in the code and header files before you begin coding. And remember that testing is your responsibility. CourseNana.COM

  • Your code must be written in C++ and must be contained in the files named mp12.cpp and mp12.h in the mp12 subdirectory of your repository. We will NOT grade files with any other names.
  • You may modify files as you see fit provided that your five functions operate correctly on the language defined in this specification. In other words, you may extend the language as you like, but you may not redefine the commands outlined here.
  • You must write the openInputStream, closeInputStream, drawEverything, frameUpdate, and readNewCommand functions correctly.
  • You may assume that the parameter values passed into your functions are valid, but be aware that the variables in mp12.cpp are managed solely by your code.
  • You may assume nothing about the commands file. Your code must handle all forms of failure, including non-existent files, lack of permissions, and bad commands in all forms.
  • Each movement command should create only one line segment in lines. When you add a new segment, use push_back to add it to the end of the list. Change the X and Y coordinates of the last segment in each frame update as the turtle moves.
  • Your routine’s return values, outputs, and calls to TurtleScreen methods must be correct.
  • Your code must be well-commented. Follow the commenting style of the code examples provided in class and in the textbook, and be sure to add function headers containing the information that has been provided for you in previous assignments (inputs, outputs, return value, and any side effects, as well as a brief description).

Compiling and Executing Your Program

When you are ready to compile, type: make CourseNana.COM

Warnings and debugging information are turned on in the Makefile, so you can use gdb to find your bugs (you will have some). The executable is placed in the top-level directory, NOT in the jni subdirectory. If compilation succeeds, you can execute the program by typing, “./mp12” (no quotes). The commands file is also in the top-level directory. To clean up, type “make clean” (no quotes), or to really clean up, type “make clear” (as usual, no quotes). CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
US代写,Illinois University代写,ECE220代写,Computer Systems & Programming代写,C代写,Dancing Turtles代写,US代编,Illinois University代编,ECE220代编,Computer Systems & Programming代编,C代编,Dancing Turtles代编,US代考,Illinois University代考,ECE220代考,Computer Systems & Programming代考,C代考,Dancing Turtles代考,UShelp,Illinois Universityhelp,ECE220help,Computer Systems & Programminghelp,Chelp,Dancing Turtleshelp,US作业代写,Illinois University作业代写,ECE220作业代写,Computer Systems & Programming作业代写,C作业代写,Dancing Turtles作业代写,US编程代写,Illinois University编程代写,ECE220编程代写,Computer Systems & Programming编程代写,C编程代写,Dancing Turtles编程代写,USprogramming help,Illinois Universityprogramming help,ECE220programming help,Computer Systems & Programmingprogramming help,Cprogramming help,Dancing Turtlesprogramming help,USassignment help,Illinois Universityassignment help,ECE220assignment help,Computer Systems & Programmingassignment help,Cassignment help,Dancing Turtlesassignment help,USsolution,Illinois Universitysolution,ECE220solution,Computer Systems & Programmingsolution,Csolution,Dancing Turtlessolution,