Skip to content

Releases: Drewol/unnamed-sdvx-clone

Version 0.6.0

22 Jun 06:42
260b050
Compare
Choose a tag to compare

The primary purpouse of this release it to have a more up to date release. 0.5.0 did not work with many newer features in the develop/master versions and to download the latest release version should result in a better experience.

I would also like to announce that I do not intend to work much more on this codebase. I've been primarily been spending my effort on a rewrite to Rust that I started some time ago that I now feel is starting to become a somewhat viable alternative. It still lacks many features but it is catching up relatvely quickly. The rewrite can be found here:
https://github.com/Drewol/kson-rs

Some users have reported that the game does not start after updating. Installing the latest MSVC runtime from https://aka.ms/vs/17/release/vc_redist.x64.exe appears to fix this.

New

  • New gauge types. @itszn
  • Controller lighting interface. Sync controller LEDs with the game.
  • FastGUI: Ultra lightweight gameplay UI option. (Not skinnable)
  • Fine grained hispeed adjustment.
  • Basic replay system @itszn

Changed

  • Laser assist tweaks
  • Skin errors mostly silent unless Skin Dev option turned on.
  • Sound effects updates @ubuntor
  • IR updates @ereti
  • Linux packaging improvements (we're now on Flathub!) @SkyLeite @0chroma

New Contributors

Full Changelog: v0.5.0...v0.6.0

Version 0.5.0

13 Jun 20:04
Compare
Choose a tag to compare

There's been quite some time since the last proper release so there's really too much to
bring up. Since most of you have been playing on a relatively up to date version a lot
in here won't be completely new but most changes since 0.4.0 will still be listed here
for completeness sake.

There is also now a tool for those coming from K-Shoot MANIA that want to keep their scores.
ksm2usc-score-import

With the new workflow using a develop branch there will hopefully be more frequent releases.

Notable contributors

  • @ASleepyCat - New laser assist & camera behaviour
  • @123jimin - Practice mode & new settings screen
  • @itszn - Challenges/Courses & settings profiles
  • @ereti - Internet Ranking/Online Leaderboards

New Features

  • Fallback gauge (aka ARS)
  • Prerendering of song effects
  • Challenges/Courses by @itszn
  • ShadedMesh in skins (docs)
  • Offset Calibration Screen
  • center_split ksh feature
  • Song sorting in song select
  • Setting for disabling song backgrounds
  • Settings window in song select
  • Simple multiplayer chat
  • Song preview in multiplayer
  • Practice mode by @123jimin
  • Ability to delete charts ingame
  • Laser Offset
  • Settings profiles
  • Different score display modes
  • Online leaderboards by @ereti
    • No default server at the moment.
    • A simple server implementation exists at ereti/usc-ir-server

Notable changes to old features

  • Significant laser assist changes by @ASleepyCat
    • Slam hit detection tweaks
  • Camera tweaks by @ASleepyCat
  • Settings screen rework by @123jimin
  • Slim BT notes on top of FX chips
  • Move replays from DB to dedicated files
  • Save which settings menus are open
  • New default song select background
  • Key beam/Lane light behaviour change by @ASleepyCat
  • Increase near window

Fixes

Too many to list.

Skin incompability notice

  • Gauges
--- gameplay.lua
--- gameplay.gauge and gameplay.gaugeType are removed
local function getGauge()
 if type(gameplay.gauge) == "table" then
   return gameplay.gauge.value
 end
 return gameplay.gauge
end
local function getGaugeType()
 if type(gameplay.gauge) == "table" then
   return gameplay.gauge.type
 end
 return gameplay.gaugeType
end
  • Game mode API (mirror/excessive/etc)
-- result.flags has been removed, now use gauge_type
local function isExcessive(result)
  if result.flags == nil then
    return result.gauge_type == 1
  end
  return result.flags & 1 == 1
end
local function isMirror(result)
  if result.flags == nil then
    return result.mirror
  end
  return result.flags & 2 == 2
end
local function isRandom(result)
  if result.flags == nil then
    return result.random
  end
  return result.flags & 4 == 4
end

-- example
-- results.lua
isMirror(result)
-- challengeresults.lua
isMirror(chart)

All changes since 0.4.0

1020 Commits
  • [2021-06-12] Drewol: 4342bfb - Bump version
  • [2021-06-10] itszn: 9cdb392 - [skin] Fix clearTransition being incorrect when using backup gauge
  • [2021-06-08] Drewol: 0f2db26 - Missed an unused part in previous commit
  • [2021-06-08] Drewol: 182f94a - Remove some unused things from LaserTrackBuilder
  • [2021-06-08] Drewol: b7f916f - [skip ci] Update readme
  • [2021-06-08] Emil: dad3ae4 - Merge develop into master
  • [2021-06-08] Emil: 0265308 - Merge pull request #479 from ASleepyCat/fx-key-beam
  • [2021-06-05] ASleepyCat: 35d895e - Merge branch 'develop' into fx-key-beam
  • [2021-06-02] itszn: dad7d4f - [replay] Add miss replay hitstat for lasers and slams
  • [2021-06-02] Drewol: 19b4260 - Maybe fix crash on chart delete
  • [2021-06-01] ASleepyCat: 9103bd3 - Merge branch 'develop' of https://github.com/Drewol/unnamed-sdvx-clone into fx-key-beam
  • [2021-06-01] ASleepyCat: 42e4ca1 - Don't spawn key beam for FX buttons when hitting a hold
  • [2021-05-30] Emil: 2322c4c - Merge pull request #478 from 123jimin/202105-window-pos-fix
  • [2021-05-30] Jimin Park: f711311 - Store window position after adjusting it in Application::m_UpdateWindowPosAndShape
  • [2021-05-24] itszn: 153a50c - [multiplayer] Make linux happy about switch fallthrough
  • [2021-05-23] itszn: bf4945f - [multiplayer] Handle keyboard button input correctly
  • [2021-05-23] Emil: 1d886dc - Merge pull request #474 from ASleepyCat/slam-window-tweak
  • [2021-05-23] ASleepyCat: 22a3b03 - Add comment
  • [2021-05-23] ASleepyCat: 3d674b7 - Check early for slams
  • [2021-05-20] Drewol: 0e97f96 - Update IR Score Posting
  • [2021-05-20] Drewol: 1f9d672 - Separate input offset for laser
  • [2021-05-19] Emil: 71bb686 - Merge pull request #470 from ASleepyCat/laser-fx-fix
  • [2021-05-19] ASleepyCat: 8447b54 - Merge branch 'develop' of https://github.com/Drewol/unnamed-sdvx-clone into laser-fx-fix
  • [2021-05-18] Drewol: df7b3b5 - Add support for KSH 'Standard BPM'
  • [2021-05-18] itszn: b75c04d - [skin] Make song download screen obey back button
  • [2021-05-18] itszn: eef36f8 - [multiplayer] Make multiplayer respect back btn
  • [2021-05-16] ASleepyCat: f0a9cd9 - Apply clang-tidy fixes
  • [2021-05-15] ASleepyCat: b63c7a3 - Fix some laser DSPs being active when lasers were at 0
  • [2021-05-13] ASleepyCat: b4aee34 - Fix laser effects not being played when lasers are at 0,0
  • [2021-05-13] ASleepyCat: fa3955c - Clamp gating values
  • [2021-05-12] ASleepyCat: c5c4bc8 - Reorder statements
  • [2021-05-12] ASleepyCat: 2315785 - Fix percent parameters not being interpreted correctly
  • [2021-05-12] ASleepyCat: 895af98 - Clamp laser DSP mix value
  • [2021-05-12] ASleepyCat: 5619b2e - Revert "Fix ReTrigger (and Gate?) laser effects causing ear rape"
  • [2021-05-11] ASleepyCat: 6d4f9f8 - Fix ReTrigger (and Gate?) laser effects causing ear rape
  • [2021-05-08] Drewol: 22824b0 - Fix build
  • [2021-05-08] Drewol: 102ca00 - Effect fixes
  • [2021-05-05] Emil: 1a26e73 - Merge pull request #447 from 123jimin/202104-small-fix-2
  • [2021-05-02] Emil: b3e9c82 - Merge pull request #465 from ASleepyCat/hold-key-beams
  • [2021-05-02] ASleepyCat: 2e15a57 - Always start fading key beam when a hold has passed
  • [2021-04-28] Emil: 9a33a88 - Merge pull request #461 from ASleepyCat/timing
  • [2021-04-28] Emil: 74ee91f - Merge pull request #462 from ASleepyCat/hit-effects-bug-fixes
  • [2021-04-28] ASleepyCat: 80911ac - Add bin/profiles to .gitignore
  • [2021-04-27] ASleepyCat: b9c6488 - Reorder delegate operations
  • [2021-04-27] ASleepyCat: 3a4c72c - Fix key beams not appearing when delay fade effects are off and a chip object has passed the crit line
  • [2021-04-27] ASleepyCat: 1452c99 - Fix assertion failing when exiting while a chart is loading
  • [2021-04-25] ASleepyCat: cc43971 - Remove timing window db update statements
  • [2021-04-23] ASleepyCat: 0376ba8 - Merge branch 'develop' of https://github.com/Drewol/unnamed-sdvx-clone into timing
  • [2021-04-22] Emil: b72ae68 - Merge pull request #458 from ASleepyCat/hit-effects-hot-fix
  • [2021-04-22] Emil: 2b867fa - Merge pull request #457 from ASleepyCat/skin-func
  • [2021-04-20] ASleepyCat: 5d229eb - Update console offset value
  • [2021-04-18] ASleepyCat: abc0a34 - Rename function, add input offset to HoldObjectAvailable
  • [2021-04-18] ASleepyCat: 06c7b1d - Revert "Rework hold note timing"
  • [2021-04-18] ASleepyCat: 11f9e73 - Fix hit effects not working properly in practice mode
  • [2021-04-18] ASleepyCat: e233790 - Fix hit effects not decaying in the calibration screen
  • [2021-04-17] ASleepyCat: 8f0fe93 - Fix hit effect turning into a crit when a hold object crosses the crit line...
Read more

Version 0.4.0

19 Dec 17:09
Compare
Choose a tag to compare

First release with multiplayer! This release took a while longer than it should've as I felt the game was never quite in a release-ready state for a while, but with that out of the way this version should last a lot longer as the recommended build compared to the previous release.

You can now support the project monetarily with the sponsor button at the top of this page and picking the payment option that suits you best. More info at the end of this post.

Follow https://twitter.com/unnamed_sdvx for the latest information on the project.

New features:

  • Multiplayer
    • Discord rich presence invites
  • Collections/Favourites
  • In-game song downloading
  • Demo mode (F8 at song select)
  • Hidden/Sudden modifier
  • Multiple song background support
  • Transition screens
  • An option to automatically capture score screenshots

Tweaks & Fixes:

  • Game no longer requires the cwd to be the same as the executable path
  • Reduced gauge drain on very long songs (values can be tweaked in cfg)
  • Don't render notes that have been hit
  • Fix input offset affecting hit windows
  • Changed default speedmod to mmod
  • Reworked escape/back navigation
    • Back button can be bound and a button combo can also be used
  • Tweaked laser assist

New in skinning:

It is also now possible to support the development monetarily for example for those who want to contribute but can't necessarily do so through code. I promise that there will never be any pay-walled features so if you don't want to or simply can't contribute then there is nothing to worry about. With enough monetary support I can more easily justify working on the project and with enough funding I can possibly do things such as getting art and music commissioned and start other related projects such as a chart editor program.

Version 0.3.1

24 Apr 17:36
Compare
Choose a tag to compare

Mostly some audio fixes but also some additions to skinning

New stuff:

  • songs_changed, a good place to run stuff that checks all songs.
  • songwheel.allSongs a list of all the songs in your library regardless of filtering settings.
  • The laser shader now has a parameter that tells it if it's a laser entry, exit, or body.

Fixes:

  • Fixed some charts crashing because they had fx chip effects that used unsupported formats
  • Fixed loud noise at the end of some ogg files. ( Thanks to @Pwootage )
  • Fixed crackling audio on some MS_ADPCM encoded files

Follow https://twitter.com/unnamed_sdvx for the latest information on the project.

Version 0.3

04 Apr 21:18
Compare
Choose a tag to compare

New features:

  • Discord Rich Presence
  • Automatic update checking (can be turned off in settings)
  • Support for ksm manual tilt thanks to @nashiora
  • Windowed fullscreen option

New in lua:

Fixes and tweaks:

  • Lasers should feel better than in previous releases
  • Buttons acting weird in tight patterns has been fixed
  • Fixed anti-aliasing forcing vsync on some systems
  • Fixed concave shape drawing in skinning
  • Audio loading has been changed a bit to make future improvements to effects easier
  • Tweaked camera and default skin gameplay appearance thanks to @nashiora and @fdigl
  • Fixed an error in the bounce guard logic

Follow https://twitter.com/unnamed_sdvx for the latest information on the project.

Version 0.2

17 Nov 20:59
Compare
Choose a tag to compare

I've created a twitter account you can follow to get notified of new releases https://twitter.com/unnamed_sdvx

New features:

  • Score Replays
    This is not gameplay replays, they're replays of the score progression of a previous score so that you can compete against your previous bests.
  • Ksh FX Chip Keysounds
    The game had support for keysounded FX Chips earlier but they were different to the ones that were added in ksh, the game now reads the ksh ones instead.
  • Timestamped scores
  • Score screenshots with F12 (only on the result screen)
    Screenshots are saved in a screenshots folder that the game creates, the result screen lua script can define a capture region for perfectly cropped screenshots.
  • Mouse wheel scrolling on song select

New in lua:

  • Scores now have a timestamp, in POSIX Time (seconds since Jan 1 1970 00:00:00)
  • Gameplay:
  • Result Screen:
    • get_capture_rect() function the game calls to get the capture region for screenshots so that they can be cropped, the game will capture entire game window is this function isn't defined.
    • screenshot_captured(path) function the game calls once a screenshot is saved so that a notification can be displayed.

Bug fixes:

  • Fixed crash when launching with -notitle
  • Fixed crash when pressing F5 during the gameplay outro
  • Made the game fall back to shared mode when WASAPI Exclusive mode fails to open.

Version 0.1

09 Nov 19:06
Compare
Choose a tag to compare

First numbered release. Everything related to skinning and other customizable things can be changed in major ways without much notice while the game is still on version 0.x but the way the skinning works should be mostly final as of this version.

Recent major changes:

  • GUI now completely customizable using Lua.

Windows:

  • WASAPI Exclusive mode supported