Recent posts

#11
General Discussion / Re: General Comings and Goings
Last post by GigaLem - Today at 11:55:06 AM
I'm gonna be frank, I hate the my interest and inspiration in Lemmings has been at an all time low. I've haven't touched NeoLemmix in weeks, I haven't made a concept for any project since I made one part of a level idea. And my mind has been very empty in terms of level design ideas.

I've been prioritizing videos as of late simply because I've lost my motivation to make levels simply because I lost my flame after once having it. My Burnout project fizzled out rather quickly. And Millas and QSML has been at a stand still because of it. I've had such a bad month and April hasn't been going better. I'm not in the head space to create and I just feel like I just only merely exist, nothing more or less. I just want finish something that should've been finished years ago and now im back to were I was back in 2023. A lot of an existing projects, with no ideas, motivation or steam to keep it going.

I'm sorry for dragging my feet but if I was Sisyphus in this situation, the bolder would've crushed me at this rate.
#12
NeoLemmix Levels / Re: [NeoLemmix] Oh Wow! More N...
Last post by Mobiethian - Today at 10:03:16 AM
Howdy folks! Guess what? We now have a 2.0 release to bring to you! This version has backroute fixes and additional graphics added to most of the levels. :thumbsup:

Download here: https://drive.google.com/file/d/1I_lmWZM_VZyi_GvzU9IEJ23canSgyJWh/view?usp=sharing

The download link has been replaced at the start of the topic as well. Have fun! Thanks for playing!

Note: If more backroutes are found, feel free to send me a PM and I'll see what can be done.
#13
SuperLemmix / Re: [RELEASE] SuperLemmix Leve...
Last post by roltemurto - Today at 09:44:07 AM
Congratulations on the 3.1 Update!!!
Personally I think it's a work of art!

Will fully utilize it in the following days.
But even at a first glance it looks so powerful.

I immediately tried the pieces list and it works like a charm with a level consisting of 200+ pieces. It is SO useful especially with non-repeated, uniquely named custom pieces, it is such a dream!

You cared, you listened and you gifted. I can only hope that you are enjoying as well, the fruits of your love as much as I do.
Sorry for my belated response, had been away from my home and my pc for the past few days and I JUST noticed your release, looking at the github commits.

May life put a smile on your face. Have a wonderful day!
#14
Lemmini / Re: [DISC] Lemmini bit handlin...
Last post by WillLem - Today at 08:02:03 AM
And, this should now be fully fixed. We can now prioritise objects by type rather than individually.

So, all OWWs have equal priority, and lower priority than all traps, which have lower priority than all force fields/blockers, which have lower priority than exits. This is the list in full:

    static final int PRIORITY_GADGET_MASK =
        Stencil.MSK_EXIT
          | Stencil.MSK_BLOCKER
          | Stencil.MSK_TURN
          | Stencil.MSK_TRAP_FIRE
          | Stencil.MSK_TRAP_REMOVE
          | Stencil.MSK_TRAP_LIQUID
          | Stencil.MSK_ONE_WAY;

This additional layer of abstraction is the key; we now have fully working object prioritisation in RetroLemmini.

Fixed in RLPlayer commit 1285213.
#15
Lemmini / Re: [DISC] Lemmini bit handlin...
Last post by WillLem - Today at 07:29:58 AM
So, I'm a step closer to having this fixed.

It turns out that OWWs (and indeed any objects) were never truly 'overlapping', at least not in the sense that their triggers were all effective at the same time. Lemmini has always had index-based prioritisation for objects. So, whichever object was drawn last occupies any given trigger pixel.

For instance, in previous versions of Lemmini, laying a OWW over a fire object will override the fire object.

I wanted to fix this in RetroLemmini by hard-coding the object prioritisation, with Exits being at the highest priority. This was all well and good apart from the fact that each individual OWW object had to be prioritised separately, which is why any levels using overlapping OWWs were suddenly broken: RetroLemmini was pre-selecting which OWW object should be at the highest priorty, regardless of draw order (which is what the levels relied upon previously).

I've implemented a fix in which Exits are now the only object which is prioritised over all others (RLPlayer commit d8ae78d). All other objects are once again prioritised by draw order. However, I'd like to see if I can refine this further. It seems silly that a OWW overlapping a fire or water object should effectively nullify the fire or water.

Further work is needed.
#16
Lemmini / Re: [DISC] Lemmini bit handlin...
Last post by WillLem - Today at 05:17:25 AM
OK... frustratingly, the above fix actually didn't work after all. I've now reverted it.

So, we can overlap OWWs again, but there is some wierd stuff happening when they overlap. I'll come back to this later.
#17
NeoLemmix Levels / Re: Yippee! More Lemmings [Dif...
Last post by JawaJuice - April 13, 2026, 07:56:14 PM
Hey, good to hear from you, NieSch - and to meet you! :thumbsup: I wasn't really expecting a reply tbh, as you haven't been active for a while it seems. Just watched your Tricky 2 replay, and yes, I can see why'd you consider that one a 'nasty backroute' haha. Unlike mine, your solution is very elegant - especially the use of the shimmier-blocker turnaround; always a neat mechanic. I actually decided to return to Yippee! after playing through and enjoying all your levels in the 'Levels By NieSch' topic. :) I've moved onto Long Live Lemmings! now but it's been fairly slow progress from the get-go; even the Fun rank wasn't a doddle! I'm barely beyond Tricky and there've already been a couple of levels that had me tearing my hair out lol - usually ones involving sliders (can't stand those critters!). Contrary to what seems to be the prevalent opinion on the pack topic, LLL is generally harder than YML for my money. Still, hope to have some more replays for you there before too long as well!

#18
NeoLemmix Levels / Re: Yippee! More Lemmings [Dif...
Last post by NieSch - April 13, 2026, 06:55:02 PM
Congratulations on finishing the pack, JawaJuice! It's nice to still receive feedback and see replays after so many years. You found many clever alternative solutions. The only one that is a truly nasty backroute is your solution for "Signs to Guide You". (My intended solution is in the first post.) But that one is cleverly found too. Well done! :thumbsup:
#19
Lemmini / Re: [✓][SUG] Prioritise exits ...
Last post by WillLem - April 13, 2026, 02:49:44 AM
OK, I've had to revert allowing overlapping OWWs, at least for now.

The new bit handling system requires certain mask types to bypass prioritisation, and in order to preserve OWW overlapping behaviour from previous versions of Lemmini, I added OWW objects to the bypass list.

Doing so unfortunately created a side effect where terrain with overlapping OWWs would sometimes not be erased (correct), but the lem could still move through it (obviously not correct). I'm not sure exactly why this was happening, but removing OWW objects from the bypass list instantly restores good behaviour.

This fix does mean that it's once again not possible to overlap OWWs in RetroLemmini and have them all be effective. Instead, a OWW can only be guaranteed effective wherever it doesn't overlap with another. In fact, the built-in priority is (highest to lowest): Up > Down > Left > Right.

Any existing Lemmini levels which use overlapping OWWs to create Bash/Mine-proof terrain will therefore need to use individual Upwards-facing OWWs, rather than overlapping Left and Right OWWs, to get essentially the same effect (that is, if they're ported to RetroLemmini).

Overall, I think this is correct engine behaviour. Overlapping Left and Right to create a makeshift "Up" OWW, whilst ingenious, looks messy and shouldn't be necessary. It can also be confusing to players, who wouldn't necessarily be sure how the setup should be interpreted. Whilst in Lemmini it meant that Bashing/Mining in either direction was not possible, it would be equally reasonable to assume that the OWWs would cancel each other out.

So... let's remove the doubt, restore the ability to prioritise engine-side, and ensure that levels look less messy and are easier to interpret at first glance.

I'll supplement this fix with the addition of Upwards & Downwards-facing OWWs to all of the OG styles in due course. Any levels which require this effect will therefore have a purpose-specific object at the ready.

EDIT: Commit dropped.
#20
Lemmini / Re: [✓][BUG][PHY] Miners step ...
Last post by WillLem - April 13, 2026, 02:49:02 AM
In addition to the above, another similar bug has had to be addressed. I've posted  here regarding this one.