Author Topic: Replay Insert Mode ("blue R") silently overwrites: Decision?  (Read 2575 times)

0 Members and 1 Guest are viewing this topic.

Offline Simon

  • Administrator
  • Posts: 3994
    • View Profile
    • Lix
Hi,

Replay Insert Mode ("blue R") silently overwrites

namida, you closed the original topic, but you've never declared this fixed nor wontfix.

You consider this data loss. I agree.

You wrote that don't want elaborate fixes or physics changes; fine with me. WillLem offered help, you haven't replied; also fine with me, I assume you'll find something reasonable yourself.

Considering that you care about the data loss, you should at least chose one of the un-elaborate resolutions:
  • Refuse all same-frame assignments.
  • Refuse only to different lemming. Allow overwriting same lemming.
  • Allow noisy overwriting, i.e., tell the player that he lost his old data.
  • Allow silent overwriting and let people run into unnoticed data loss.
-- Simon

Offline namida

  • Administrator
  • Posts: 12513
    • View Profile
    • NeoLemmix Website
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #1 on: July 25, 2024, 10:15:01 pm »
Quote
It pretty much comes down to either "keep as is" or "preserve the original assignment instead", possibly with some added visual and/or audio feedback when the collision occurs.

This was the last thing I said on the matter. Would people prefer the "preserve the original assignment" behavior? Does the advantage of this outweigh the added hassle of overwriting such assignments (ie: you must either remove them with the replay editor, or cut the replay off at an earlier point than the assignment - the latter in particular likely undesirable if Replay Insert Mode is being used in the first place).
My projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)
Non-Lemmings: Commander Keen: Galaxy Reimagined (a Commander Keen fangame)

Offline Simon

  • Administrator
  • Posts: 3994
    • View Profile
    • Lix
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #2 on: July 25, 2024, 10:29:27 pm »
How is hassle added in this case? Do you have a workflow that relies on the silent overwriting?

I imagine that nobody, when he enters replay insert mode, ever wants to implicitly overwrite to some different far-away lemming. The mere possibility of this accident feels nasty and murky, and was the reason for making the first topic. Your answer makes me now believe that you want the implicit overwrite for some workflow.

Anyway, to answer your question directly: For me, cutting the assignment some other way is vastly preferable over the silent overwrite to different lemmings. I don't mind explicitly cutting assignments in a different way.

-- Simon

Offline namida

  • Administrator
  • Posts: 12513
    • View Profile
    • NeoLemmix Website
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #3 on: July 25, 2024, 11:22:13 pm »
Ah, I was mostly thinking about the same lemming. Yeah, needing to overwrite specifically on the same frame for a different lemming is a rare enough case.

"If in replay insert mode, and a skill assignment is attempted that would result in overwriting an assignment to a different lemming, prevent that assignment. Retain existing behavior in the case of assignments to the same lemming, as well as when not in insert mode."

Does this sound good? Should a single physics update still be performed when the assignment is prevented for this reason (as would happen if it were successful)? (I should probably double check what happens with an attempt to make an invalid assignment (eg. assigning a builder to a blocker), and keep consistency with that.)
My projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)
Non-Lemmings: Commander Keen: Galaxy Reimagined (a Commander Keen fangame)

Offline Simon

  • Administrator
  • Posts: 3994
    • View Profile
    • Lix
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #4 on: July 26, 2024, 12:25:03 am »
"If in replay insert mode, and a skill assignment is attempted that would result in overwriting an assignment to a different lemming, prevent that assignment.

Sounds good!

Quote
Retain existing behavior in the case of assignments to the same lemming,

The existing behavior is: Silently overwrite the next-frame-same-lemming assignment. Yes, keep this. I would be surprised if somebody wants to keep the old assignment here.

In addition, I recommend to remove all future assignments to this same lemming. They'll all be out of sync. They'll even be of sync when one of the two assignments (the overwriting one or the overwritten one) was a permanent ability. The rare exception that doesn't desync is overwriting a permanent ability with a different permanent ability, and this sounds too rare to cater.

This will then be closest to Lix, and I like it like this in Lix, but I may well be biased. Prod more people for opinions.

Quote
as well as when not in insert mode."

The existing behavior is: Cut all future, then append the assignment. Yes, that remains the expected behavior in normal mode, i.e., the mode that isn't insert mode.

Quote
Should a single physics update still be performed when the assignment is prevented for this reason (as would happen if it were successful)?

Interesting. I never had to solve this before, but NL needs a design for this.

First hunch without sleeping over it: Don't advance. On successful assignments, NL advances once. Now, NL refused the assignment, and the easiest feedback is to refuse to advance, too. The feedback won't indicate what exactly is wrong, but you be the judge on how much UI work you want to invest. More is better but will go against your grain.

I'll sleep over it.

Quote
(I should probably double check what happens with an attempt to make an invalid assignment (eg. assigning a builder to a blocker), and keep consistency with that.)

Yes, look at what you do on disallowed assignment attempts, and make the two consistent. First hunch without sleeping: Neither should advance.

-- Simon

Offline WillLem

  • Posts: 3617
  • Unity isn't sameness, it's togetherness
    • View Profile
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #5 on: July 26, 2024, 03:50:47 am »
FWIW, I added "prevent overwriting existing assignments when in Replay Insert mode" in SLX (along with the Assign Fail sound to provide auditory feedback) quite early on in development, and it's vastly preferable behaviour.

This commit prevents overwriting; a function is added to check for any replay assignment on the current frame (excluding RR changes) and deployed when attempting a new assignment.

@namida The Assign Fail sound, if you want it, is spread across multiple commits because it was fairly tricky to implement (partly due to getting the hang of the complex assignment procedures, partly due to the existence of highlit lemmings). It's been thoroughly tested and a number of bugs have been fixed, so I'd say it's a stable feature as it currently stands. It definitely improves the gameplay, and is worth the effort. If you want me to do a PR for this I'd be happy to do it, but it might take some time to gather everything together so I won't go ahead with that unless you specifically express interest in adding this feature.

Offline namida

  • Administrator
  • Posts: 12513
    • View Profile
    • NeoLemmix Website
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #6 on: July 27, 2024, 06:51:48 am »
Sure, that sounds good.

Does it have an exception when the new assignment is to the same lemming?
My projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)
Non-Lemmings: Commander Keen: Galaxy Reimagined (a Commander Keen fangame)

Offline WillLem

  • Posts: 3617
  • Unity isn't sameness, it's togetherness
    • View Profile
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #7 on: July 29, 2024, 12:05:09 am »
Sure, that sounds good.

Cool, I'll get a PR sorted soon and send it over.

Does it have an exception when the new assignment is to the same lemming?

Currently, no: the original assignment is always preferred. I could look at updating this - do we think the lem should always accept the new assignment?

For: 1) The player may wish to change the original assignment on the same frame.

Against: 1) The player may wish to preserve the original assignment and apply the new one; if this is the case, the new assignment must take place on a different frame anyway, 2) The player may not realise that there is already an assignment to the current lemming on the current frame and accidentally overwrite (which is exactly what this feature is aiming to avoid), 3) If the player does want to change the original assignment, they can delete it using the Replay Editor if necessary.

I probably lean more towards preserving the original assignment, even for the same lemming.

Offline namida

  • Administrator
  • Posts: 12513
    • View Profile
    • NeoLemmix Website
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #8 on: July 29, 2024, 01:23:53 am »
If they overwrite an assignment to the same lemming, it's going to be noticable pretty quickly (and quite possibly intentional). Overwriting an assignment to a different lemming is far more subtle.
My projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)
Non-Lemmings: Commander Keen: Galaxy Reimagined (a Commander Keen fangame)

Offline WillLem

  • Posts: 3617
  • Unity isn't sameness, it's togetherness
    • View Profile
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #9 on: July 29, 2024, 04:46:46 pm »
Honestly unsure which way to go on this. I’ll send the PR with “preserve all existing assignments” behaviour first, maybe we can test in an RC and see what people think. If consensus is that it’s worth changing it to “always overwrite same lem”, then I’ll figure it out at that point. It should be easy enough to do, but I’d honestly rather get a bit more feedback before going ahead with it (or not).

Offline namida

  • Administrator
  • Posts: 12513
    • View Profile
    • NeoLemmix Website
Re: Replay Insert Mode ("blue R") silently overwrites: Decision?
« Reply #10 on: July 30, 2024, 11:26:12 pm »
You can always submit the PR with what you've got as a starting point, and I can adjust from there.
My projects
2D Lemmings: NeoLemmix (engine) | Lemmings Plus Series (level packs) | Doomsday Lemmings (level pack)
3D Lemmings: Loap (engine) | L3DEdit (level / graphics editor) | L3DUtils (replay / etc utility) | Lemmings Plus 3D (level pack)
Non-Lemmings: Commander Keen: Galaxy Reimagined (a Commander Keen fangame)