Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ENHANCEMENT] [MODDING] QOL changes to strumlines #4388

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

AbnormalPoof
Copy link
Collaborator

@AbnormalPoof AbnormalPoof commented Mar 26, 2025

Does this PR close any issues? If so, link them below.

Closes #2616

Briefly describe the issue(s) fixed.

This PR changes initStrumlines() so that it now takes a note style ID instead of a noteStyle, along with the option to disable the fade.
Additionally, changes were made so changing a strumline's notestyle mid-song is way easier! Just change noteStyleId and the graphics will be updates automatically. Technically you could already do this before but it was very inefficient:

pr.showcase.mp4

Code snippet:

if (PlayState.instance != null)
{
  if (FlxG.keys.justPressed.EIGHT)
  {
    pixelEnabled = !pixelEnabled;
    if (pixelEnabled)
    {
      PlayState.instance.playerStrumline.noteStyleId = 'pixel';
      PlayState.instance.opponentStrumline.noteStyleId = 'pixel';
    }
    else
    {
      PlayState.instance.playerStrumline.noteStyleId = 'funkin';
      PlayState.instance.opponentStrumline.noteStyleId = 'funkin';
    }
  }
}

This doesn't break note kinds that use another notestyle (here the notekind has the funkin notestyle):

it_works_fine.mp4

Include any relevant screenshots or videos.

erect.sampler.thing.mp4

Issues

  • The sustain trail doesn't update if you are already holding it. I don't know how to fix it, sorry.

Please let me know if you encounter issues with this PR!! I only tested this with the pixel notestyle.
Also note that this will break mods that use initStrumlines().

@github-actions github-actions bot added size: large A large pull request with more than 100 changes. pr: haxe PR modifies game code. status: pending triage Awaiting review. and removed size: large A large pull request with more than 100 changes. labels Mar 26, 2025
@AbnormalPoof AbnormalPoof added type: enhancement Involves an enhancement or new feature. topic: mods Related to the creation or use of mods. size: large A large pull request with more than 100 changes. topic: breaking change Introduces a change that is not compatible with older versions. Existing code may need revision. labels Mar 26, 2025
@Lasercar
Copy link
Contributor

Lasercar commented Mar 26, 2025

There's one possible issue I see in this code - if a custom note kind sets a different style, then it might be overridden with this.

And it's just been tested and it doesn't override it so

Copy link
Contributor

@Lasercar Lasercar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I approve!

@EliteMasterEric EliteMasterEric added status: reviewing internally Under consideration and testing. and removed status: pending triage Awaiting review. labels Apr 1, 2025
@EliteMasterEric
Copy link
Member

This is pretty neato! A follow-up PR could include a SetNoteStyleSongEvent.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
pr: haxe PR modifies game code. size: large A large pull request with more than 100 changes. status: reviewing internally Under consideration and testing. topic: breaking change Introduces a change that is not compatible with older versions. Existing code may need revision. topic: mods Related to the creation or use of mods. type: enhancement Involves an enhancement or new feature.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants