someone [Lexaloffle Blog Feed]https://www.lexaloffle.com/bbs/?uid=9930 Stop at Nothing <p> <table><tr><td> <a href="/bbs/?pid=68628#p"> <img src="/bbs/thumbs/pico8_stopatnothing-2.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=68628#p"> Stop at Nothing 1.1</a><br><br> by <a href="/bbs/?uid=9930"> someone</a> <br><br><br> <a href="/bbs/?pid=68628#p"> [Click to Play]</a> </td></tr></table> </p> <p>Arrow keys: Select direction, Move cursor<br /> Z: Commit move, Next level<br /> X: Select marker, Cancel move, Undo </p> <p>Stop at Nothing is a block-sliding puzzle game. Each level starts with a block on each start point, and ends with nothing. Move the blocks to the goal tiles to remove them.</p> <p>Stop at Nothing is a block-unsliding puzzle game. Each anti-level starts with nothing, and ends with a block on each start point. Unmove the blocks from the goal tiles to unremove them.</p> <p>Made in 72 hours for Ludum Dare 45: <a href="https://ldjam.com/events/ludum-dare/45/stop-at-nothing">https://ldjam.com/events/ludum-dare/45/stop-at-nothing</a></p> <p>Update 1.1: Fixed minor graphical bug</p> https://www.lexaloffle.com/bbs/?tid=35604 https://www.lexaloffle.com/bbs/?tid=35604 Mon, 07 Oct 2019 21:42:53 UTC Mega Go <p> <table><tr><td> <a href="/bbs/?pid=59358#p"> <img src="/bbs/thumbs/pico59357.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=59358#p"> Mega Go</a><br><br> by <a href="/bbs/?uid=9930"> someone</a> <br><br><br> <a href="/bbs/?pid=59358#p"> [Click to Play]</a> </td></tr></table> </p> <p>You've heard of Go, the classic board game with two players, but what about Mega Go?!</p> <p>Here are the standard rules of Go:</p> <ul> <li>Players take turns placing tokens on the board</li> <li>If a group of one color is completely surrounded, all the tokens in it are removed</li> <li>A move is illegal if it would result in the previous board position being matched (Ko)</li> </ul> <p>The version shown here uses the following variant on the rules:</p> <ul> <li>The board is, like, huge</li> <li>There are ten players instead of two</li> <li>no Ko rule, 'cause I'm too lazy to implement it and it's very unlikely to ever happen</li> </ul> <p>The ten CPU players take turns playing onto random empty spaces on the board. The version shown here partitions the board into 36 smaller 19*19 boards (plus some extra on the edges).</p> <p>Feel free to experiment with the parameters on the first tab to try different board configurations or different numbers of players. I found an odd phenomenon where, on a blank 128*128 board with two players, the second player would almost always end up filling the board. See what other interesting things you can find!</p> https://www.lexaloffle.com/bbs/?tid=32324 https://www.lexaloffle.com/bbs/?tid=32324 Mon, 26 Nov 2018 12:06:23 UTC Picopack <p> <table><tr><td> <a href="/bbs/?pid=59241#p"> <img src="/bbs/thumbs/pico59244.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=59241#p"> Picopack 0.1.3</a><br><br> by <a href="/bbs/?uid=9930"> someone</a> <br><br><br> <a href="/bbs/?pid=59241#p"> [Click to Play]</a> </td></tr></table> </p> <p>A demake of a game I made for LDjam #48, called <a href="https://ishanpm.github.io/polypack">Polypack</a>.</p> <p>Fill the grid with polyominoes! When no more pieces can be placed, press Z to switch to the next board. Every tile that you left empty will be permanently blocked. Try to place as many pieces as possible.</p> <p>Arrows to move, Z to place a tile, X to rotate.</p> <p>Still to do:</p> <ul> <li>Main menu</li> <li>Score</li> <li>SFX</li> <li>Hold queue</li> <li>Change board to 10x10?</li> </ul> <p>Hotfix 0.1.1: Fixed a bug where single tile pieces would never spawn<br /> Hotfix 0.1.2: Fixed it FOR REAL, this time<br /> Hotfix 0.1.3: Fixed incorrect blocker texture introduced in the last update... I should really test my code</p> https://www.lexaloffle.com/bbs/?tid=32303 https://www.lexaloffle.com/bbs/?tid=32303 Tue, 20 Nov 2018 20:18:12 UTC Pseudo-scripting <p> <table><tr><td> <a href="/bbs/?pid=11305#p"> <img src="/bbs/thumbs/vox11304.png" style="height:256px"></a> </td><td width=10></td><td valign=top> <a href="/bbs/?pid=11305#p"> Pseudo-scripting 1</a><br><br> by <a href="/bbs/?uid=9930"> someone</a> <br><br><br> <a href="/bbs/?pid=11305#p"> [Click to Play]</a> </td></tr></table> </p> <p>So according to a thread I read five seconds ago, Lua script is coming soon. BUT WHAT IF IT ISN'T SOON ENOUGH?!?! (Or maybe that wasn't what I read.)</p> <p>Anyway, here is a way to add simple logic in Voxatron levels, within a single object, (ab)using the Priority and Modifier mechanics.</p> <p>The first demo shows how Priority works. Each rectangle represents a triggerable object (such as an animation or a modifier). The white objects have their duration set to 5, and the black objects have their duration set to 0 (indefinite). They each have their priority written on them. When you activate one, it 'shadows' all of the ones beneath it, preventing them from activating or activating the one set as 'next'. The indefinite ones can still be turned off by activating a higher priority one. This can be used to create things like S/R latches.</p> <p>By the way, the diagram is one object. It receives input from the buttons via IS:OBJ_ID:##:M_STATE:SHOT.</p> <p>Next is a demo of Modifiers, represented by hollow rectangles. Like normal objects, they can be forced off by shadowing them. They will also disable all of their children while they are disabled. The red object's trigger is set to PARENT:ACTIVE, so it will always be active while the modifier is. You can use this to shadow other objects or have multiple 'next' objects for one modifier. The children also won't send or receive 'next' triggers while their parent is disabled, as shown with the one at the bottom.</p> <p>Using these, you can build complicated networks, like the one for this passcode door. Here's how it works:</p> <ul> <li> <p>The object at the top resets the lock using three children (not pictured) that are set to IS:PARENT:TIME = 1, so that they'll activate once, setting the state triggers appropriately.</p> </li> <li> <p>One object, unlike the others, is not set to reset on activation. It will only activate once, triggering the reset object to initialize the lock. (also not pictured)</p> </li> <li> <p>The state triggers at the right are S/R latches that each have their own group. When active, they shadow the button triggers so that they don't activate erroneously.</p> </li> <li> <p>The buttons each trigger 3 objects, 2 of which are shadowed. The unshadowed one determines the action that will be performed: Either activating the next row, or resetting the lock.</p> </li> <li>When the last trigger is activated, it will disable the lock, play a sound, and use an animation to clear a hole in the wall.</li> </ul> <p>And that's how you make mechanisms out of the bits and bobs lying around in Voxatron! Maybe, to prove that it is Turing-Complete, I'll build.. A TURING MACHINE! Wish me luck...</p> https://www.lexaloffle.com/bbs/?tid=2076 https://www.lexaloffle.com/bbs/?tid=2076 Tue, 16 Jun 2015 16:41:29 UTC