PICO-8 Text Editor with Effects, #32

Today I fixed the menu system! I made it less general and it works so much better now. I have about an hour and a half left of my six hour time budget and I still think it’s enough to finish everything.

Published

PICO-8 Text Editor with Effects, #31

The scroll bar is working! And it only took about half an hour. Now I need to make it auto scroll so that the cursor doesn’t go out of view.

Published

PICO-8 Text Editor with Effects, #30

Today I spent half an hour on the scroll bar! It changes height with the length of the text, although it isn’t functional yet.

Published

PICO-8 Text Editor with Effects, #29

Today I added a scroll bar with buttons! Next up should be adding the bar itself. I’m about halfway through my six hour time budget and I think I have enough time to finish.

Published

PICO-8 Text Editor with Effects, #28

Today I did a quick hack to get scrolling working! I just added an offset to the drawing stage and it only took about ten minutes. I still need to add the scroll bar, but it shouldn’t be too hard.

Published

PICO-8 Text Editor with Effects, #23

I’ve started working on the save system! I can write files with “printh” and I’m trying to find a way to avoid clobbering existing files. PICO-8 has “extcmd” to run commands from inside PICO-8, but it doesn’t include “ls”, which I could use to find existing files.I’m also thinking that I’ll need a system for…

Published

PICO-8 Text Editor with Effects, #22

Today I spent more time refining the mouse controls. They’re still not finished, but now some new things work, like clicking outside the lines and on blank lines.

Published

PICO-8 Text Editor with Effects, #21

Today I made selections functional! Now they behave more like other text editors: pressing any key with an active selection deletes the selected text.

Published

PICO-8 Text Editor with Effects, #17

Today I worked on re-adding mouse control! When I was using a table for each line, I could loop through the lines to find the closest character to the mouse and I can still do something similar with the list of line breaks.

Published

PICO-8 Text Editor with Effects, #16

Today I re-added particles! I ended up using the method of setting flags on new letters, but still doing deletion immediately. The code isn’t awful, but it isn’t very clean either. Also, now that I have the letter positions from the word wrap, the second loop can just draw the letters.

Published