Today in class we went over some topics that we didn't get to
last week (actually two weeks ago, week 7, before spring break),
as well as reviewing material that we did go over. In
particular, I introduced the lesson on
functions
(a.k.a. subroutines, procedures,
or methods), and reviewed the lessons
on timing
with millis()
and state.
The rest of the class was dedicated to working through some coding examples together. We talked about the following examples:
This example demonstrates the basics of creating (i.e. defining or implementing) functions, as well as using (i.e. calling or invoking) functions. Refer back to the discusstion of functions in the week 7 class notes for explanation of these terms and the syntax used in this example.
This example consists of three separate code files, each belongs in its own tab:
This is an excellent organizational technique for working with larger projects. If you are working on the game option and trying to implement levels, I highly recommend that you use these three files as the starting structure of your project.This example demonstrates how to use a state variable to implement a toggle feature, in which the user can press any key to turn a light on (background white), and press any key again to turn the light off (backgroun black).
Refer back to the discusstion of state variables in the week 7 class notes for explanation of this example.
This example demonstrates how to work with many things using lists. In this case, we're drawing 10 small circles meant to be rocks, and having them "fall" down the screen from top to bottom, "recycling" them so they appear back on top when they move off the screen, as if to show that a continuous stream of rocks keeps falling. For deeper explanation about this one, refer back to Week 6 for explanation about lists, and to Week 4 for explanation of the logic around animation and making things move. (This was Sirneh's question. Thanks for asking, Sirneh!)