
Dyson Swarm: How I built a hard science fiction game with AWS services
An end-to-end overview of building a serverless browser game.

localStorage.setItem('dysonSwarmGameState', JSON.stringify(gameState));
gameState
. All the other action happens when the buttons are clicked (these change the gameState
). Since there are currently 56 of these buttons that get unlocked at various stages of the game, the buttons have their own file called buttonFunctions.js. The file contains metadata about what the buttons do along with functions that get invoked when the buttons are clicked. The button functions get attached to the actual button DOM elements when the game is instantiated, by looping through all the button elements and running handleButton()
on them when the game is loaded. As buttons are clicked, new stages of the game are unlocked, until you've built a solar-system spanning civilization.- The built-in chat interface is good, you can ask it questions as you go along and it will provide useful answers.
- The /dev feature will actually create a diff and also apply it to your code if you approve it! This prevents tedious copy/paste operations and saves time.
- Q Developer is very good at replicating repeating patterns in code. For instance, I told it things like "add 2 percent inflation to all repeatable buttons (other than the marketer button), in the same pattern as the ad purchase button inflation." and it saved a ton of time!
- The
/dev
feature takes a long time (on the order of minutes), because it does multiple LLM invocations on the back-end. - The
/dev
feature is good at generating code diffs is good for some things, but it often decides to create new files instead of adding code in-line. You have to be very careful in your prompt management to keep it from going off the rails.