Sale!

CS 2261 HOMEWORK 01: Looping Animation

$30.00 $18.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (4 votes)

Purpose: To use a vertical sync function and set pixel to further
your understanding of: VBlank and HBlank, drawing and erasing pixels
in Mode 3, and working with an infinite while loop.
Instructions:
For this homework, you will make a simple frame-by-frame animation in Mode 3. This may
be as simple as having a few shapes move and change colors, or as complex and original as
your heart desires. Creativity is encouraged!
Requirements:
● Follow good code architecture
○ Not a bunch of set pixel calls in main
● The animation must loop forever
CS 2261 Spring 2021
● A vertical sync function must be used
● There must be at least four different frames of animation
● There must be at least three different colors
● There must be a minimal amount of flicker
Tips:
Consider writing a separate function for every frame and calling these functions in an
endless loop. Or, write a procedural animation that resets itself so that it also looks like it
loops. Either is fine, and it’s up to you how you want to organize your code, so long as
there is meaningful organization.
● If you are having trouble with flicker, try drawing fewer pixels per frame (don’t
draw a pixel unless you really need to).
● If you need help getting started, drawing out a few frames on a 240×160 canvas in
a simple paint editor or on graph paper may help.
● Make sure your moving elements/shapes don’t “wrap around” the gba screen, in
other words, check your boundaries!
Submission Instructions:
Compress your entire project folder, including all source files, the Makefile, and
everything produced during compilation (including the .gba file) into a single .zip file.
Submit this .zip on Canvas. Name your submission HW01_FirstnameLastname, for
example: “HW01_GanondorfDragmire.zip”.