Powersaurus [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=12213 Tline Terrain Demo (Worms/Scorched Earth terrain) <p> <table><tr><td> <a href="/bbs/?pid=142701#p"> <img src="/bbs/thumbs/pico8_tline_terrain_demo-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=142701#p"> tline_terrain_demo</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=142701#p"> [Click to Play]</a> </td></tr></table> </p> <h1>Tline Terrain Demo</h1> <p>Worms/Scorched Earth deformable/destructible terrain demo.</p> <p>Arrow keys move target<br /> X to destroy terrain<br /> O to toggle debug mode, showing the vertical slices.</p> <p>Maybe of use to someone?</p> <p>For a long time I have wondered how to make Worms/Scorched Earth style terrain and make it work reasonably well. My first ever (unreleased) game on pico-8 was a Worms clone, that used a 2D array of pixels and pset to draw the terrain. It blew the CPU budget and was slooooooow.</p> <p><a href="https://www.lexaloffle.com/bbs/?tid=29175">Micro Murder</a> on Pico-8 managed a really slick solution drawing circles over the top of the terrain, but I wondered if there was another way. Fast forward some years and I'm still thinking about it. Most discussion about this type of terrain suggests some form of bitmap to store the terrain.</p> <p>This implementation uses a 2D array of vertical slices, then uses tline to draw a bit of the texture for each vertical slice. An explosion either shrinks one end of a slice, or carves it into two, removing the original slice. See the code for more.</p> <p>Terrain graphics come from my game <a href="https://www.lexaloffle.com/bbs/?tid=29180">The Wizard Pig</a>.</p> https://www.lexaloffle.com/bbs/?tid=140579 https://www.lexaloffle.com/bbs/?tid=140579 Sun, 10 Mar 2024 00:30:07 UTC Moon Miner 2580 <p> <table><tr><td> <a href="/bbs/?pid=135249#p"> <img src="/bbs/thumbs/pico8_moon_miner_2580-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=135249#p"> Moon Miner 2580</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=135249#p"> [Click to Play]</a> </td></tr></table> </p> <p>Look, I&rsquo;m not exactly pleased to be here either, but this much of that green ore is too good to turn up. Yes, the moon is increasingly unstable but carve as much as you can using the rockerizer, get it back to the tele unit and we&rsquo;re out of here in an hour. Not the time to be asking why we aren&rsquo;t sending a bot. If we had the money for one we wouldn&rsquo;t need to be here. It&rsquo;s a very decent payday.</p> <p>Your hazard suit will absorb a fair amount of punishment from the molten rock, but the surface instability means it&rsquo;s leaking between gaps in the ground. Nothing like a bit of motivation eh? It&rsquo;ll mean your journey back to the TU will be trickier than the outward trek, so use the nano waypoint device to mark a path back. Anything marked will have a bright yellow glow in your HUD just like the TU. It&rsquo;s got limited juice though, so go easy. Oh yeah, worth saying - just remember that less rock means more lava.</p> <p>See you in a bit!</p> <hr /> <p>x - start/restart game</p> <hr /> <p>arrow keys - move</p> <p>x - mine rock/ore</p> <p>z/c - mark waypoint on hard rock</p> <hr /> <p>Credits:</p> <p>Made for pico1k game jam by Ben Jones using pico8 in 1023 bytes of compressed code. Raycasting engine based on <a href="https://lodev.org/cgtutor/raycasting.html">Lode Vandevenne's Raycasting Tutorial</a> - licensed under BSD 2-clause license - check it out, it's brilliant.<br /> <a href="https://opensource.org/license/bsd-2-clause/">Licensed under the 2-Clause BSD License</a></p> <p>Code:</p> <p>See below for the original jam code. Cart is annotated with comments</p> <div> <div class=scrollable_with_touch style="width:100%; max-width:800px; overflow:auto; margin-bottom:12px"> <table style="width:100%" cellspacing=0 cellpadding=0> <tr><td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> <td background=/gfx/code_bg0.png> <div style="font-family : courier; color: #000000; display:absolute; padding-left:10px; padding-top:4px; padding-bottom:4px; "> <pre> r=3::_::f,x,y,o,v,cx,cy,a,t,l,w={15,1,1,6,6,6,6,6,6,6,6,6,9,9,9,0,0,2,2,3,1},16,16.5,1,0,0,.75,0,0,100,8pal({1,141,137,130,133,141,133,141,134,4,9,135,131,3,139},1)memset(8192,9,4096) for j=1,30 do for i=1,30 do k=f[1+rnd(#f)\1]mset(i,j,k)f[16+i%3]=k end end mset(14,16,11) mset(15,15,11) mset(15,16,1) mset(15,17,11) mset(16,15,2) mset(16,16,2) mset(16,17,2) mset(17,15,2) mset(17,16,2) mset(17,17,2) fillp(0xa5a5) ::l:: if r&gt;0 then if(r==1)?&quot;ore mined: &quot;..a if(r==2)?&quot;signal lost&quot; if(r==3)?&quot;moon miner&quot; if(btn(5))r=0goto _ goto l end t+=1 for j=1,30 do for i=1,30 do k=mget(i,j)m=i+rnd(3)\1-1n=j+rnd(3)\1-1 if(t%360&lt;1and k==3and mget(m,n)&lt;3)mset(m,n,3) end end s=0 if(btn(2))s=.05 if(btn(3))s=-.05 if(mget(x+o*s,y)&lt;4)x+=o*s if(mget(x,y+v*s)&lt;4)y+=v*s s=0 if(btn(0))s=-.01 if(btn(1))s=.01 i=mget(x,y) if(i==3)l-=1?&quot;\ag4&quot; if(l==0)r=2 if(x\1==15and y\1==16)r=1 m=mget(x+o,y+v) if(btn(5)and (m==15or m==6))mset(x+o,y+v,rnd(2))?&quot;\ag0&quot; if(btn(5)and m==15)a+=1?&quot;\ab3&quot; if(btn(4)and m==9and w&gt;0)mset(x+o,y+v,12)w-=1 i=o o=o*cos(s)+v*sin(s)v=i*-sin(s)+v*cos(s) i=cx cx=cx*cos(s)+cy*sin(s)cy=i*-sin(s)+cy*cos(s) cls(3)for z=0,127do local sx=2*z/128-1 local r,s=o+cx*sx,v+cy*sx local ly,g,w,cy,sx,sy,sd=127,1,0,0,1,1,0 local i,j=x\1,y\1 local lc=mget(i,j) local c,dx,dy=lc,abs(1/r),abs(1/s) if(r==0)dx=30 if(s==0)dy=30 local u,v=(i+1-x)*dx,(j+1-y)*dy if(r&lt;0)sx=-1u=(x-i)*dx if(s&lt;0)sy=-1v=(y-j)*dy while g do if u&lt;v then sd=0u+=dx i+=sx else sd=1v+=dy j+=sy end c=mget(i,j) g=c&lt;4 if(sd==0)d=u-dx if(sd==1)d=v-dy local f=128/d\1/2+64line(z,ly,z,f,80+lc) if(lc&lt;2)line(z,127-ly,z,127-f,sget(16+lc,max(0,min((d-1)/3\1,3))))cy=127-f w=128/d+.5\1 if(c&lt;2)c2=6line(z,max(cy,-w*2+64),z,-w/2+64,bor(max(c2-2,c2-sd-d/3\1),shl(max(c2-2,c2-(d+.5)/3\1),4))) ly,lc=f,c end h=-w/2 if(lc&gt;1)h=-w*2 c2=c line(z,max(cy,h+64),z,w/2+64,bor(max(c2-2,c2-sd-d/3\1),shl(max(c2-2,c2-(d+.5)/3\1),4)))end?&quot;\ff◆&quot;..a..&quot; &hearts;&quot;..l..&quot; ˇ&quot;..w flip()goto l```</pre></div></td> <td background=/gfx/code_bg1.png width=16><div style="width:16px;display:block"></div></td> </tr></table></div></div> https://www.lexaloffle.com/bbs/?tid=54418 https://www.lexaloffle.com/bbs/?tid=54418 Sun, 01 Oct 2023 23:13:52 UTC Portalsaurus <p> <table><tr><td> <a href="/bbs/?pid=95261#p"> <img src="/bbs/thumbs/pico8_portalsaurus-1.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=95261#p"> Portalsaurus</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=95261#p"> [Click to Play]</a> </td></tr></table> <br /> <table><tr><td> <a href="/bbs/?pid=95261#p"> <img src="/bbs/thumbs/pico8_portalsaurus-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=95261#p"> Portalsaurus</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=95261#p"> [Click to Play]</a> </td></tr></table> </p> <h2>Intro</h2> <p>Recently I decided to dig into portal renderers and start to build my own, inspired by <a href="https://fabiensanglard.net/duke3d/build_engine_internals.php">this excellent write-up of BUILD</a>. This is currently work in progress, no guarantee it will turn into a full game but thought it was interesting enough to share.</p> <p>I used a lot of stuff from other projects</p> <p>From <a href="https://www.lexaloffle.com/bbs/?pid=78599">Caped Feline Arena</a> </p> <ul> <li>Player movement</li> <li>Floor and sky casting</li> <li>Palette functions</li> </ul> <p>From <a href="https://www.lexaloffle.com/bbs/?pid=86966">Cab Ride</a></p> <ul> <li>Palette</li> </ul> <p>I also revisited <a href="https://lodev.org/cgtutor/raycasting3.html">Lodev's raycasting articles</a>, specifically the code to render sprites without fisheye distortion as they behave similarly to the ends of the walls.</p> <h2>Implementation Notes</h2> <p>01/10/21</p> <ul> <li>New features including</li> <li>Variable height sectors!</li> <li>Distance based lighting!</li> <li>Large performance gains!</li> <li>Island sectors!</li> <li>This is all thanks for being a bit smarter about how many walls to cast each ray for</li> <li>After flooding portals, the walls of each sector are grouped into subgroups (referred to in BUILD terminology as 'bunches')</li> <li>The bunches are ordered near-far (thanks to traversing the portal graph)</li> <li>Island sectors get inserted before other bunches an enclosing sector (this would cause glitches with concave sectors, out of scope for now)</li> <li>Walls within a bunch are ordered near-far, and projected into screen space, where they are further chopped down, grouped by walls that touch at one end</li> <li>Portals take account of differences in sector height - this allows for doorways/overhangs</li> <li>A very simple buffer keeps track of which x coordinates have had a wall drawn, to prevent overdraw of walls</li> <li>Rays are cast for the walls nearest bunch (from the lowest to highest x coordinate). If a hit is recorded, the 'x buffer' is updated, so no further drawing happens - that coordinate is now occluded</li> <li>Palette is set for each vertical slice of wall, based on distance from the camera</li> </ul> <p>Original post:</p> <ul> <li>At the moment it relies on casting a ray for every column of the screen to determine which walls to draw</li> <li>One wall per column at the moment</li> <li>Casting a ray traverses a subset of potentially visible walls</li> <li>Potentially visible walls are calculated by traversing the portals in the world structure, starting with the 'sector' the player/camera currently occupies</li> <li>World is represented by sectors, which hold references to a set of walls that border the sector</li> <li>A portal is a wall shared by two sectors</li> <li>Traversing the world tests which walls of a sector are in front of the camera, if any wall is a portal, it is currently discarded and the connected sector is visited, up to a hard limit of 10</li> <li>The current sector of the player/camera (or starting sector for rendering) is determined by casting a ray to the left and the number of intersections with walls is counted. Even means outside the sector (and connected sectors are tested), odd means within the sector. A short description of this is found in the 'Inside a concave polygon' of the <a href="https://fabiensanglard.net/duke3d/build_engine_internals.php">BUILD write-up</a></li> <li>The world is created when the cart starts and builds a model of how sectors are connected to each other</li> <li>tline() is used for floor and sky</li> <li>No collision detection currently</li> </ul> <h2>Controls</h2> <ul> <li>Arrow keys - move around</li> <li>X - toggle map view (off by default)</li> <li>C/Z - strafe</li> </ul> <h2>Next up??? Maybe?</h2> <ul> <li>More performance</li> <li>Sector based floor textures</li> <li>Collision detection</li> <li>/ 'Island' sectors for columns</li> <li>Basic level editor</li> </ul> https://www.lexaloffle.com/bbs/?tid=43942 https://www.lexaloffle.com/bbs/?tid=43942 Sun, 25 Jul 2021 07:30:56 UTC Cab Ride <p> <table><tr><td> <a href="/bbs/?pid=86966#p"> <img src="/bbs/thumbs/pico8_cab_ride-7.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=86966#p"> Cab Ride 1.2</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=86966#p"> [Click to Play]</a> </td></tr></table> </p> <p>(16/07/22 - Corrected license in description to match that attached to cart :facepalm)<br /> (30/01/22 - Happy Birthday Cab Ride! 1 today!)</p> <p>Drive a train, forever, through a dreamlike land.</p> <p>Transport passengers to their destination.</p> <p>Watch the world go by.</p> <p>Listen to chilled out chiptune music.</p> <p>In Cab Ride you can drive thousands of different train routes through rolling hills, winding tunnels and weaving between the tall buildings of vast cities. You can drive the train for as long as you like. When you're ready to end your journey, hold down the left arrow key to announce the last station. Stopping at stations along the way means you can pick up and drop off passengers. Try and stop at the marker at each station for a high rating. Or don't! It's up to you.</p> <p>Cab Ride is a casual train simulation, not aiming for real world accuracy, but like a real train, it takes a while to brake. If you're overshooting stations, watch for the alert for the next station and reduce the throttle so you're ready to stop.</p> <h2>Controls</h2> <ul> <li>X - horn/start/restart the game</li> <li>C - open/close doors at station (must have stopped just in front of signal)</li> <li>Up - increase braking/decrease throttle</li> <li>Down - accelerate/increase throttle</li> <li>Left - hold down to announce the last station (will end the current journey)</li> <li>Right - turn Express mode on/off aka Screensaver Mode</li> </ul> <h2>Version history</h2> <p>v1.2</p> <ul> <li>Fixed - memory leak if you run the game for a <em>long</em> time</li> </ul> <p>v1.1</p> <ul> <li>Added - second track with train</li> <li>Added - Weather - different cloud patterns and periods of rain</li> <li>More performance fixes </li> </ul> <p>v1.0.3</p> <ul> <li>Changed - tweaked station stop ratings - slightly more forgiving and more consistent</li> <li>Changed - all green signals when you're in express mode (after first couple of stations)</li> <li>Fixed - all passengers would eventually get off if you opened the doors enough times at a single station</li> <li>Various performance improvements</li> </ul> <p>v1.0.2</p> <ul> <li>Added - pause menu sound toggle - deals with no hardware button in mobile view - may fix in a different way in future</li> <li>Added - 'very chilled' mode - no goal/help messages, no HUD other than station name messages, just driving trains - good for screenshots or screen savers (even better than what I claimed was a good screen saver mode before)</li> <li>Fixed - another way to drive through the last station (activate Express mode after announcing last station)</li> </ul> <p>v1.0.1</p> <ul> <li>Fixed - crash bug where you could drive out of the last station when in 'Express' mode</li> <li>Changed - you now have to hold down the right key for 2 seconds to enable Express mode (announcing the last stop also has a 2 second delay) - this is to prevent ending up in that mode by accident and locking the controls</li> </ul> <p>v1.0</p> <ul> <li>Initial release</li> </ul> <h2>Credits</h2> <p>Programming - Ben Jones / <a href="https://www.lexaloffle.com/bbs/?uid=12213"> @Powersaurus</a> <a href="https://twitter.com/Powersaurus">Twitter</a></p> <p>Music - Stephen 'rych-t' Jones / <a href="https://twitter.com/rych_t">Twitter</a> / <a href="https://soundcloud.com/floor-machoor">Soundcloud</a></p> <p>Based on code from the Pseudo-3D Racer tutorials by Tom Mulgrew/@Mot <a href="https://www.lexaloffle.com/bbs/?tid=35767">https://www.lexaloffle.com/bbs/?tid=35767</a> licensed under Attribution-NonCommercial-ShareAlike 4.0 International​ ​<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">https://creativecommons.org/licenses/by-nc-sa/4.0/</a>​</p> <h2>License</h2> <p>All source and assets are licensed under Attribution-NonCommercial-ShareAlike 4.0 International​ ​<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">https://creativecommons.org/licenses/by-nc-sa/4.0/</a>​</p> <h2>Pre 1.1 version</h2> <h3>v1.0.3</h3> <p> <table><tr><td> <a href="/bbs/?pid=86966#p"> <img src="/bbs/thumbs/pico8_cab_ride-5.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=86966#p"> Cab Ride</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=86966#p"> [Click to Play]</a> </td></tr></table> </p> https://www.lexaloffle.com/bbs/?tid=41332 https://www.lexaloffle.com/bbs/?tid=41332 Sat, 30 Jan 2021 16:09:12 UTC Caped Feline Arena V1.0 <p> <table><tr><td> <a href="/bbs/?pid=78599#p"> <img src="/bbs/thumbs/pico8_caped_feline_arena-4.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=78599#p"> caped_feline_arena</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=78599#p"> [Click to Play]</a> </td></tr></table> </p> <p>Finally &quot;done&quot; :) </p> <p>&gt; You awake from your rest in the void with a voice repeating in your head.<br /> &gt; It says: 'meow meow meow meow mexow' and you know what must be done:<br /> &gt; It's time to retrieve the book of Magu F'ahn.</p> <p>You're a cat, you're magical, it's you and your wand against insurmountable odds, cats, and infinite pigeons.</p> <p>A retro fps with 8 singleplayer maps and 3 &quot;botmatch&quot; maps. Select maps from main menu, all botmatch maps unlocked from the start, singleplayer maps unlock as you complete them.</p> <p>You can also play this on the PICO-8 BBS</p> <h2>Controls</h2> <ul> <li>Arrow keys - move (strafe if mouselook enabled)</li> <li>Z/C - strafe/sidestep (hold, then press left and right, unused with mouselook enabled)</li> <li>X - shoot</li> </ul> <p><strong>Note: mouselook does not work on the BBS version. Please use the pico-8 app, or <a href="https://powersaurus.itch.io/caped-feline-arena">the itch.io version of CFA</a></strong></p> <h2>Credits</h2> <ul> <li>Programming, art, sounds - Ben Jones</li> <li>Music by Steve Jones aka rych-t</li> <li>Raycasting engine based on <a href="https://lodev.org/cgtutor/raycasting.html">Lode Vandevenne's Raycasting Tutorial</a> - licensed under <a href="https://opensource.org/license/bsd-2-clause/">The 2 Clause BSD License</a></li> <li>PICO-8 heap sort by <a href="https://twitter.com/CasualEffects">Morgan McGuire</a></li> <li>Point-line/line-line collision based on 2DArray's <a href="https://demoman.net/">Gamedev tutorials</a></li> </ul> <h2>​License​</h2> <p>Source is licensed under <a href="https://opensource.org/license/bsd-2-clause/">The 2 Clause BSD License</a>.<br /> Assets are licensed under Attribution-NonCommercial-ShareAlike 4.0 International​ ​<a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">https://creativecommons.org/licenses/by-nc-sa/4.0/</a>​</p> <h2>Old bits and bobs from 2020-2021 original post</h2> <p><div><div><input type="button" value=" Show " onClick="if (this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display != '') { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = ''; this.innerText = ''; this.value = ' Hide '; } else { this.parentNode.parentNode.getElementsByTagName('div')[1].getElementsByTagName('div')[0].style.display = 'none'; this.innerText = ''; this.value = ' Show '; }"></div><div><div style="display: none;"><br /> I'm still working on this (-300- nope - <em>5</em> tokens left :D ) - let me know what you think here or on <a href="https://twitter.com/Powersaurus">my Twitter</a> - there might be bugs and/or unexplainable weirdness!</p> <p>You're a cat, you're magical, you're in a duel with the finest feline magic practitioners the realm has to offer. Grab your wand and enter the arena!</p> <h2>Controls</h2> <ul> <li>Arrow keys - move</li> <li>X - strafe/sidestep (press left and right)</li> <li>Z/C - shoot</li> </ul> <p>Use the PICO-8 menu to disable AI to wander round the maps, and to toggle overhead view.</p> <h2>What's new?</h2> <p>12 July 2020</p> <p>FIXED crash bug when dropping the quad</p> <p>11 July 2020</p> <ul> <li>ADD single player red+blue keys+doors!!!! Check single player test map for an example </li> <li>FIXED showing scoreboard upon being frogged in single player.</li> <li>No more tokens left!</li> </ul> <p>09 July 2020</p> <ul> <li>ADD light viewbob</li> <li>ADD damage indicator</li> <li>ADD new map Tower Of Confusion</li> <li>ADD basic single player map support (with sample map)</li> <li>ADD 1 second delay on scoreboard</li> <li>ADD 1 second invulnerability on respawn</li> <li>CHANGED cat AI tries to find a wand if possible/pick up your stuff after frogging</li> <li>CHANGED player movement</li> <li>CHANGED minor texture improvements</li> <li>FIXED Particles obey zbuffer</li> <li>FIXED Sounds cutting off</li> <li>FIXED Cats using incorrect palette when far away</li> </ul> <p>Since April (v early itch.io release) I have:</p> <ul> <li>Added several maps</li> <li>Rewrote chunks of the graphics for more speed and more complex geometry<br /> -- diagonal walls<br /> -- working overhang textures<br /> -- faster ceiling rendering<br /> -- tline() floors/sky<br /> -- tall ceiling indoor spaces<br /> -- doubled texture limit from 16 to 32</li> <li>Added 3 extra wands, and items</li> <li>Improved sounds</li> <li>Better AI</li> <li>Better controls</li> </ul> <h2>Still to do</h2> <ul> <li>More maps</li> <li>Map editing guide</li> <li>More sounds</li> <li>More textures<br /> </div></div></div></li> </ul> https://www.lexaloffle.com/bbs/?tid=38587 https://www.lexaloffle.com/bbs/?tid=38587 Sun, 28 Jun 2020 05:12:20 UTC tline Rotation Demo <p> <table><tr><td> <a href="/bbs/?pid=74994#p"> <img src="/bbs/thumbs/pico8_tline_rotation_demo-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=74994#p"> tline_rotation_demo</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=74994#p"> [Click to Play]</a> </td></tr></table> </p> <p>I was excited by the new tline function in 0.2.0, immediately tried to plug it into my project and ran into problems.</p> <p>I made this demo to break down rotating the map to a fairly minimal program. I've added comments to explain the different data points and what they achieve when plugged into tline.</p> <p>The demo shows a rotated 2D view into the map.</p> <p>Left and right keys move the view. X toggles the unrotated map to show the direction of the rotated view relative to the map.</p> <p>I hope this is useful to you! :)</p> https://www.lexaloffle.com/bbs/?tid=37454 https://www.lexaloffle.com/bbs/?tid=37454 Sun, 19 Apr 2020 18:16:22 UTC ROAD REX <p> <table><tr><td> <a href="/bbs/?pid=65223#p"> <img src="/bbs/thumbs/pico8_road_rex-0.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=65223#p"> road_rex</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=65223#p"> [Click to Play]</a> </td></tr></table> </p> <p>ROAD REX<br /> After a day's work Road Rex just wants to get home like everyone else. Road Rex is a giant dinosaur with laser eye beams.</p> <p>Get home as fast as you can! Beat your arch-rival, the quick and messy Blue Dinosaur (tm). Stop tv traffic choppers from getting footage of the mayhem you cause. Try not to get a speeding ticket from a speed camera (speed limit is 70mph in the UK) - but if you do, make sure you do it in style for extra points. Shove cars out the way and spill delicious lorry loads of kebabs, shoes and beans. Try to exit the motorway in the left lane and don't get lost!</p> <p>Controls</p> <p>Arrow keys right and left - accelerate and decelerate<br /> Arrow keys up and down - switch lanes, aim lasers<br /> X - LASERS<br /> Z/C - charge jump (release to jump)<br /> Credits</p> <p>By Ben Jones (Powersaurus on Twitter)</p> https://www.lexaloffle.com/bbs/?tid=34526 https://www.lexaloffle.com/bbs/?tid=34526 Sat, 15 Jun 2019 21:54:51 UTC Parking Masters <p> <table><tr><td> <a href="/bbs/?pid=47401#p"> <img src="/bbs/thumbs/pico47475.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=47401#p"> Parking Masters</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=47401#p"> [Click to Play]</a> </td></tr></table> </p> <p>Parking Masters is a game I made over a weekend for a friend's birthday. Said friend is fond of driving and once took a photo of his car parked very close to another which has become a running gag (many ridiculous photoshops).</p> <p>I have turned the photo into a little arcade game/&quot;very serious&quot; simulation of parking in a manual car. I thought it would be a fun thing to do, turn a photo into some sprites for a PICO-8 game. Pleased with the results - photo-realistic action!</p> <p><em>Controls</em></p> <p>Up - gas pedal<br /> Left and right - shift gear<br /> X - Clutch<br /> C - Brake</p> <p>Park as quickly as you can, as close as you can! Try and avoid stalling and also from shunting the other car!</p> https://www.lexaloffle.com/bbs/?tid=30450 https://www.lexaloffle.com/bbs/?tid=30450 Fri, 15 Dec 2017 10:07:58 UTC The Wizard Pig <p> <table><tr><td> <a href="/bbs/?pid=39703#p"> <img src="/bbs/thumbs/pico41233.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=39703#p"> The Wizard Pig</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=39703#p"> [Click to Play]</a> </td></tr></table> </p> <p><strong>Aim</strong><br /> Score 10 belief points by keeping your followers happy. They like trees and plants, and eating tasty corn. They don't like swamps, being stuck in one place or things being on fire. You can also win by making your opponent's (Omnicow) followers unhappy.</p> <p><strong>Controls</strong></p> <p>Arrow keys - move<br /> Z - use power<br /> X - change power</p> <p><strong>Story</strong></p> <p>Once, Henry was just a regular pig. He dreamed of being a magnificent wizard who was popular and cool. Through the sheer force of his own will and the belief of the nearby villagers, who saw promise in him - he became a giant flying head with reality bending powers. Summoning a mountain from the earth, he marvelled at his power.</p> <p>&quot;I will use my powers for good, and make my followers happy, with lovely forests and magical instant-corn from the fields&quot;</p> <p>As he said this, the earth shook and a giant cow's head appeared from behind the mountain he had just conjured, spitting fire from its eyes&quot;</p> <p>&quot;Or maybe I'll just ruin someone else's day&quot;</p> <p><strong>Powers</strong></p> <p>Raise power (yellow mana) raise the landscape. Followers cannot walk up steep slopes, and any upward slope will slow them down<br /> Lower power (yellow mana) lower the landscape<br /> Fire power (red mana) Create fireballs from your eyes. Destroys terrain and foliage<br /> Forest power (green mana) Puts out fire and creates new foliage. Cleans out swampy land.<br /> Rain power (blue mana) Puts out fire and cultivates fields that yield follower-pleasing corn. Too much rain makes the land swampy though.</p> https://www.lexaloffle.com/bbs/?tid=29180 https://www.lexaloffle.com/bbs/?tid=29180 Sat, 15 Apr 2017 18:28:37 UTC 2D Terrain Demo <p> <table><tr><td> <a href="/bbs/?pid=38013#p"> <img src="/bbs/thumbs/pico38011.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=38013#p"> 2D Terrain Demo 1.0</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=38013#p"> [Click to Play]</a> </td></tr></table> </p> <p>Demo cartridge for creating 2D terrain. I'm using this for my own project but thought it would be useful for others. If you think you'll find it useful, please use in your projects. :) For more information see here - <a href="https://medium.com/@Powersaurus/journey-into-the-hills-part-2-8a209905d3de">https://medium.com/@Powersaurus/journey-into-the-hills-part-2-8a209905d3de</a></p> <p>Controls:</p> <p>X - Regenerate landscape<br /> Left/Right - change graphics mode<br /> Up/Down - change amount of randomness</p> https://www.lexaloffle.com/bbs/?tid=28925 https://www.lexaloffle.com/bbs/?tid=28925 Fri, 03 Mar 2017 13:17:16 UTC Amateur Cat High Five Challenge <p> <table><tr><td> <a href="/bbs/?pid=37520#p"> <img src="/bbs/thumbs/pico37519.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=37520#p"> Amateur Cat High Five Challenge 1.1</a><br><br> by <a href="/bbs/?uid=12213"> Powersaurus</a> <br><br><br> <a href="/bbs/?pid=37520#p"> [Click to Play]</a> </td></tr></table> </p> <p>Hi all!</p> <p>This is my first finished PICO-8 cart.</p> <p>Its an arcade game where you high five and fist bump cats.</p> <p>High five the cats with your hand moving at speed for more points. Build up a combo to get a chance to pull off a secret handshake.</p> <p>Controls:</p> <p>Arrow keys - move hand<br /> X - Switch arm position<br /> C - Switch between open hand and fist</p> <p>This is version 1.1 - I tweaked the hit detection for high fives and added a tutorial skill level.</p> <p>Hope you enjoy it! :)</p> https://www.lexaloffle.com/bbs/?tid=28839 https://www.lexaloffle.com/bbs/?tid=28839 Thu, 16 Feb 2017 12:19:38 UTC