Work on the shmup continues. Enemies shoot to kill now.

Permalink  

My little shmup is coming along! I did a lot of improvements to it over the last few days: Dynamic enemy waves, enemy attack patterns, several quality-of-life tweaks. It’s almost a game now. My next task is to implement enemy shooting…

Permalink  

Picotron Released

Picotron is out and while it is pretty buggy right now, it also excites me very much!
Read more →

Red Alert: Building a PICO-8 Shmup

Sometimes, you need to make a shmup to learn how to make other games…
Read more →

I updated the code of my PICO-8 clock to make it so that the clock and stopwatch displays refresh at the same time. This was a request from Jonathan M.H. and it brings the version number up to 0.02.

In other news, I am now also hosting a web version of the clock here on the website. You can also use it on mobile phones!

Permalink  

The PICO-8 Retro Clock

I released a tiny tool for the PICO-8 fantasy console!
Read more →

I’ve gradually continued work on my tiny soulsborne roguelike hack & slash game Dark Embers. I’ve previously described the idea here. I now have a a basic game engine going with player animations, a particle system and a way to spawn and despawn game objects like campfires. I’ve also started to implement enemy spawning. Next up is basic pathfinding for the enemies and then collision detection, before I turn to animating the enemies and writing a basic combat AI for them.

Permalink  

Today I learned that the creator of PICO-8 is working on another fantasy video game console called Picotron that is releasing in March. Unlike PICO-8, which is an 8-bit fantasy console modelled after third generation video game consoles (like the NES), Picotron is a 16-bit console modelled after the fourth generation (like the SNES). It can run PICO-8 games and its Lua syntax is largely backwards compatible, but it has a lot more features like 64 colours, an 480 x 270 pixel (widescreen) display and – and this is pretty important – no size limit for cartridges. It also includes an operating system written in Lua that can be modified. And you can code your own apps for it. And all of this runs on the web!

Picotron FAQ

Although Picotron is conceptually similar to PICO-8 — an imaginary machine that you can make things for with built-in tools — it aims to be a more practical and flexible development environment. The two main differences are in specifications (larger display and cartridge capacity), and the way that built-in tools are implemented.

Unlike PICO-8 and Voxatron, all of the design tools in Picotron are written in Lua and are editable from inside the machine itself. Even things like the file browser, code editor and the terminal are implemented in userland. Custom tools can be created from scratch that run in fullscreen workspaces alongside the bundled editors. These additions and the subsequent shift in focus of the machine give Picotron the title of ‘Workstation’ rather than ‘Console’. Instead of ‘Plug in a keyboard to get a devkit!’ It feels more like: ‘Unplug the keyboard to get a console!'

Holy shit this is exciting!

Permalink  

Work’s been pretty stressful lately and one of the way’s I’ve been coping with that is to take some time out of my day to do some PICO-8 game development. I’ve had a number of game ideas lately, one of which I have written about on this blog. But I’ve now actually had a new game idea that came to me over the holidays while staying offline in a cabin in Sweden. It’s a mashup of the Half Sword demo and Dark Souls, mixed with a healthy dose of roguelike ideas, rendered within PICO-8’s tiny 8-bit dimensions.

The idea is to make an endless roguelike game where you fight enemies with a sword and collect their embers (a kind of soul-like essence). When you die, you lose all embers you’ve collected since your last rest at a campfire. So it doesn’t have permadeath, since you always load in at the last campfire, but the enemies get spawned in prodecurally, based on your ember score. It doesn’t have a world per se. It’s just a dark, mysterious place — much like the Half Sword demo — which enables me to concentrate most of the limited PICO-8 resources on having interesting enemies. One big goal of the game is to make the combat very smooth and pixel-perfect, taking inspirations from early shmups. As fas as I know, nobody has done something like this, which is kind of exciting to me.

It’s also pretty interesting that I’ve been able to re-use a lot of code from Tinyhold and an earlier unfinished prototype. I guess that’s a factor of PICO-8 forcing its restrictions on the developer, so you tend to have to solve similar problems again and again, even in games that look very different from each other. As it turns out, I have quite a nice library of (probably shoddily written) tools now.

Permalink  

I’ve been hacking around with JavaScript for a bit … I know, I know … I can hear Jonathan howl in triumph up north in Copenhagen at this point. Why? Well, I’ve had a nice JS clock on my start page for years, but I also wanted something to emulate the Nixie clock on my desk. When I found this JavaScript project by Čestmír Hýbl the other day, I just knew I had to implement it.

Since I’ve also wanted a countdown timer to track deadlines for a while — yay, the joys of print journalism! — I dug up this code, hacked it all together very haphazardly, and deadline.fab.industries was born. Feel free to use it if you like Nixie tubes and want to track some deadlines.

Permalink