Recent posts

#11
General Discussion / Re: German meetup in Kassel, F...
Last post by WillLem - August 28, 2026, 05:11:02 AM
I would absolutely love to visit Germany and meet everybody. If I do manage to come over in Feb, I'll likely arrange my own accomodation so as not to overwhelm Simon with guests.

@Simon - I believe you live on a mountain! Are there relatively inexpensive hotels/BnBs nearby?
#12
Live Event Scheduling / Re: kaywhyn streams NepsterLix...
Last post by kaywhyn - August 28, 2026, 04:05:13 AM
All rightie, next NepsterLix stream will be scheduled for Friday August 28, 2026 at 5PM PST (00:00 UTC). Hopefully this will be fine, as I'm trying to accommodate both Armani and Flopsy (and of course Simon if he's able to), who weren't able to make my stream last time. Especially the latter, as I know how much he loves Lix, and I'm more than happy to have him be a part of my future Lix streams from now on :thumbsup: He also gave me advice back either the end of 2020 or early 2021 to consider looking at Lix content if I'm ever running out of NL content to play. Well, that time has pretty much finally come for me, as I'm now more or less out of NL content to play. So, time for me to check out all the wonderful Lix content! :thumbsup:

As usual, I unfortunately can generally only stream in the late afternoon, by which point it's generally not a good time for European residents, as it would be midnight or past when it's 5PM PST (my time zone). However, given that tomorrow is the weekend, I think this should be fine, as I think we're generally up late on those days anyway instead of sleeping in or whatnot :laugh:

See you tomorrow if you're able to make my NepsterLix stream. No worries if you're not able to make it at the very start, just come in whenever you're able to at any time the stream is still going! :thumbsup:   
#13
Lemmings Main / Re: How to play Lemmings (1991...
Last post by grams88 - August 28, 2026, 12:16:33 AM
Hi everyone

That sounds like a good idea WillLem, I remember there being a section of the community that were into the traditional Classic mode style lemmings.
#14
Lemmings Main / Re: Thoughts on "3D lemmings"?
Last post by grams88 - August 28, 2026, 12:03:15 AM
I keep having having Dreams and In the dream I'm asking my cousin, how far did you get in 3d Lemmings, I knew in the dream that he never completed lemmings 3d it before, well maybe in real life he has but not in the dream.

I quite liked Lemmings 3d and recommend it to other fans of lemmings, it is a bit tricky getting used to the camera but once you know the basics with the camera controls, it's a really fun game.

I completed the game a while back.  :thumbsup:
#15
Non-Lemmings Projects / Re: Pushover
Last post by grams88 - August 27, 2026, 11:58:44 PM
Pushover is a really great game and very fun puzzle game, I played the atari st version of the game and I remember the music really well.  My dad and brother really like Pushover as well.

Good on you for working on that one VorticonCmdr

#16
General Discussion / Re: German meetup in Kassel, F...
Last post by IchoTolot - August 27, 2026, 04:01:26 PM
That reminds me: I am probably away on the weekend of the 6.3.2027 as most likely a wedding where I am invited will take place there.
#17
General Discussion / Re: German meetup in Kassel, F...
Last post by Flopsy - August 27, 2026, 11:55:45 AM
Quote from: Simon on August 19, 2026, 07:44:02 PMHappy to have you here!

I can provide full sleeping gear (airbed, sheets, pillow, blanket) for up to 2 guests in the living room. It makes sense to offer this option to guests from the UK first, to allow you to travel light. I recommend that extra guests book a hotel, but I can host a 3rd guest at my place as long as he brings full sleeping gear himself.

-- Simon

Really appreciate the kind gesture to accommodate us Simon.

Just bumping the topic too. See if there's anymore interest
#18
General Discussion / Lemmings Forums UK Meetup Wint...
Last post by Flopsy - August 27, 2026, 11:43:30 AM
It's only been a few weeks since the previous meet up but I thought it is probably time to put a topic up so we can plan the next one.

It was discussed that we would most likely be venturing south of the UK this time and we'll not be meeting up in Leeds this time.
Bristol has been suggested as a good meeting up spot by Will and hrb264.

Anyone who is able to get to the meet up is welcome even if you've never been to one before. The more the merrier.

If we decide on Bristol....

Since it might be far for some of us to travel to Bristol (140 miles from me in Mansfield), this could be considered to be a 2 day meetup for some. I'm certainly going to be staying overnight myself if this goes ahead. We should liaise about what hotel we will be staying at if a significant number of us need hotels. (like when me, Simon and Will went to Dundee, we booked into the same hotel so we had fun in the evenings on that trip, it just makes the meet up more enjoyable between days!).

Like with the previous meet up, I'm willing to offer to pick forumers up who are en route between Nottingham and Bristol, likewise if you can make it from up north to Nottingham for a reasonable time, I can pick you up from the railway station before we head south (like I helped hrb264 at the previous Leeds meet up).
The only thing is I will be staying overnight most likely so you'll most likely have to stay overnight if you want a lift back.
Let me know in this topic or send me a PM on the forums if you'd like a lift.

When?

I'm putting this topic up early so we can start planning it but I'm probably thinking of Oct/early Nov time for this. It also gives people plenty of notice to sort out accomodation/train travel and get them cheaper.

I'd like it to be over a weekend Sat/Sun, I'd be willing to go for a 3rd day also and include Monday or the Friday before if there's interest in that. That would require me to get time off work now as I'm on a Mon-Fri schedule now.
Pretty much any weekend would be good for me, I'm guaranteed to not be working.

So let me know what weekends are best for you. If weekends are not great, let me know also and we'll try and accommodate everyone best we can.

Even if you don't know about your availability, just let me know if you're interested in coming!  :thumbsup:
#19
Game Bugs & Suggestions / Re: [+][BUG][PL] Level Select ...
Last post by Simon - August 27, 2026, 04:48:46 AM
Hunch: Do the event handlers (callback functions) for on-click run in separate threads? Or somehow else separated from the main logic? And do they accomplish a lot of work by loading the level during the callback? Then: I'd try to make the event handlers lightweight. They should merely notify the main logic that filename/level X should be loaded. Later, the main logic opens the file. We can't get a race bug if only one thread ever opens files ...

... which means progess if these assumptions hold:
  • Avoiding such a race will actually fix the symptom.
  • Windows file I/O, or your UI library, can have such races in the first place.

I've written all the Lix UI myself (no UI library, only Allegro for the graphical primitives) and the UI runs single-threaded in the main thread. I can't run into a threading bug by design. The downside is that everything fast/parallelized/coroutine-like needs explicit and hand-written support for this in the UI widget that wants to parallelize. It's rare enough (only the level search) that it was fine to implement a coroutine by hand: Load level metadata from disk for several levels until N milliseconds have passed, then memorize progress and stop, and when the UI calls us next tick, load some more.

Level metadata loading is opening file, reading line-by-line until we have found author and title, and then closing it immediately. It duplicates part of the normal level loading, but that's okay, it's a speed hack. Windows file I/O still has to open the file in both cases for reading, I can't get around that in a level tree of loose files.

More details when I have more time.

-- Simon
#20
Game Bugs & Suggestions / Re: [DISC] Make 'Replay Mode' ...
Last post by Simon - August 27, 2026, 04:28:13 AM
Quote from: WillLem on August 27, 2026, 04:06:01 AMUsers can now set Insert as the default mode
advanced users can set this as their default mode

Hmm, defaulting to non-insert mode is in good line with the findings.

Consider to complement this with an option to allow airclick to cut the replay during insert mode. That's what I've missed the most along with starting in insert mode.

You'll essentially have the same 3 independent bool options as Lix has: Start in insert mode? Airclicks cut in regular mode? Airclicks cut in insert mode? This is the least annoying set that I found so far. I don't expect this design to live forever (3 bools is 8 variants), and I really want to do better than this. But it's the best I see for now.



If we disable airclick, should clicking the R in the panel cancel replay? I.e., should that R always function as a cancel-replay button? The UI doesn't communitcate that, but it can still react to clicks. Hunch is yes, but it really leads back to the same ancient question of how to make replay canceling explicit and easy to discover.

-- Simon