Enno [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=10394 Crossy Bird <p> <table><tr><td> <a href="/bbs/?pid=32080#p"> <img src="/bbs/thumbs/pico32079.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=32080#p"> Crossy Bird 0</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=32080#p"> [Click to Play]</a> </td></tr></table> <br /> Version 0:</p> <ul> <li>Movement Test</li> </ul> https://www.lexaloffle.com/bbs/?tid=28008 https://www.lexaloffle.com/bbs/?tid=28008 Sun, 30 Oct 2016 11:46:23 UTC Cactus jumping prototype <p> <table><tr><td> <a href="/bbs/?pid=23534#p"> <img src="/bbs/thumbs/pico23533.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=23534#p"> Cactus jumping prototype 0.1</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=23534#p"> [Click to Play]</a> </td></tr></table> Just a test of how much game I can write on a single commute. Missing: collision, attract screen, score, sound.</p> https://www.lexaloffle.com/bbs/?tid=3684 https://www.lexaloffle.com/bbs/?tid=3684 Fri, 24 Jun 2016 02:56:45 UTC The Circle Question <p> <table><tr><td> <a href="/bbs/?pid=19396#p"> <img src="/bbs/thumbs/pico19397.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=19396#p"> The Circle Question 2</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=19396#p"> [Click to Play]</a> </td></tr></table> </p> <p>Hello #sancho! Now with more colors, sizes, and navigation.</p> <p>Old versions:</p> <p> <table><tr><td> <a href="/bbs/?pid=19396#p"> <img src="/bbs/thumbs/pico19395.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=19396#p"> The Circle Question 1</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=19396#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=3164 https://www.lexaloffle.com/bbs/?tid=3164 Fri, 25 Mar 2016 03:01:26 UTC Platformer Prototype <p> <table><tr><td> <a href="/bbs/?pid=19323#p"> <img src="/bbs/thumbs/pico19326.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=19323#p"> Platformer Prototype 2</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=19323#p"> [Click to Play]</a> </td></tr></table> <br /> Experimenting with a simple platform game character controller.</p> <p>TODO:</p> <ul> <li>fine-grained collision detection</li> <li>more map tiles</li> <li>fore/background tiles</li> <li>shooting animation</li> <li>multiple shots</li> <li>sound</li> <li>double jump</li> <li>crouch</li> <li>wall jump</li> </ul> https://www.lexaloffle.com/bbs/?tid=3144 https://www.lexaloffle.com/bbs/?tid=3144 Sun, 20 Mar 2016 14:09:36 UTC Minesweeper <p> <table><tr><td> <a href="/bbs/?pid=18765#p"> <img src="/bbs/thumbs/pico18764.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=18765#p"> Minesweeper 0.1</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=18765#p"> [Click to Play]</a> </td></tr></table> </p> <p>Lack of mouse controls should be no obstacle. Use arrow keys to navigate. </p> <p>Plan:</p> <ul> <li>cursor range limits</li> <li>mine counter</li> <li>flag marker</li> <li>number tiles</li> <li>more mines</li> <li>game over</li> <li>code size optimization</li> </ul> https://www.lexaloffle.com/bbs/?tid=3058 https://www.lexaloffle.com/bbs/?tid=3058 Thu, 11 Feb 2016 08:22:09 UTC tile thing maker <p>This Wednesday, I opened one of my pico-8 in notepad and realized how simple the format is. I immediately wanted to build tools that write cartridges. The idea that hit me was this: It can be hard to make multi-screen scrolling levels or title screens from tiles, because every image has to be composed of tiles, it would be easier to just paint the image in photoshop, and then have a tool break it into tiles, eliminate duplicate tiles, and write the result into a cartridge file.</p> <p>So I got started, first step, a bit of code that scrolls a map around the screen. Secondly, make some art that uses the pico8 palette. I made a JASC PAL file based on a screen shot, and used PSP8 to dither the old red-eyed tree frog that's used so much in image processing.</p> <p>Then wrote some code to read the resulting PNG, break it into 8x8 tiles, and write tiles and resulting map into a cartridge. I'm already writing Lua here, so I used <a href="love2d.org">L�VE</a>, which made reading image files and looking at pixels pretty easy, even though it's not what it was meant for, but who has time to write all this stuff in SDL and C? So that wasn't too hard, and by end of day, I had put up a proof of concept: <table><tr><td> <a href="/bbs/?pid=17434#p"> <img src="/bbs/thumbs/pico17433.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=17434#p"> PNG converter demo 0.1</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=17434#p"> [Click to Play]</a> </td></tr></table> </p> <p>Navigate with arrow key, speed up with the first button (keyboard Z or controller A).</p> <p>The code that generates the cart is really awful, everything happens in love.load(), and there is a ton of string processing that's about as inefficient as you could make it if you wanted to, and the resulting cartridge had way more tiles than you need, because duplicate elimination wasn't done yet. Gotta save some work for version 1.</p> https://www.lexaloffle.com/bbs/?tid=2856 https://www.lexaloffle.com/bbs/?tid=2856 Fri, 04 Dec 2015 09:11:46 UTC *deleted* <p>I can't find a delete function.</p> https://www.lexaloffle.com/bbs/?tid=2855 https://www.lexaloffle.com/bbs/?tid=2855 Fri, 04 Dec 2015 05:50:55 UTC PNG converter demo <p> <table><tr><td> <a href="/bbs/?pid=17434#p"> <img src="/bbs/thumbs/pico17433.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=17434#p"> PNG converter demo 0.1</a><br><br> by <a href="/bbs/?uid=10394"> Enno</a> <br><br><br> <a href="/bbs/?pid=17434#p"> [Click to Play]</a> </td></tr></table> <br /> I wrote a little utility to export PNG files to pico8 cartridge map files. I've got plans to automatically eliminate duplicate tiles and allow arbitrarily sized images, but in the meantime, here is my first proof-of-concept to show that I've got the cartridge format correct, and the basic idea works, using the good old red-eyed tree frog seen in all kinds of image processing demos (the pico8 palette is not too kind to it).</p> <p>Not that this is not a game, it's an automatically generated cartridge. The real magic is in the generator (which I hope to publish when I'm happy with it).</p> https://www.lexaloffle.com/bbs/?tid=2852 https://www.lexaloffle.com/bbs/?tid=2852 Thu, 03 Dec 2015 05:34:51 UTC