PICO-8 Text Editor with Effects, #7

Today I worked on changing the word wrap to operate on words instead of letters. It was pretty easy to get it working for adding words, but I still need to finish support for deleting words.

Published

PICO-8 Text Editor with Effects, #6

Today I worked on splitting the huge “handle_keypress” function into two separate functions: one to add/delete characters and another to format the lines. Now the “handle_keypress” function only handles adding/deleting characters and the “format_text” function will clean up after it. The editor feels a lot less like a pile of if-statements now! xDIt also finally…

Published

PICO-8 Text Editor with Effects, #3

Today I made a bunch of changes to the text editor. I added a movable cursor, re-added particle effects, and changed the method of drawing text. Particle effects: I used the idea of saving each letter’s screen position at draw time and creating the particles afterward. Cursor: This was pretty straight forward; I just changed…

Published

PICO-8 Text Editor with Effects (Prototype)

Today I started making a text editor with effects! Inspired by Textreme 2 with ideas from Nerdy Teacher’s particles tutorial.It’s still missing a bunch of features, but the core idea is done.

Published

PICO-8 Clock, Dev log #2

Today I finished drawing the numbers! I also made them bounce around the screen, which in total took about an hour and 20 minutes.

Published

Bubbles Tweetcart (PICO-8)

Today I made my first PICO-8 tweetcart! It’s the bubbles screensaver, but under 280 characters. Here’s the source code: And here’s the unminified source code:

Published

PICO-8 Clock, Dev Log #1

Today I started replicating my desk clock in PICO-8! It took me about 45 minutes to draw the first six numbers and get the hands moving. The fun part is going to be making it do crazy stuff once it’s working normally. This should be a very short project, but I guess I’ll see.

Published