From 1c1e5c976f227fc836f1004a6cf835b5f03ed4c1 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 11:31:20 -0400 Subject: [PATCH 01/12] Erect charts got removed lol --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 47bbe52ec..040c3cb55 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 47bbe52ecb823e4fe1d2fd20914c28b509277073 +Subproject commit 040c3cb55cbb5b61bf524563387dd49bc582f4df From 2051f609914bd2ea331988ab54a28cf08d5732ab Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 12:12:45 -0400 Subject: [PATCH 02/12] Update pico erect --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 040c3cb55..f3ac31296 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 040c3cb55cbb5b61bf524563387dd49bc582f4df +Subproject commit f3ac31296c00adce760849592e4ccf9c3bf0dc58 From dae7d71b17352a5aa14fe8815ad49bd013344e0f Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 13:34:34 -0400 Subject: [PATCH 03/12] Better (but not perfect) results screen text alignment --- source/funkin/play/ResultState.hx | 3 ++- source/funkin/ui/mainmenu/MainMenuState.hx | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/source/funkin/play/ResultState.hx b/source/funkin/play/ResultState.hx index 69acb36b5..56dd1e80f 100644 --- a/source/funkin/play/ResultState.hx +++ b/source/funkin/play/ResultState.hx @@ -324,7 +324,8 @@ class ResultState extends MusicBeatSubState FlxTween.tween(difficulty, {y: diffYTween}, 0.5, {ease: FlxEase.expoOut, startDelay: 0.8}); songName.y = -songName.height; - FlxTween.tween(songName, {y: diffYTween - 35}, 0.5, {ease: FlxEase.expoOut, startDelay: 0.9}); + var fuckedupnumber = (10) * (songName.text.length / 15); + FlxTween.tween(songName, {y: diffYTween - 35 - fuckedupnumber}, 0.5, {ease: FlxEase.expoOut, startDelay: 0.9}); songName.x = (difficulty.x + difficulty.width) + 20; new FlxTimer().start(3, _ -> { diff --git a/source/funkin/ui/mainmenu/MainMenuState.hx b/source/funkin/ui/mainmenu/MainMenuState.hx index 11c7c6ebf..27082c94d 100644 --- a/source/funkin/ui/mainmenu/MainMenuState.hx +++ b/source/funkin/ui/mainmenu/MainMenuState.hx @@ -360,7 +360,7 @@ class MainMenuState extends MusicBeatState } #end - if (FlxG.sound.music.volume < 0.8) + if (FlxG.sound.music != null && FlxG.sound.music.volume < 0.8) { FlxG.sound.music.volume += 0.5 * elapsed; } From e7a09fcee27dbd884445ef2e053ac079f2005db1 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 13:58:39 -0400 Subject: [PATCH 04/12] Fix an issue where returning to Freeplay from gameplay would let you interact with the menu underneath --- source/funkin/ui/freeplay/FreeplayState.hx | 8 ++++---- source/funkin/ui/mainmenu/MainMenuState.hx | 5 +++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/source/funkin/ui/freeplay/FreeplayState.hx b/source/funkin/ui/freeplay/FreeplayState.hx index 860b8f235..e5f89ed0d 100644 --- a/source/funkin/ui/freeplay/FreeplayState.hx +++ b/source/funkin/ui/freeplay/FreeplayState.hx @@ -946,16 +946,16 @@ class FreeplayState extends MusicBeatSubState caps.doJumpOut = true; } - if (Type.getClass(FlxG.state) == MainMenuState) + if (Type.getClass(_parentState) == MainMenuState) { - FlxG.state.persistentUpdate = false; - FlxG.state.persistentDraw = true; + _parentState.persistentUpdate = false; + _parentState.persistentDraw = true; } new FlxTimer().start(longestTimer, (_) -> { FlxTransitionableState.skipNextTransIn = true; FlxTransitionableState.skipNextTransOut = true; - if (Type.getClass(FlxG.state) == MainMenuState) + if (Type.getClass(_parentState) == MainMenuState) { FunkinSound.playMusic('freakyMenu', { diff --git a/source/funkin/ui/mainmenu/MainMenuState.hx b/source/funkin/ui/mainmenu/MainMenuState.hx index 27082c94d..27170fd49 100644 --- a/source/funkin/ui/mainmenu/MainMenuState.hx +++ b/source/funkin/ui/mainmenu/MainMenuState.hx @@ -54,8 +54,9 @@ class MainMenuState extends MusicBeatState playMenuMusic(); - persistentUpdate = true; - persistentDraw = true; + // If something else overrides these, we should keep those values. + // persistentUpdate = true; + // persistentDraw = true; var bg:FlxSprite = new FlxSprite(Paths.image('menuBG')); bg.scrollFactor.x = 0; From 70f086f18a345cd4ccaeee4054d58cbb9c6e2f25 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 14:03:16 -0400 Subject: [PATCH 05/12] Add missing cutscene audio on web --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index f3ac31296..763ab765e 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit f3ac31296c00adce760849592e4ccf9c3bf0dc58 +Subproject commit 763ab765e553cc233cbf92148963b85c312823be From 2e1cd7024cced7b404dc564737b3a108bbe1dfba Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 14:19:36 -0400 Subject: [PATCH 06/12] Updated changelog. --- CHANGELOG.md | 46 +++++++++++++++++++++++++++++++++------------- 1 file changed, 33 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f33bd2b12..566637823 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,18 +4,38 @@ All notable changes will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [UNRELEASED] -### Added -- Cool waveform stuff for chart editor -- Noises in chart editor lol! -- 3 AWESOME PICO VS. DARNELL SONGS!! -- Character offset editor / spritesheet viewer -## Changed -- Lerp'd the healthbar -- Resetting from game over and "restart song" should be faster -- Health gain is different depending on how accurate you hit notes! -- slight less health gained on sustain notes -- The wave-y effect on Thorns for the school is now a shader, instead of a pre-baked animation! +## [0.3.0] - 2024-03-29 +# Added +- New Story Level: Weekend 1, starting Pico, Darnell, and Nene. + - Beat the level in Story Mode to unlock the songs for Freeplay! +- 12 new Erect remixes, featuring Kawai Sprite, Saruky, Kohta Takahashi, and Saster + - Unlocked instantly in Freeplay +- New visually enhanced Freeplay menu. + - Sorting, favorites, and more. +- New Results screen upon completing any song or story level. +- New refactored Chart Editor prototype (accessible via `~` in the main menu or `7` in the Play State, rebindable). (VERY EARLY PROTOTYPE. EXPECT BUGS AND CRASHES) +- Implemented a new scripting system using HScript (an interpreted language with Haxe-like syntax) for incredible flexibility. + - All character-specific, stage-specific, or song-specific behaviors have been moved to HScript. +- New song events system allows for simple customization of camera behavior. + - Mods can implement custom song events via HScript, and new built-in song events will come in the future. +- New credits menu to list all the dozens of people who contributed. +# Changed +- Completely refactored the game's input system for higher reliability and accuracy. +- Reworked note rendering to massively reduce lag on larger charts. +- Reworks to scoring and health gain. +- Dedicated gamepad support with the ability to rebind buttons. +- Improvements to video cutscenes and dialogue, allowing them to be easily skipped or restarted. +- Updated Polymod by several major versions, allowing for fully dynamic asset replacement and support for scripted classes. +- Completely refactored almost every part of the game's code for performance, stability, and extensibility. + - This is not the Ludem Dare game held together with sticks and glue you played three years ago. +- Characters, stages, songs, story levels, and dialogue are now built from JSON data registries rather than being hardcoded. + - All of these also support attaching scripts for custom behavior, more documentation on this soon. + - You can forcibly reload the game's JSON data and scripts by pressing F5. +- Fully refactored the game's chart file format for extensibility and readability. + - You can migrate old charts using the Import FNF Legacy option in the chart editor. +- Various visual tweaks and improvements. +# Fixed +- 17 quadrillion bugs across hundreds of PRs. ## [0.2.8] - 2021-04-18 (note, this one is iffy cuz we slacked wit it lol!) ### Added @@ -90,7 +110,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Clear section button to note editor - Swap button in note editor - a new boot text or two -- automatic check for when you're on an old version of the game! +- automatic check for when you're on an old version of the game! ### Changed - Made Spookeez on Normal easier. - Mouse is now visible in note editor From 11c0249f42104e73d0678b7de1d186abe46b58ad Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 14:36:57 -0400 Subject: [PATCH 07/12] Fix an issue with Freeplay sorting when leaving an Erect song. --- source/funkin/ui/freeplay/FreeplayState.hx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/source/funkin/ui/freeplay/FreeplayState.hx b/source/funkin/ui/freeplay/FreeplayState.hx index e5f89ed0d..513d411f7 100644 --- a/source/funkin/ui/freeplay/FreeplayState.hx +++ b/source/funkin/ui/freeplay/FreeplayState.hx @@ -560,6 +560,12 @@ class FreeplayState extends MusicBeatSubState { var tempSongs:Array = songs; + // Remember just the difficulty because it's important for song sorting. + if (rememberedDifficulty != null) + { + currentDifficulty = rememberedDifficulty; + } + if (filterStuff != null) tempSongs = sortSongs(tempSongs, filterStuff); // Filter further by current selected difficulty. @@ -579,6 +585,7 @@ class FreeplayState extends MusicBeatSubState // Only now do we know that the filter is actually changing. + // If curSelected is 0, the result will be null and fall back to the rememberedSongId. rememberedSongId = grpCapsules.members[curSelected]?.songData?.songId ?? rememberedSongId; for (cap in grpCapsules.members) @@ -635,7 +642,7 @@ class FreeplayState extends MusicBeatSubState rememberSelection(); changeSelection(); - changeDiff(); + changeDiff(0, true); } /** @@ -987,7 +994,7 @@ class FreeplayState extends MusicBeatSubState } } - function changeDiff(change:Int = 0):Void + function changeDiff(change:Int = 0, force:Bool = false):Void { touchTimer = 0; @@ -1047,7 +1054,7 @@ class FreeplayState extends MusicBeatSubState } } - if (change != 0) + if (change != 0 || force) { // Update the song capsules to reflect the new difficulty info. for (songCapsule in grpCapsules.members) From a645b67921dd2ab939928cbaf5a47ceed7f4649a Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 15:07:41 -0400 Subject: [PATCH 08/12] Fix can events on easy and normal --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 763ab765e..f0cdd9912 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 763ab765e553cc233cbf92148963b85c312823be +Subproject commit f0cdd991220084a3df45781103fe07cf7d9823f8 From eb8840ba7697b8f66d3c3da210840df88e032a76 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 15:11:31 -0400 Subject: [PATCH 09/12] Readd parallax --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index f0cdd9912..54b45b311 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit f0cdd991220084a3df45781103fe07cf7d9823f8 +Subproject commit 54b45b311e0b8d8ef6bcd308addaafa7454b4061 From 2e0f8809081ccc762ea06ce6e871510390655e1a Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 16:10:03 -0400 Subject: [PATCH 10/12] Assets submod --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 54b45b311..13cb2c363 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 54b45b311e0b8d8ef6bcd308addaafa7454b4061 +Subproject commit 13cb2c36330d6421621d2d538bc6a2a008caa1df From 85a6b8bc5bba0cbd4d6c9c4ee11386dc10ec60e5 Mon Sep 17 00:00:00 2001 From: EliteMasterEric Date: Tue, 30 Apr 2024 16:15:07 -0400 Subject: [PATCH 11/12] Readd volume box sprite --- assets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets b/assets index 13cb2c363..e8f79a1d0 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit 13cb2c36330d6421621d2d538bc6a2a008caa1df +Subproject commit e8f79a1d077277df3e3e11c27ef5561b44f40ba9 From 7986dbe2a0a8964579e604853d90d691253c7b98 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Tue, 30 Apr 2024 16:30:22 -0400 Subject: [PATCH 12/12] revert mainmenu persistentUpdate chagne --- source/funkin/ui/mainmenu/MainMenuState.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/funkin/ui/mainmenu/MainMenuState.hx b/source/funkin/ui/mainmenu/MainMenuState.hx index 27170fd49..466dbbb90 100644 --- a/source/funkin/ui/mainmenu/MainMenuState.hx +++ b/source/funkin/ui/mainmenu/MainMenuState.hx @@ -54,9 +54,9 @@ class MainMenuState extends MusicBeatState playMenuMusic(); - // If something else overrides these, we should keep those values. - // persistentUpdate = true; - // persistentDraw = true; + // We want the state to always be able to begin with being able to accept inputs and show the anims of the menu items. + persistentUpdate = true; + persistentDraw = true; var bg:FlxSprite = new FlxSprite(Paths.image('menuBG')); bg.scrollFactor.x = 0;