chastitywhiterose [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=74696 chaste_polygon <p> <table><tr><td> <a href="/bbs/?pid=126069#p"> <img src="/bbs/thumbs/pico8_chaste_polygon-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=126069#p"> chaste_polygon</a><br><br> by <a href="/bbs/?uid=74696"> chastitywhiterose</a> <br><br><br> <a href="/bbs/?pid=126069#p"> [Click to Play]</a> </td></tr></table> </p> <p>I have expanded the circle demo greatly and now instead of a circle it draws a regular polygon. It makes use of player 1 and 2 controls in order to change the position, radius, color, rotation, and number of sides. Try pressing buttons and see what happens!</p> <p>I have a routine for drawing regular polygons which actually spans several functions. With a few modifications from the C code I was able to make this PICO-8 Lua version that does the same basic thing.</p> https://www.lexaloffle.com/bbs/?tid=51696 https://www.lexaloffle.com/bbs/?tid=51696 Mon, 20 Feb 2023 04:20:45 UTC pico_chaste_tris <p> <table><tr><td> <a href="/bbs/?pid=126018#p"> <img src="/bbs/thumbs/pico8_pico_chaste_tris-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=126018#p"> pico_chaste_tris</a><br><br> by <a href="/bbs/?uid=74696"> chastitywhiterose</a> <br><br><br> <a href="/bbs/?pid=126018#p"> [Click to Play]</a> </td></tr></table> </p> <p>This is not the first time I have made a Tetris game. However it is the first real game I have published with PICO-8 and I am super excited to share it with the community.</p> <p>Everything uses standard Player 1 buttons. Arrow keys and Z,X are all you need. I implemented the hold feature using the up arrow.</p> https://www.lexaloffle.com/bbs/?tid=51685 https://www.lexaloffle.com/bbs/?tid=51685 Sat, 18 Feb 2023 06:41:59 UTC chastity_circle <p> <table><tr><td> <a href="/bbs/?pid=126013#p"> <img src="/bbs/thumbs/pico8_chastity_circle-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=126013#p"> chastity_circle</a><br><br> by <a href="/bbs/?uid=74696"> chastitywhiterose</a> <br><br><br> <a href="/bbs/?pid=126013#p"> [Click to Play]</a> </td></tr></table> </p> <p>I am very new to using PICO-8 but I took an example from the manual and modified it so that not only can the circle be moved around but it can also be made bigger or smaller. It might not look impressive to some people but this could be the foundation of making other kinds of games because I only need to modify what happens when the 6 standard buttons are pressed.</p> <p>function _update()<br /> if (btn(0)) then x=x-1; end<br /> if (btn(1)) then x=x+1; end<br /> if (btn(2)) then y=y-1; end<br /> if (btn(3)) then y=y+1; end<br /> if (btn(4)) then r=r-1; end<br /> if (btn(5)) then r=r+1; end<br /> end</p> <p>function _draw();<br /> cls(0);<br /> circfill(x,y,r,7);<br /> end</p> https://www.lexaloffle.com/bbs/?tid=51684 https://www.lexaloffle.com/bbs/?tid=51684 Sat, 18 Feb 2023 03:01:05 UTC Chaste Checker <p> <table><tr><td> <a href="/bbs/?pid=125873#p"> <img src="/bbs/thumbs/pico8_chastity_checker-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=125873#p"> chastity_checker</a><br><br> by <a href="/bbs/?uid=74696"> chastitywhiterose</a> <br><br><br> <a href="/bbs/?pid=125873#p"> [Click to Play]</a> </td></tr></table> </p> <p>I rewrote my checkerboard demo for the Pico-8 Fantasy Console. This program is amazing. It is probably the closest thing to QBasic which I used to use. However it uses a slightly modified form of Lua that also has graphics commands. In a way it is a lot like using Love2D but I am still quite new to using Pico-8. One of the most notable features is that it has built in ability to record video to a gif file.</p> <img style="margin-bottom:16px" border=0 src="/media/74696/checker_0.gif" alt="" /> <p>Pico-8 is almost like a mini DOS or Linux distribution except that all the programs are written in Lua. It comes with a full manual explaining the features which is available as a text file and also a page on the official website here:</p> <p><a href="https://www.lexaloffle.com/dl/docs/pico-8_manual.html">https://www.lexaloffle.com/dl/docs/pico-8_manual.html</a></p> <p>I do think that Pico-8 would be a great tool to teach people computer programming for the first time. It would allow learning Lua but also allowing a new person to start with graphics programming.</p> https://www.lexaloffle.com/bbs/?tid=51635 https://www.lexaloffle.com/bbs/?tid=51635 Wed, 15 Feb 2023 03:54:48 UTC Hello World <p> <table><tr><td> <a href="/bbs/?pid=125783#p"> <img src="/bbs/thumbs/pico8_chastity_hello-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=125783#p"> chastity_hello</a><br><br> by <a href="/bbs/?uid=74696"> chastitywhiterose</a> <br><br><br> <a href="/bbs/?pid=125783#p"> [Click to Play]</a> </td></tr></table> </p> <p>I am new to this site. I am learning about Pico8 and that is what brought me here. I'm mostly a C programmer but recently started experimenting with Lua partly because I was interested in using PICO-8. I love all things retro and my favorite game of all time is Tetris.</p> https://www.lexaloffle.com/bbs/?tid=51609 https://www.lexaloffle.com/bbs/?tid=51609 Mon, 13 Feb 2023 02:02:05 UTC