Homework 4
Last updated: Tue, 4 Mar 2025 08:50:50 -0500
Out: Tue Feb 25 2025, 11am EST
Due: Tue Mar 04 2025, 11am EST
Overview
In this assignment, you will continue to practice programming using The Design Recipe, a systematic way to write programs that are both correct and readable.
This hw will be graded accordingly:
correctness (autograder) (8 pts)
design recipe (14 pts)
testing (16 pts)
style (6 pts)
README (1 pt)
Setup
Create a new repository for this assignment by going to the CS450 Spring 2025 GitHub Organization and clicking "New".
Note: The CS450 Spring 2025 GitHub Organization must be the owner of the repository. Do not create the repository in your own account.
On the "Create a new repository" screen:
Name the repository hw<X>-<LASTNAME>-<FIRSTNAME> where <X> is the current homework number.
For example, I would name my hw4 repository hw4-Chang-Stephen.
Mark the repository as Private.
Check "Add a README file".
Select the Racket template for the .gitignore.
Choose whatever you wish for the license.
When done click "Create repository".
Tasks
In this assignment we will implement a big-bang program similar to Homework 3, except with the added ability to rotate the block. (Note that a solution to hw3 is not needed to complete this assignment. In fact, since this assignment requires new data definitions, it is recommended that all students start from scratch, even those who completed hw3. Trying to "adapt" a previous solution will be the more error-prone path, so do so at your own risk.)
Here is an online demo that approximates the behavior of the program.
Reading
Read Chapters 5-6 of the Textbook (where reading means working through the examples and exercises interactively).
Review the The Design Recipe section of the course website for new elements of the design recipe that we have learned.
Pre-programming Notes
- All code must be written following the The Design Recipe. (Just submitting code is not sufficient.) In additional to the required receipe steps, some language features may only be used in the certain scenarios, as called for by The Design Recipe.
For example, set! and other "imperative" features are not allowed ever.
Conditionals such as if and cond are only allowed to be used with certain Data Definitions.
NOTE: You won’t need lists yet for this assignment.
Signatures should use define/contract and the predicates defined in the Data Design Recipe step. If a function is defined with define/contract and it’s clear which data definitions its contract refers to, then comment signatures no longer need to be submitted with code.
For Examples and Tests, do not use check-expect from the Beginning Student Language (even though the textbook says to). Instead, use check-equal? or other testing forms from rackunit.
Examples for a function definition should be right after the define. But Tests should be put into the test-suite in tests.rkt. Try to think about corner cases and code coverage. Each function should have at minimum one Example, and "sufficient" Tests.
Tests should go in a tests.rkt file, as described in lecture and the hw4 starter code, and the rest of the code should go in a file named hw4.rkt.
The submitted program must be only a series of defines (both constants and function definitions are allowed). It should not run any code (e.g., it should not start the big-bang loop automatically!). Not following this will result in GradeScope errors and/or timeouts.
You may look at lecture code to help you but DO NOT SUBMIT ANY OF THIS CODE (even if you change the variable names, etc). You won’t receive any credit. Instead, you should write code for this homework from scratch using The Design Recipe.
NEW: One-line helper functions—
if the name and description clearly describe what it does (the course staff is the final arbiter of this)— do not need to be submitted with Examples and Tests, if they are covered by other tests. NOTE: This does not change the Design Recipe. It is only changing submission requirements. As usual, however, we will not be able to debug code that does not follow the design recipe, so omit these steps at your own risk.
Programming
- Create a big-bang program that uses a 10\cdot\texttt{UNIT}\times 20\cdot\texttt{UNIT} pixel scene, whereThe big-bang expression should include (see below for details):
A J-block (unrotated) should "fall" from the top of the scene to the bottom, at a rate of UNIT pixels per tick.
The block should initially be completely off the screen, but the "horizontal" part should be visible after one tick.
The block should stop "falling" when it touches the bottom of the scene.
The initial "x" coordinate of the block center should be centered in the scene.
If a user presses the "left" keyboard key, the block should move left by UNIT pixels (if it can), and same for "right" and "down". Once it is fully in the scene, the block should never go out of the scene (even partially) on any of the scene edges. The block should still be movable horizontally, even if it is at the bottom of the scene.
NEW: If a user presses the "up" keyboard key, the block should rotate 90 degrees clockwise around a rotation point, where the rotation point is the center of the long horizontal part of an unrotated block. The following figure shows this rotation point, as well as the block going through the four possible rotations.
Your program should define constants ROTATION1, ROTATION2, ROTATION3, and ROTATION4 that, from left to right, represents each of the four rotation states (see the data definition section below for more details).
(NOTE: This "rotation point" is different from the "center point" of the block, which is what the 2htdp/image functions use, and what most students used in their Data Definitions in previous assignments. Be sure to understand the difference before writing any code, and be careful to be explicit about what kind of data your code computes with.)
NEW: As before, no part of the block should go out of the scene on the right, left, and bottom edges. If a rotation would put part of the block out of the scene, then the block should be repositioned so that it remains fully in the scene. In this situation, the block should be flush against the edge where it was about to go past.
- NEW: A Data Definition named RotationState that is an enumeration of four values, representing each of the possible rotation states of the block,
;; A RotationState is one of: ;; - ROTATION1 ;; - ROTATION2 ;; - ROTATION3 ;; - ROTATION4 ;; Represents: ??? The above data definition uses constants which you should define. You may choose whatever values you want to actually represent each state, though some choices will make writing the code easier than others. NEW: a function next-RotationState with signature RotationState -> RotationState that, given a RotationStateX, returns RotationStateY, where the Y=(X mod 4)+1
a Data Definition named WorldState that represents the world state values of your big-bang program (remember that a world state should only include values that change—
constant values should be defined as constants). WorldState instances must be comparable with equal? and check-equal?, which means that if a struct is used, it must be defined with the #:transparent keyword. NEW: You won’t be able to re-use your Data Definitions from previous assignments, so it is highly recommended that you start from scratch and think carefully about the different kinds of data the program will need. You likely will not be able to successfully complete this assignment without the design recipe. To give a hint, you may need to reason about all these different kinds of data, at different places in the program:
the rotation point of the block,
the "center" of the block,
the "right edge" of the block,
the "left edge" of the block, and
the "bottom edge" of the block.
Do not write any code until you at least understand what these mean. Ask questions (with examples) on Piazza if you do not. You do not want to, e.g., be writing code that expects a "center" but receives a "right edge". That is a sure-fire way to wind up in a marathon debugging session. Ideally, you should have well-named functions that "convert" between these different kinds of data when appropriate. Note that the various coordinates above may also change as the block is rotated so make sure to take that into account.a mk-WorldState/rs function that takes a big-bang x and y coordinate representing a block rotation point, and a RotationState, and returns a WorldState with the block at the given coordinates and rotated into the specified state,
a WorldState-rpx function that takes a WorldState and returns the x coordinate of the block’s rotation point,
a WorldState-rpy function that takes a WorldState and returns the y coordinate of the block’s rotation point,
a WorldState-rs function that takes a WorldState returns the block’s current rotation state,
a WorldState? predicate that returns true when given a value that is a valid WorldState (if WorldState is compound data, then the predicate should be a "shallow" check, meaning it should not deeply check the data structure fields, etc.),
a function next-WorldState, with signature WorldState -> WorldState, that is given to on-tick,
a function WorldState->Image, with signature WorldState -> Image (Image is a built-in basic data definition from 2htdp/image where (image? i) evaluates to true if i is a valid Image), that is given to to-draw,
a function handle-key, with signature WorldState KeyEvent -> WorldState that is given to on-key,
a constant INIT-WORLDSTATE where (WorldState? INIT-WORLDSTATE) evaluates to true. Remember that the block should initially be centered horizontally, sitting just above the top of the scene, and in ROTATIONSTATE ROTATION1.
a function main that takes no arguments and starts the big-bang interactive loop (main does not need Examples or Tests)
Before Submitting
Testing (and Autograders)
Before submitting, note:
Do not submit until all code has been thoroughly tested (by you), which means writing a "sufficient" number of Test cases.
A GradeScope "Autograder" may or may not be released before the due date but either way, an Autograder is not a software development/testing tool, so do not use it as one. Code must be tested independent of any Autograder and questions about Autograders will be ignored (e.g., posts asking "why is the Autograder giving an error?" are not allowed)
If you do submit before the deadline and get an Autograder error, this is bonus information that indicates the submitted code is not complete and/or not correct. But it’s up to you to figure out what "correct" means and how to fix to the program.
Of course, the course staff is here and eager to help, but cannot do so without context information. The best way to supply this information is to INCLUDE EXAMPLES WITH ALL QUESTIONS, along with what the "expected" result should be! The posted examples should be the minimal amount of code needed to communicate the problem. This will receive the clearest possible answer.
The Autograder test suite is subject to change. This means that the visible grade seen during submission is not the final grade.
Style
All code should follow proper Racket Style.
Also, the repository itself must follow proper style. Specifically, it must have appropriate commit messages. See How to Write a Git Commit Message if you are unsure how to write a commit message.
Files
A submission must have the following files in the repository root:
hw4.rkt: Contains the hw solution code.
All defines should use the name specified in the exercise (ask if you are unsure) and should be provided.
The easiest (but not always the most readable) way to ensure all necessary definitions are provided is to (initially) put as the second line in the file:
This automatically provides all definitions in the file (the first line should be #lang racket).
tests.rkt: This file should require hw4.rkt and define tests for it.
Specifically, it should define a rackunit test-suite named TESTS which contains "sufficient" rackunit Test cases (e.g., check-equal?, etc.) for each defined function.
README.md: Contains the required README information, including the GitHub repo url.
Submitting
When you are done, submit your work to Gradescope hw4. You must use the "GitHub" Submission Method and select your hw<X>-<LASTNAME>-<FIRSTNAME> repository.
Note that this is the only acceptable way to submit homework in this course. (Do not manually upload files and do not email files to the course staff. Homework submitted via any unapproved methods will not be graded.)