Tag Archives: coding

Neon Smoke – Update

On February 1, I posted about a video game that Griffin and his friend, James, submitted to the National Science Foundation’s Game Maker Awards competition. According to the official timeline, judging should have finished on March 14 and the winners would be announced on April 2.

NSF Game Maker Awards timeline

Imagine Griffin’s surprise when he received this email on March 30:

Dear NSF Game Maker contestant,

Thank you for participating in the NSF Game Maker Awards. We are pausing the judging process until further notice. If an entrant was eligible for the competition at the time of their initial submission but has since aged out of the K-12 category due to delays in the competition timeline, they will remain eligible for judging and prize award. Their entry will be evaluated alongside current K-12 participants, ensuring fairness and continuity. No additional action is required from the entrant to maintain eligibility.

Please check the Game Maker Award website for updates.

Thanks,
The NSF Game Maker Awards team

Going to the website didn’t provide any additional information, though the contest pages have this information posted in the header of each page:

Also at the top of each page is a link to “Learn about NSF’s implementation of recent executive orders.”

Although it is not explicitly stated anywhere on the linked page, we assume that the competition was paused in response to these “recent executive orders.”

This is, of course, a minor thing. Griffin and James will be fine. But in our family, it felt like an ominous sign of how quickly the new administration’s priorities can directly affect us.

This may seem trite, but I am reminded of a haunting quote from The Fellowship of the Ring, in reference to the dark lord Sauron:

“His arm has grown long indeed,” said Gimli, “if he can draw snow down from the North to trouble us here three hundred leagues away.”

“His arm has grown long,” said Gandalf.

These are the words that echo through my head today.

Neon Smoke

Griffin and his friend, James, released an early demo of their game, Neon Smoke. Griffin composed the music and created most of the art. James did most of the coding. Other friends contributed story elements and helped write the dialogue.

Here’s how James and Griffin describe the process and story on their webpage:

Overview of Process

This demo of our game, Neon Smoke, was created for the National Science Foundation’s ‘Game Maker Awards‘ competition. Over the last 4 to 5 months, we have been working on developing art, music, story, and code; as well as overall having a fun time making our silly little game.

Story

You, the player, wake up in a cryo chamber in the year 2138. After breaking out, you find yourself in a mysteriously abandoned and ruined tower. After this you meet two figures who seem friendly enough… but can you really trust them? Adventure through a post-apocalyptic world full of resources, unique characters to talk to, and robot companions. There are even arcades to play retro minigames in to collect more resources to aid you on your journey to stop the evil robots.

And here’s their video trailer:

Maggie’s First Python Project

Maggie is taking her first computer science class this year. The seventh grade course meets every other day for half a block (45 minutes) during the first trimester. This isn’t a lot of time for learning and practice, but students usually dive in with gusto and Maggie is no exception. Although I do teach a section of the class, I don’t have Maggie. She’s with my brilliant colleague, Chris Collins.

At the mid point of the first trimester, we ask students to create a short project using the code that they’ve learned thus far. They are using the Python programming language. Here’s what Maggie created:

Maggie’s program uses the turtle to create a campsite scene.

To create this scene, Maggie wrote 170 lines of code using Python’s default text editor (known as IDLE). If you’re curious, the code is appended below.

#project1

import turtle
t = turtle.Pen()
t.speed(0)
t.screen.bgcolor("midnight blue")

#ground
t.width(10)
t.color("brown")
t.pu()
t.goto(-200, -161)
t.pd()
t.goto(200, -161)

#tree 1
t.pu()
t.width(7)
t.color("maroon")
t.goto(-190, -160)
t.pd()
t.goto(-190, -60)
t.color("forest green")
t.goto(-210, -90)
t.pu()
t.goto(-190, -60)
t.pd()
t.goto(-170, -90)
t.pu()
t.goto(-190, -80)
t.pd()
t.goto(-210, -110)
t.pu()
t.goto(-190, -80)
t.pd()
t.goto(-170, -110)
t.pu()
t.goto(-190, -100)
t.pd()
t.goto(-210, -130)
t.pu()
t.goto(-190, -100)
t.pd()
t.goto(-170, -130)
t.pu()

#tree 2
t.setheading(270)
t.pu()
t.fillcolor("green")
t.pencolor("darkgreen")
t.goto(100, -90)
t.pd()
t.begin_fill()
t.circle(30)
t.end_fill()
t.pu()
t.goto(120, -120)
t.pd()
t.pencolor("chocolate1")
t.fillcolor("burlywood1")
t.begin_fill()
t.forward(40)
t.left(90)
t.forward(20)
t.left(90)
t.forward(40)
t.end_fill()

#tent
t.fillcolor("purple1")
t.pu()
t.goto(-50, -160)
t.pd()
t.begin_fill()
t.color("purple1")
t.goto(40, -160)
t.goto(20, -110)
t.goto(-30, -110)
t.goto(-10, -160)
t.end_fill()
t.pu()
t.fillcolor("purple3")
t.begin_fill()
t.goto(-30, -110)
t.goto(-50, -160)
t.end_fill()
t.pu()
t.color("purple1")
t.goto(-33, -110)
t.pd()
t.goto(-53, -160)

#moon
t.pu()
t.goto(110, 50)
t.pd()
t.begin_fill()
t.color("old lace")
t.circle(50)
t.end_fill()

#stars
t.pu()
t.goto(220, 40)
t.pd()
t.color("lemon chiffon")
t.circle(2)
t.pu()
t.goto(220, 90)
t.pd()
t.circle(2)
t.pu()
t.goto(160, 90)
t.pd()
t.circle(2)
t.pu()
t.goto(40, 20)
t.pd()
t.circle(1)
t.pu()
t.goto(20, 20)
t.pd()
t.circle(2)
t.pu()
t.goto(0, 20)
t.pd()
t.circle(3)
t.pu()
t.goto(-130, 30)
t.pd()
t.circle(2)
t.pu()
t.goto(-40, 30)
t.pd()
t.circle(1)
t.pu()
t.goto(-40, 150)
t.pd()
t.circle(2)
t.pu()
t.goto(0, 150)
t.pd()
t.circle(1)
t.pu()
t.goto(0, 190)
t.pd()
t.circle(3)
t.pu()
t.goto(140, 190)
t.pd()
t.circle(2)
t.pu()
t.goto(-160, 130)
t.pd()
t.circle(1)
t.pu()
t.goto(220, 164)
t.pd()
t.circle(2)
t.pu()
t.goto(-220, 100)
t.pd()
t.circle(2)
t.pu()
t.goto(-80, -70)
t.pd()
t.circle(1)

t.hideturtle()

Wyre

Griffin and his friend, James (and a few other friends), dove into a programming contest last week: the New Year, New Skills Game Jam. The contest ran for exactly one week, from January 7 to 14. They worked hard and developed a prototype game called Wyre. James was the lead coder and Griffin composed the music and designed many of the graphics.

You can play the game here and see the contest submission here. A few screenshots posted below.

Congratulations Griffin and James! This took a lot of work to put together.