2023-02-04 02:50:42 +00:00
|
|
|
using HeavenStudio.Util;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using DG.Tweening;
|
2023-06-10 19:13:29 +00:00
|
|
|
using Jukebox;
|
2023-02-04 02:50:42 +00:00
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Loaders
|
|
|
|
{
|
|
|
|
using static Minigames;
|
|
|
|
public static class RvlRingsideLoader
|
|
|
|
{
|
|
|
|
public static Minigame AddGame(EventCaller eventCaller)
|
|
|
|
{
|
2023-04-02 02:28:23 +00:00
|
|
|
return new Minigame("ringside", "Ringside", "6bdfe7", false, false, new List<GameAction>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
new GameAction("question", "Question")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.Question(e.beat, e["alt"], e["variant"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("alt", false, "Alt", "Whether the alt voice line should be used or not."),
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
|
|
|
new GameAction("woahYouGoBigGuy", "Woah You Go Big Guy!")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.BigGuy(e.beat, e["variant"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
|
|
|
new GameAction("poseForTheFans", "Pose For The Fans!")
|
|
|
|
{
|
|
|
|
preFunction = delegate {var e = eventCaller.currentEntity; Ringside.PoseForTheFans(e.beat, e["and"], e["variant"], e["keepZoomedOut"], e["newspaperBeats"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("and", false, "And", "Whether the And voice line should be said or not."),
|
|
|
|
new Param("variant", Ringside.PoseForTheFansVariant.Random, "Variant", "Which variant of the cue do you wish to play."),
|
|
|
|
new Param("keepZoomedOut", false, "Keep Zoomed Out", "Whether the camera should keep being zoomed out after the event has completed."),
|
|
|
|
new Param("newspaperBeats", new EntityTypes.Float(0, 80, 0), "Newspaper Beats", "How many beats should the newspaper stay for?"),
|
2023-06-10 19:13:29 +00:00
|
|
|
new Param("ease", Util.EasingFunction.Ease.EaseOutQuad, "Camera Ease", "What ease should the camera use?"),
|
2023-02-04 02:50:42 +00:00
|
|
|
},
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
2023-03-07 17:22:32 +00:00
|
|
|
new GameAction("toggleBop", "Bop")
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.ToggleBop(e.beat, e.length, e["bop2"], e["bop"]); },
|
2023-02-04 02:50:42 +00:00
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
new Param("bop2", true, "Bop?", "Whether the wrestler should bop or not."),
|
|
|
|
new Param("bop", false, "Bop? (Auto)", "Whether the wrestler should bop automatically or not."),
|
2023-02-04 02:50:42 +00:00
|
|
|
},
|
2023-03-07 17:22:32 +00:00
|
|
|
resizable = true,
|
2023-02-04 02:50:42 +00:00
|
|
|
},
|
|
|
|
new GameAction("toggleSweat", "Toggle Sweat")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.ToggleSweat(e["sweat"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("sweat", false, "Sweat?", "Whether the wrestler should sweat or not."),
|
|
|
|
},
|
|
|
|
defaultLength = 0.5f
|
|
|
|
},
|
|
|
|
new GameAction("questionScaled", "Question (Stretchable)")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; Ringside.instance.Question(e.beat, e["alt"], e["variant"], e.length); },
|
|
|
|
preFunction = delegate {if (Ringside.instance == null) return; var e = eventCaller.currentEntity; Ringside.instance.PreQuestion(e.beat, e["variant"], e.length); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("alt", false, "Alt", "Whether the alt voice line should be used or not."),
|
|
|
|
new Param("variant", Ringside.QuestionVariant.Random, "Variant", "Which variant of the cue do you wish to play.")
|
|
|
|
},
|
|
|
|
defaultLength = 4f,
|
|
|
|
resizable = true
|
|
|
|
},
|
2023-05-28 17:34:44 +00:00
|
|
|
},
|
|
|
|
new List<string>() {"rvl", "normal"},
|
|
|
|
"rvlinterview", "en",
|
|
|
|
new List<string>() {"en"}
|
|
|
|
);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games
|
|
|
|
{
|
|
|
|
public class Ringside : Minigame
|
|
|
|
{
|
|
|
|
private static Color _defaultBGColorLight;
|
|
|
|
public static Color defaultBGColorLight
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
ColorUtility.TryParseHtmlString("#5a5a5a", out _defaultBGColorLight);
|
|
|
|
return _defaultBGColorLight;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[Header("Components")]
|
|
|
|
[SerializeField] Animator wrestlerAnim;
|
|
|
|
[SerializeField] Animator reporterAnim;
|
|
|
|
[SerializeField] Animator audienceAnim;
|
|
|
|
[SerializeField] Animator wrestlerNewspaperAnim;
|
|
|
|
[SerializeField] Animator reporterNewspaperAnim;
|
|
|
|
[SerializeField] SpriteRenderer flashWhite;
|
|
|
|
[SerializeField] SpriteRenderer blackVoid;
|
|
|
|
[SerializeField] GameObject flashObject;
|
|
|
|
[SerializeField] GameObject poseFlash;
|
|
|
|
[SerializeField] GameObject newspaper;
|
|
|
|
[SerializeField] Transform wrestlerTransform;
|
|
|
|
[SerializeField] SpriteRenderer bg;
|
|
|
|
[SerializeField] ParticleSystem flashParticles;
|
|
|
|
[SerializeField] ParticleSystem sweatParticles;
|
|
|
|
|
|
|
|
[Header("Variables")]
|
|
|
|
public static List<QueuedPose> queuedPoses = new List<QueuedPose>();
|
|
|
|
public struct QueuedPose
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
public double beat;
|
2023-02-04 02:50:42 +00:00
|
|
|
public bool keepZoomedOut;
|
|
|
|
public float newspaperBeats;
|
|
|
|
}
|
|
|
|
Tween flashTween;
|
|
|
|
Tween bgTween;
|
|
|
|
public enum QuestionVariant
|
|
|
|
{
|
|
|
|
First = 1,
|
|
|
|
Second = 2,
|
|
|
|
Third = 3,
|
|
|
|
Random = 4,
|
|
|
|
}
|
|
|
|
public enum PoseForTheFansVariant
|
|
|
|
{
|
|
|
|
First = 1,
|
|
|
|
Second = 2,
|
|
|
|
Random = 3
|
|
|
|
}
|
|
|
|
private float currentZoomCamBeat;
|
|
|
|
private Vector3 lastCamPos = new Vector3(0, 0, -10);
|
|
|
|
private Vector3 currentCamPos = new Vector3(0, 0, -10);
|
|
|
|
private bool shouldBop = true;
|
|
|
|
private bool missedBigGuy;
|
|
|
|
private bool reporterShouldHeart;
|
|
|
|
private bool hitPose;
|
2023-02-04 17:52:13 +00:00
|
|
|
private bool shouldNotInput;
|
2023-02-05 19:48:41 +00:00
|
|
|
private bool keepZoomOut;
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
private bool canBop = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
private Sound kidsLaugh;
|
|
|
|
private int currentPose;
|
2023-06-10 19:13:29 +00:00
|
|
|
private Util.EasingFunction.Ease lastEase;
|
2023-05-28 18:48:41 +00:00
|
|
|
private GameObject currentNewspaper;
|
2023-02-04 02:50:42 +00:00
|
|
|
|
|
|
|
private int currentZoomIndex;
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
private List<RiqEntity> allCameraEvents = new List<RiqEntity>();
|
2023-02-04 02:50:42 +00:00
|
|
|
|
|
|
|
public GameEvent bop = new GameEvent();
|
|
|
|
|
|
|
|
public static Ringside instance;
|
|
|
|
|
|
|
|
void OnDestroy()
|
|
|
|
{
|
|
|
|
if (queuedPoses.Count > 0) queuedPoses.Clear();
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.KillLoop(kidsLaugh, 2f);
|
2023-06-03 23:30:17 +00:00
|
|
|
foreach (var evt in scheduledInputs)
|
|
|
|
{
|
|
|
|
evt.Disable();
|
|
|
|
}
|
2023-02-04 23:14:32 +00:00
|
|
|
}
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
public override void OnTimeChange()
|
|
|
|
{
|
|
|
|
UpdateCameraZoom();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
|
|
|
var camEvents = EventCaller.GetAllInGameManagerList("ringside", new string[] { "poseForTheFans" });
|
2023-06-10 19:13:29 +00:00
|
|
|
List<RiqEntity> tempEvents = new List<RiqEntity>();
|
2023-02-04 02:50:42 +00:00
|
|
|
for (int i = 0; i < camEvents.Count; i++)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
if (camEvents[i].beat + camEvents[i].beat >= Conductor.instance.songPositionInBeatsAsDouble)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
tempEvents.Add(camEvents[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allCameraEvents = tempEvents;
|
|
|
|
|
|
|
|
UpdateCameraZoom();
|
2023-05-28 18:48:41 +00:00
|
|
|
wrestlerAnim.Play("Idle", 0, 1);
|
|
|
|
ReporterBlink();
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Update()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
|
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (cond.ReportBeat(ref bop.lastReportedBeat, bop.startBeat % 1))
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
if (shouldBop && canBop)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (UnityEngine.Random.Range(1, 18) == 1)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BopPec");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Bop");
|
|
|
|
}
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-04 17:52:13 +00:00
|
|
|
if (PlayerInput.Pressed() && !IsExpectingInputNow(InputType.STANDARD_DOWN) && !shouldNotInput)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
Ringside.instance.ScoreMiss(0.5);
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("YeMiss", 0.25f);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/confusedanswer");
|
2023-02-17 18:45:18 +00:00
|
|
|
if (reporterAnim.IsPlayingAnimationName("IdleReporter")) reporterAnim.Play("IdleLate", 0, 0);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
2023-02-04 17:52:13 +00:00
|
|
|
if (PlayerInput.AltPressed() && !IsExpectingInputNow(InputType.STANDARD_ALT_DOWN) && !shouldNotInput)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
Ringside.instance.ScoreMiss(0.5);
|
|
|
|
|
2023-02-04 02:50:42 +00:00
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
|
|
|
reporterAnim.Play("FlinchReporter", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}Raw");
|
|
|
|
SoundByte.PlayOneShotGame("ringside/barely");
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerTransform.localScale = new Vector3(1.1f, 1.1f, 1f);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
new BeatAction.Action(cond.songPositionInBeatsAsDouble + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
2023-02-04 02:50:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (allCameraEvents.Count > 0)
|
|
|
|
{
|
|
|
|
if (currentZoomIndex < allCameraEvents.Count && currentZoomIndex >= 0)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
if (Conductor.instance.songPositionInBeatsAsDouble >= allCameraEvents[currentZoomIndex].beat)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
UpdateCameraZoom();
|
|
|
|
currentZoomIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
float normalizedBeat = Conductor.instance.GetPositionFromBeat(currentZoomCamBeat, 2.5f);
|
2023-02-05 19:48:41 +00:00
|
|
|
float normalizedShouldStopBeat = Conductor.instance.GetPositionFromBeat(currentZoomCamBeat, 3.99f);
|
2023-02-04 02:50:42 +00:00
|
|
|
|
|
|
|
if (normalizedBeat >= 0)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
if (normalizedShouldStopBeat > 1 && !keepZoomOut)
|
|
|
|
{
|
|
|
|
GameCamera.additionalPosition = new Vector3(0, 0, 0);
|
|
|
|
}
|
|
|
|
else if (normalizedBeat > 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
GameCamera.additionalPosition = new Vector3(currentCamPos.x, currentCamPos.y, currentCamPos.z + 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
Util.EasingFunction.Function func = Util.EasingFunction.GetEasingFunction(lastEase);
|
2023-02-04 02:50:42 +00:00
|
|
|
float newPosX = func(lastCamPos.x, currentCamPos.x, normalizedBeat);
|
|
|
|
float newPosY = func(lastCamPos.y, currentCamPos.y, normalizedBeat);
|
|
|
|
float newPosZ = func(lastCamPos.z + 10, currentCamPos.z + 10, normalizedBeat);
|
|
|
|
GameCamera.additionalPosition = new Vector3(newPosX, newPosY, newPosZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void LateUpdate()
|
|
|
|
{
|
|
|
|
var cond = Conductor.instance;
|
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
|
|
|
{
|
|
|
|
if (queuedPoses.Count > 0)
|
|
|
|
{
|
|
|
|
foreach (var p in queuedPoses)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
QueuePose(p.beat, p.keepZoomedOut, p.newspaperBeats);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
queuedPoses.Clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void ToggleBop(double beat, float length, bool startBopping, bool autoBop)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-03-07 17:22:32 +00:00
|
|
|
shouldBop = autoBop;
|
|
|
|
if (startBopping)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + i, delegate
|
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
if (wrestlerAnim.IsAnimationNotPlaying())
|
2023-03-07 17:22:32 +00:00
|
|
|
{
|
|
|
|
if (UnityEngine.Random.Range(1, 18) == 1)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BopPec");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Bop");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void ToggleSweat(bool shouldSweat)
|
|
|
|
{
|
|
|
|
if (shouldSweat)
|
|
|
|
{
|
|
|
|
sweatParticles.Play();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sweatParticles.Stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void Question(double beat, bool alt, int questionVariant, float length = 4f)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
if (length <= 2f) return;
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
|
|
|
reporterAnim.DoScaledAnimationAsync("WubbaLubbaDubbaThatTrue", 0.4f);
|
|
|
|
List<MultiSound.Sound> qSounds = new List<MultiSound.Sound>();
|
|
|
|
if (alt)
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wub{currentQuestion}", beat));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wubba{currentQuestion}-1", beat));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/wubba{currentQuestion}-2", beat + 0.25f));
|
|
|
|
}
|
|
|
|
float extend = length - 3f;
|
|
|
|
int totalExtend = 0;
|
|
|
|
if (extend > 0f)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < extend; i++)
|
|
|
|
{
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-1", beat + i + 0.5f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-2", beat + i + 0.75f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-3", beat + i + 1f ));
|
|
|
|
qSounds.Add(new MultiSound.Sound($"ringside/dubba{currentQuestion}-4", beat + i + 1.25f ));
|
|
|
|
totalExtend++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MultiSound.Play(qSounds.ToArray(), forcePlay: true);
|
|
|
|
ThatTrue(beat + totalExtend, currentQuestion);
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void PreQuestion(double beat, int questionVariant, float length = 4f)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
if (GameManager.instance.currentGame != "ringside") return;
|
|
|
|
if (instance == null) return;
|
|
|
|
if (length <= 2f)
|
|
|
|
{
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat - 0.5f, delegate { reporterAnim.DoScaledAnimationAsync("WubbaLubbaDubbaThatTrue", 0.4f); }),
|
|
|
|
});
|
|
|
|
ThatTrue(beat - 1, currentQuestion);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void ThatTrue(double beat, int currentQuestion)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/that{currentQuestion}", beat + 0.5f),
|
|
|
|
new MultiSound.Sound($"ringside/true{currentQuestion}", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
ScheduleInput(beat, 2f, InputType.STANDARD_DOWN, JustQuestion, Miss, Nothing);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.5f, delegate { reporterAnim.DoScaledAnimationAsync("ThatTrue", 0.5f); }),
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
new BeatAction.Action(beat + 1.5f, delegate { canBop = false; }),
|
|
|
|
new BeatAction.Action(beat + 2.5f, delegate { canBop = true; })
|
2023-02-04 02:50:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void BigGuy(double beat, int questionVariant)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
int currentQuestion = questionVariant;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Random) currentQuestion = UnityEngine.Random.Range(1, 4);
|
2023-02-04 17:52:13 +00:00
|
|
|
reporterAnim.DoScaledAnimationAsync("Woah", 0.5f);
|
2023-02-04 02:50:42 +00:00
|
|
|
float youBeat = 0.65f;
|
|
|
|
if (currentQuestion == (int)QuestionVariant.Third) youBeat = 0.7f;
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/woah{currentQuestion}", beat),
|
|
|
|
new MultiSound.Sound($"ringside/you{currentQuestion}", beat + youBeat),
|
|
|
|
new MultiSound.Sound($"ringside/go{currentQuestion}", beat + 1f),
|
|
|
|
new MultiSound.Sound($"ringside/big{currentQuestion}", beat + 1.5f),
|
|
|
|
new MultiSound.Sound($"ringside/guy{currentQuestion}", beat + 2f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
|
|
|
|
ScheduleInput(beat, 2.5f, InputType.STANDARD_DOWN, JustBigGuyFirst, MissBigGuyOne, Nothing);
|
|
|
|
ScheduleInput(beat, 3f, InputType.STANDARD_DOWN, JustBigGuySecond, MissBigGuyTwo, Nothing);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 2f, delegate { reporterAnim.Play("True", 0, 0); }),
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
new BeatAction.Action(beat + 2.25f, delegate { canBop = false; }),
|
|
|
|
new BeatAction.Action(beat + 3.5f, delegate { canBop = true; })
|
2023-02-04 02:50:42 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public static void PoseForTheFans(double beat, bool and, int variant, bool keepZoomedOut, float newspaperBeats)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
if (and)
|
|
|
|
{
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("ringside/poseAnd", beat - 0.5f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
}
|
|
|
|
int poseLine = variant;
|
|
|
|
if (poseLine == 3) poseLine = UnityEngine.Random.Range(1, 3);
|
|
|
|
MultiSound.Play(new MultiSound.Sound[]
|
|
|
|
{
|
|
|
|
new MultiSound.Sound($"ringside/pose{poseLine}", beat),
|
|
|
|
new MultiSound.Sound($"ringside/for{poseLine}", beat + 0.5f),
|
|
|
|
new MultiSound.Sound($"ringside/the{poseLine}", beat + 0.75f),
|
|
|
|
new MultiSound.Sound($"ringside/fans{poseLine}", beat + 1f),
|
|
|
|
}, forcePlay: true);
|
|
|
|
if (GameManager.instance.currentGame == "ringside")
|
2023-02-05 19:48:41 +00:00
|
|
|
{
|
|
|
|
Ringside.instance.QueuePose(beat, keepZoomedOut, newspaperBeats);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
queuedPoses.Add(new QueuedPose { beat = beat, keepZoomedOut = keepZoomedOut, newspaperBeats = newspaperBeats});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void QueuePose(double beat, bool keepZoomedOut, float newspaperBeats)
|
2023-02-05 19:48:41 +00:00
|
|
|
{
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
|
|
|
reporterShouldHeart = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterShouldHeart = false;
|
|
|
|
}
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
new BeatAction.Action(beat, delegate
|
|
|
|
{
|
|
|
|
audienceAnim.DoScaledAnimationAsync("PoseAudience", 0.25f);
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("PreparePose", 0.25f);
|
|
|
|
canBop = false;
|
|
|
|
}),
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 1, delegate { PoseCheck(beat); }),
|
Minigames Patch Part 2 (#508)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* Mahou Tsukai Rework (#502)
* fixed not being able to whiff in tap trial
* bored meeting fixes
* more board meeting fix
* ww now uses z axis instead of scale
* Inputs are now reworked in mahou tsukai
* Fixed the particle effect
* Game Switch Black Flash is now beat-based. (#503)
* Game switch flashes are now 0.25 beats long
* ambient glow now turns black when the game switch flash is on
* you can now set the void color, it doesn't work with game switch flashes
* black
* fixed! (#504)
* Quiz Show and Tambourine Reworks (#505)
* Tambourine fully reworked
* quiz show rework part 1
* quiz show rework part 2
* oopsie doopsie
* el fix numbah two
* In CheerReaders.cs, quotation marks were aptly added, and references … (#506)
* Update issue template to include .riq/.zip info (#483)
Co-authored-by: patata <patataofcourse@gmail.com>
* Pull release 1 (#484)
* Squashed commit of the following:
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Squashed commit of the following:
commit 0d25221b71c3797a7447663f62e5b620898754fe
Merge: 5869d212 9163085d
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 16:40:52 2023 +0000
Merge pull request #478 from evdial/working-dough
Working Dough Tweaks
commit 9163085d7ab5bea1ab36d6c5659e08c968ecd87e
Merge: 6592a5f2 5869d212
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 17 12:40:06 2023 -0400
Merge branch 'release_1' into pr/478
commit 5869d212bcc3de47aff18e0334f1919d54cd7fa2
Author: patata <patataofcourse@gmail.com>
Date: Sat Jun 17 17:20:15 2023 +0200
Update issue template to include .riq/.zip info
commit 6592a5f202f70bf483dd7274054dc0e9c6dd7b7f
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 15:05:07 2023 -0400
assbuns
commit 11a4c090a1ee0122d369d61ebb1637a86bb433f6
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:56:40 2023 +0200
made small idle not crazy
commit 45e7d81b0f32afc05022983e071ec8eab3b1d407
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:33:57 2023 -0400
fsd
commit 47efa3e4f38930b4bea2d6c04514603a97522e1b
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 14:16:38 2023 -0400
anim
commit c6fb8880a0e8529e87b7f3b6dc4255ec676890db
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Thu Jun 15 20:13:11 2023 +0200
Fixed stuff also scaled now yippee
commit 16ce508b03536aa82f2e3dbc616481d573c7d8bc
Author: ev <85412919+evdial@users.noreply.github.com>
Date: Thu Jun 15 13:50:10 2023 -0400
many
commit 37b80a33c7d242f35ca3dd65a8adc27f17c659e5
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:28:21 2023 -0400
Squashed commit of the following: (#474)
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
commit 2c628a41093ab02d8dd26b246941c49e97c33aa7
Merge: 4fde418c 6246a144
Author: minenice55 <star.elementa@gmail.com>
Date: Wed Jun 14 01:23:31 2023 +0000
Merge pull request #473 from minenice55/easings-fix
Enum Parsing Fix
commit 6246a144b6c3b52d30df6616d62ab4456596b5c1
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:21:13 2023 -0400
fix all parsing of enums, removed the "special case" for eases
update to latest Jukebox
commit 4fde418c33d34ab9ed6ff18675d2bcaa7cbea63f
Merge: b9043582 50bc8765
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:15 2023 +0000
Merge pull request #469 from minenice55/jukebox-update
Jukebox Package Update
commit b90435825af4901067545159e4a5201e30772684
Merge: eec3c09a 73e9efd4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 21:39:08 2023 +0000
Merge pull request #458 from AstrlJelly/MiscAdditions_4
Bug Fixes + Feature Additions
commit 73e9efd4b159d239d3e3bbbe3841382577779dc2
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:38:24 2023 -0400
add "updater" for the old marching entity
commit b8d149743aebd1ff1f299d0ef4b7b7dbc430789c
Merge: 4291333c eec3c09a
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 17:22:01 2023 -0400
Merge branch 'release_1' into pr/458
commit 50bc876509762b7b9f551f66126b6e9c6f181ad4
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:55:02 2023 -0400
let play mode start if no song file is loaded
fix issue with loading large audio files
commit eec3c09aa892a04372ee2a6b94f0f0d4d186ef1d
Merge: a0d70933 990af323
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 18:32:40 2023 +0000
Merge pull request #471 from Rapandrasmus/FixWorkingDoughCurve
Fixed weird curve stuff on game switch in working dough
commit 990af323792e23a7d9ccabacd19f0e650f6ed74e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 19:24:13 2023 +0200
Fixed weird curve stuff on game switch in working dough
commit a0d7093345214c690d6fd0f671cfcad26f62e057
Merge: bdef3f95 3d19e75e
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 16:09:21 2023 +0000
Merge pull request #470 from Rapandrasmus/WorkingDoughFixes
Fixed small balls not working in working dough
commit 3d19e75e1a42eb1580f9769e84d6afa8a9332f61
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 18:07:13 2023 +0200
Fixed small balls not working in working dough
commit bdef3f95c3c0f564d57bd048895e93ae7c3bef6f
Merge: 8954b8c2 0bfafac6
Author: minenice55 <star.elementa@gmail.com>
Date: Tue Jun 13 14:56:58 2023 +0000
Merge pull request #467 from Rapandrasmus/WorkingDoughRework
Working Dough rework
commit 0bfafac6fe9af68547b92e48321e54dd0221f469
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:13:08 2023 +0200
modernised rockers pass turn
commit d770266d8107e88f98311b824fce24e7222cb993
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 16:03:08 2023 +0200
Rhythm tweezers pass turn now works like working dough
commit 2109c99a9585461c997fcb44fd3fd45b59c4134c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 15:51:35 2023 +0200
gandw on balls has been added
commit 785abf84862eef2b124bcad6fd8319ed757b1a70
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 14:59:56 2023 +0200
Proper inactive handling now
commit 0a92b7bd690498a4d89e9db6c40c0cc126c07cd2
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:52:15 2023 +0200
OnSpawnBall reimplemented
commit a14aacc181cebcc82faddee715960e80245c23d3
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Tue Jun 13 13:37:09 2023 +0200
new sounds
commit 8b0544246dd4f9125bb1f512cb2c65b9593c2d82
Author: minenice55 <star.elementa@gmail.com>
Date: Mon Jun 12 17:18:37 2023 -0400
update Jukebox to latest version
fixes for inferred entity loading
commit d8ff6744c058ab2f93bd18f9456764e0451cbf85
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 21:36:57 2023 +0200
ball transporter anims for pass turn
commit d283624b0705db36f351a113c00669b977dbde2e
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 20:38:48 2023 +0200
working dough converted, need to fix eveerything though
commit 5b3c59eabd98959a5f9fdfce44a8f8e777bcce4f
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 18:36:41 2023 +0200
Converted everything to new curves and made playerballs handle themselves input-wise
commit dee630ea45134c91388438a6930d807f53fdd595
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 14:04:32 2023 +0200
Some new curves
commit 31e8890190a994c94183d9fad5eb2ee5dcd14d6c
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 12:03:21 2023 +0200
Rockers can do it too now
commit 76bf6eefa65208f2856d30bf6acc75af6a5b9139
Author: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Date: Mon Jun 12 11:58:31 2023 +0200
You can now place inputs on top of pass turn for rhythm tweezers
commit 8954b8c2690223e4e9cbcd456bc4c5bf5ad1cabb
Merge: 743e954e ce3e6f2d
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:55:40 2023 -0400
Merge branch 'master' into release_1
commit 743e954e05eefd75c7b7b951a71d70c1ba97c440
Merge: 5af551b3 8929cd56
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 19:53:47 2023 +0000
Merge pull request #465 from minenice55/dont_infer_track
Don't infer the track field when importing converted v0 riq coming from unknown origin
commit 8929cd5618d253682848e66dfdabd24066661000
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 15:52:14 2023 -0400
don't infer track when importing a v0 riq from another program
commit 5af551b32eb33eb2505746afbc0e973175bc5d45
Author: minenice55 <star.elementa@gmail.com>
Date: Sun Jun 11 12:12:25 2023 -0400
make base datamodels for special entity reading (#463)
* make base datamodels for special entity reading
* fix crop stomp breaking when no game switch or remix end is set
* fix save shortcut
fix loading charts with no music
commit 4291333cb0491450a147da4de5541ce3bd6db7a6
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 23:00:30 2023 -0400
add updater for marching orders turn
commit 82da6da741348f45610568141ddd4ba422f286f0
Merge: 52a4d2b6 411b9a3c
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:36:10 2023 -0400
Merge branch 'release_1' into pr/458
commit 411b9a3cb1c46d79efebd7c04640ccbdb6928feb
Merge: b6c222a9 afc665ed
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:30:32 2023 -0400
Merge branch 'master' into release_1
commit b6c222a981a056e433d80757702b712097a88937
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 22:27:58 2023 -0400
editor fixes (#459)
* ditch loading dialog
doesn't show up when it's supposed to
* format song offset in editor
* remove VorbisPlugin
* Update Editor.cs
commit 52a4d2b65cde2c292df52cc14a9a8ae98214a1ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:55:10 2023 -0400
convert float to double and all that
commit aa8f531466706880a822d89cbd6a4c77f0c1ce6d
Merge: 242b076f afc665ed
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 16:01:44 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit 242b076f0994fe8ee8e553d66877711a9f57b6c2
Merge: db653d5a 2b0ced2f
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:21:22 2023 -0400
Merge remote-tracking branch 'upstream/master' into MiscAdditions_4
commit db653d5a5221b913a718081aa7f14655d91ac56b
Author: AstrlJelly <bdlawson115@gmail.com>
Date: Sat Jun 10 15:18:45 2023 -0400
a lot
* munchy monk input + mustache fixes
* fork lifter and pajama party bopping
* meat grinder miss bop fix
* cloud monkey Real
* marching orders Go! was broken
* force march doesn't break when it's too early from a game switch
* you can use the March! block without the marching now
commit 50a1b7bcdbb4cebf4247d1220e559db2cd0e44ac
Author: minenice55 <star.elementa@gmail.com>
Date: Sat Jun 10 15:13:29 2023 -0400
Integration of Jukebox Library (#451)
* add Jukebox library
todo:
- saving / loading of new format
- inferrence of unknown data like past versions
- move the temporary float casts to proper use of double
- make sound related functions take double for timing
- inform people that the Jukebox sound player was renamed to SoundByte lol
* make sound, input scheduling, and super curve use double precision
* successfully load charts
* editor works again
v1 riqs can be saved and loaded
* first tempo and volume markers are unmovable
fix loading of charts' easing values
* use gsync / freesync
* update Jukebox refs to SoundByte
* game events use double part 1
Air Rally - Glee Club converted
* don't load song if chart load fails
* finish conversion of all minigames
* remove editor waveform toggle
* timeline now respects added song offset length
clear cache files on app close
prepped notes for dsp sync
* update timeline length when offset changed
* update to latest Jukebox
* make error panel object in global game manager
* improve conductor music scheduling
* added error message box
fix first game events sometimes not playing
* Editor Additions (#479)
* favoriting and pick block
favoriting needs to not break after previewing (maybe make it persistent in the settings file?)
pick block needs to pick the icon, too. and preferably scroll to it as well
* final star anim + automatic icon game switching
before i make any more changes im making a checkpoint here cuz i know it works
* i want to add a way to specify which event SwitchGame() will switch to (because that's a cool feature for pick block)
* i'll have to figure out how to auto scroll to the game when the icon is selected
* the star now fully works, even between preview switches :+1:
* fix the rest of the stuff
the event name gets colored correctly and hidden games are skipped over, but still loaded.
also i built mm ass buns
* tweaks + zoom and sorting
this stuff will be in the pr desc so it doesn't matter
* oop one more thing
* icons look better now :D
mipmaps to the rescue
* double date fix
* Merge pull request #486 from RHeavenStudio/actions_rework
Rework GitHub Actions and build script
* add ab meta to gitignore (#489)
* Sound Scheduling Improvements (#491)
* port conductor adjustments
* scheduled sounds prebake
* allow aiff files to be imported
add vbr mp3 warning to readme
* improve wording
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* CNR API Internal Rework (#488)
* Prep stuff
* Tweezers now spawn in
* Started converting tweezers
* I hate <1 beat intervals
* Actually nvm
* fixed a bug
* You can chain intervals now, stack them if you really wanted
* Pass turn checks if crhandlerinstance exists
* Fixed hairs being deleted by onion switch
* Rockers rerewritten
* working dough rerewritten
* Games fixes/reworks patch (#501)
* ghosts are scaled now
* Lockstep fully reworked
* mr. bach has been implemented
* Space dance fixes
* oops
* Tap trial rework part 1
* tap trial rework part 2
* oopsie
* Gramps Talk Update
* Space Dance Voice Offsets
* Giraffe done! (Except miss anim)
* bg is not showing up for some reason
* bg not rendering fixed + giraffe fixed
* scrolling done
* fixed space dance and space soccer bg scrolls
* fixed rockers bugs
* adjustment
* fixed el inaccuracies
* particle fix
* changed pitch and volume of monkey tap
* miss anim
* megamix face for girl
* Proper miss anim implementation
* Added force stepping event
* miss anim fix
---------
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* In CheerReaders.cs, quotation marks were aptly added, and references to the girls were more-so neutralized. Consider this my cheer.
* revert capitalization and quotations while keeping grammar changes
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: Rapandrasmus <78219215+Rapandrasmus@users.noreply.github.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
* oops
* add manually triggering build action to workflows (#507)
* Crop stomp fixes part 1
* crop stomp part 2
* Crop stomp part 3
* fixed mole sound
* ringside, tap trial and space dance fixes
* fixed off/onbeat switches being jank in lockstep
* fixed dispense sound not playing on gameswitch in space soccer
* clappy trio and sneaky spirits persistance
---------
Co-authored-by: minenice55 <star.elementa@gmail.com>
Co-authored-by: patata <patataofcourse@gmail.com>
Co-authored-by: AstrlJelly <bdlawson115@gmail.com>
Co-authored-by: saladplainzone <chocolate2890mail@gmail.com>
Co-authored-by: ev <85412919+evdial@users.noreply.github.com>
Co-authored-by: Xylon <40894547+scriptorluminary@users.noreply.github.com>
2023-07-24 14:19:54 +00:00
|
|
|
new BeatAction.Action(beat + 4f, delegate
|
|
|
|
{
|
|
|
|
if (shouldBop)
|
|
|
|
{
|
|
|
|
if (UnityEngine.Random.Range(1, 18) == 1)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BopPec");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Bop");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else wrestlerAnim.Play("Idle", 0, 1);
|
|
|
|
reporterAnim.DoUnscaledAnimation("IdleReporter");
|
|
|
|
shouldNotInput = false;
|
|
|
|
canBop = true;
|
|
|
|
}),
|
2023-02-05 19:48:41 +00:00
|
|
|
});
|
|
|
|
if (!keepZoomedOut)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
keepZoomOut = true;
|
|
|
|
blackVoid.color = Color.black;
|
2023-05-28 18:48:41 +00:00
|
|
|
GameObject spawnedNewsPaper = Instantiate(newspaper, transform);
|
|
|
|
spawnedNewsPaper.SetActive(true);
|
|
|
|
currentNewspaper = spawnedNewsPaper;
|
|
|
|
wrestlerNewspaperAnim = spawnedNewsPaper.transform.GetChild(1).GetComponent<Animator>();
|
|
|
|
reporterNewspaperAnim = spawnedNewsPaper.transform.GetChild(2).GetComponent<Animator>();
|
2023-02-05 19:48:41 +00:00
|
|
|
if (UnityEngine.Random.Range(1, 3) == 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
spawnedNewsPaper.GetComponent<Animator>().Play("NewspaperEnter", 0, 0);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
else
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
spawnedNewsPaper.GetComponent<Animator>().Play("NewspaperEnterRight", 0, 0);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
if (!hitPose)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
wrestlerNewspaperAnim.Play($"Miss{UnityEngine.Random.Range(1, 7)}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("IdleReporterNewspaper", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
kidsLaugh = SoundByte.PlayOneShotGame("ringside/kidslaugh", -1, 1, 1, true);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Pose{currentPose}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("HeartReporterNewspaper", 0, 0);
|
|
|
|
hitPose = true;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3f + newspaperBeats, delegate
|
|
|
|
{
|
|
|
|
blackVoid.color = new Color(1f, 1f, 1f, 0);
|
2023-05-28 18:48:41 +00:00
|
|
|
Destroy(currentNewspaper); currentNewspaper = null;
|
2023-02-05 19:48:41 +00:00
|
|
|
lastCamPos = new Vector3(0, 0, -10);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.KillLoop(kidsLaugh, 0.25f);
|
2023-02-05 19:48:41 +00:00
|
|
|
keepZoomOut = false;
|
|
|
|
})
|
|
|
|
});
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3.99f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
lastCamPos = new Vector3(0, 0, -10);
|
|
|
|
keepZoomOut = false;
|
|
|
|
}),
|
2023-02-04 02:50:42 +00:00
|
|
|
});
|
2023-02-05 19:48:41 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 2.5f, delegate
|
|
|
|
{
|
|
|
|
lastCamPos = currentCamPos;
|
|
|
|
keepZoomOut = true;
|
|
|
|
})
|
|
|
|
});
|
|
|
|
if (newspaperBeats > 0)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
new BeatAction.Action(beat + 3f, delegate
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-02-05 19:48:41 +00:00
|
|
|
blackVoid.color = Color.black;
|
2023-05-28 18:48:41 +00:00
|
|
|
GameObject spawnedNewsPaper = Instantiate(newspaper, transform);
|
|
|
|
spawnedNewsPaper.SetActive(true);
|
|
|
|
currentNewspaper = spawnedNewsPaper;
|
|
|
|
wrestlerNewspaperAnim = spawnedNewsPaper.transform.GetChild(1).GetComponent<Animator>();
|
|
|
|
reporterNewspaperAnim = spawnedNewsPaper.transform.GetChild(2).GetComponent<Animator>();
|
2023-02-05 19:48:41 +00:00
|
|
|
if (UnityEngine.Random.Range(1, 3) == 1)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
spawnedNewsPaper.GetComponent<Animator>().Play("NewspaperEnter", 0, 0);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
else
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
spawnedNewsPaper.GetComponent<Animator>().Play("NewspaperEnterRight", 0, 0);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
if (!hitPose)
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Miss{UnityEngine.Random.Range(1, 7)}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("IdleReporterNewspaper", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
kidsLaugh = SoundByte.PlayOneShotGame("ringside/kidslaugh", -1, 1, 1, true);
|
2023-02-05 19:48:41 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
wrestlerNewspaperAnim.Play($"Pose{currentPose}Newspaper", 0, 0);
|
|
|
|
reporterNewspaperAnim.Play("HeartReporterNewspaper", 0, 0);
|
|
|
|
hitPose = true;
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3f + newspaperBeats, delegate
|
|
|
|
{
|
|
|
|
blackVoid.color = new Color(1f, 1f, 1f, 0);
|
2023-05-28 18:48:41 +00:00
|
|
|
Destroy(currentNewspaper); currentNewspaper = null;
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.KillLoop(kidsLaugh, 0.25f);
|
2023-02-05 19:48:41 +00:00
|
|
|
})
|
|
|
|
});
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void UpdateCameraZoom()
|
|
|
|
{
|
|
|
|
if (currentZoomIndex < allCameraEvents.Count && currentZoomIndex >= 0)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
currentZoomCamBeat = (float)allCameraEvents[currentZoomIndex].beat;
|
2023-02-04 02:50:42 +00:00
|
|
|
currentCamPos = new Vector3(poseFlash.transform.position.x, poseFlash.transform.position.y, -21.5f);
|
2023-06-10 19:13:29 +00:00
|
|
|
lastEase = (Util.EasingFunction.Ease)allCameraEvents[currentZoomIndex]["ease"];
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void PoseCheck(double beat)
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
|
|
|
ScheduleInput(beat, 2f, InputType.STANDARD_ALT_DOWN, JustPoseForTheFans, MissPose, Nothing);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ChangeFlashColor(Color color, float beats)
|
|
|
|
{
|
|
|
|
var seconds = Conductor.instance.secPerBeat * beats;
|
|
|
|
|
|
|
|
if (flashTween != null)
|
|
|
|
flashTween.Kill(true);
|
|
|
|
|
|
|
|
if (seconds == 0)
|
|
|
|
{
|
|
|
|
flashWhite.color = color;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flashTween = flashWhite.DOColor(color, seconds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void FadeFlashColor(Color start, Color end, float beats)
|
|
|
|
{
|
|
|
|
ChangeFlashColor(start, 0f);
|
|
|
|
ChangeFlashColor(end, beats);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ChangeBGColor(Color color, float beats)
|
|
|
|
{
|
|
|
|
var seconds = Conductor.instance.secPerBeat * beats;
|
|
|
|
|
|
|
|
if (bgTween != null)
|
|
|
|
bgTween.Kill(true);
|
|
|
|
|
|
|
|
if (seconds == 0)
|
|
|
|
{
|
|
|
|
bg.color = color;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flashTween = bg.DOColor(color, seconds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void FadeBGColor(Color start, Color end, float beats)
|
|
|
|
{
|
|
|
|
ChangeBGColor(start, 0f);
|
|
|
|
ChangeBGColor(end, beats);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void ReporterBlink()
|
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
if (reporterAnim.GetCurrentAnimatorStateInfo(0).IsName("IdleReporter"))
|
2023-02-04 02:50:42 +00:00
|
|
|
{
|
2023-05-28 18:48:41 +00:00
|
|
|
reporterAnim.DoUnscaledAnimation("BlinkReporter");
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
2023-05-28 18:48:41 +00:00
|
|
|
float randomTime = UnityEngine.Random.Range(0.3f, 1.8f);
|
|
|
|
Invoke("ReporterBlink", randomTime);
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void JustQuestion(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Cough", 0.5f);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/cough");
|
2023-02-04 02:50:42 +00:00
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessQuestion(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessQuestion(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
wrestlerAnim.DoScaledAnimationAsync("Ye", 0.5f);
|
|
|
|
reporterAnim.Play("ExtendSmile", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/ye{UnityEngine.Random.Range(1, 4)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { SoundByte.PlayOneShotGame("ringside/yeCamera"); }),
|
2023-02-04 02:50:42 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 0.5f); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { flashObject.SetActive(true); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("SmileReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.6f, delegate { flashObject.SetActive(false); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustBigGuyFirst(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
missedBigGuy = true;
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/muscles1");
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyOne", 0.5f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessBigGuyFirst();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessBigGuyFirst()
|
|
|
|
{
|
|
|
|
missedBigGuy = false;
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/muscles1");
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyOne", 0.5f);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustBigGuySecond(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/muscles2");
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyTwo", 0.5f);
|
|
|
|
if (!missedBigGuy)
|
|
|
|
{
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessBigGuySecond(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessBigGuySecond(PlayerActionEvent caller)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/muscles2");
|
2023-02-04 02:50:42 +00:00
|
|
|
wrestlerAnim.DoScaledAnimationAsync("BigGuyTwo", 0.5f);
|
|
|
|
if (!missedBigGuy)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendSmile", 0, 0);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { SoundByte.PlayOneShotGame("ringside/musclesCamera"); }),
|
2023-02-04 02:50:42 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("SmileReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 0.5f); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { flashObject.SetActive(true); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.6f, delegate { flashObject.SetActive(false); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public void JustPoseForTheFans(PlayerActionEvent caller, float state)
|
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
shouldNotInput = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
|
|
|
wrestlerTransform.localScale = new Vector3(1.2f, 1.2f, 1f);
|
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}Raw");
|
2023-02-04 02:50:42 +00:00
|
|
|
reporterAnim.Play("IdleMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SuccessPoseForTheFans(caller);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void SuccessPoseForTheFans(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
wrestlerTransform.localScale = new Vector3(1.2f, 1.2f, 1f);
|
|
|
|
int randomPose = UnityEngine.Random.Range(1, 7);
|
|
|
|
currentPose = randomPose;
|
|
|
|
wrestlerAnim.Play($"Pose{randomPose}", 0, 0);
|
|
|
|
if (reporterShouldHeart)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("HeartReporter", 0, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExcitedReporter", 0, 0);
|
|
|
|
}
|
|
|
|
hitPose = true;
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/yell{UnityEngine.Random.Range(1, 7)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
FadeFlashColor(Color.white, new Color(1, 1, 1, 0), 1f);
|
|
|
|
FadeBGColor(Color.black, defaultBGColorLight, 1f);
|
|
|
|
flashParticles.Play();
|
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.1f, delegate { wrestlerTransform.localScale = new Vector3(1f, 1f, 1f); }),
|
2023-06-10 19:13:29 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { SoundByte.PlayOneShotGame("ringside/poseCamera"); }),
|
2023-02-04 02:50:42 +00:00
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { flashParticles.Stop(); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1f, delegate { poseFlash.SetActive(true); poseFlash.GetComponent<Animator>().Play("PoseFlashing", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 1.99f, delegate { poseFlash.SetActive(false); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Miss(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissBigGuyOne(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
missedBigGuy = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissBigGuyTwo(PlayerActionEvent caller)
|
|
|
|
{
|
|
|
|
reporterAnim.Play("ExtendMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
BeatAction.New(instance.gameObject, new List<BeatAction.Action>()
|
|
|
|
{
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.5f, delegate { reporterAnim.Play("IdleMiss", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { reporterAnim.Play("IdleReporter", 0, 0); }),
|
|
|
|
new BeatAction.Action(caller.startBeat + caller.timer + 0.9f, delegate { wrestlerAnim.Play("Idle", 0, 0); }),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public void MissPose(PlayerActionEvent caller)
|
|
|
|
{
|
2023-02-04 17:52:13 +00:00
|
|
|
shouldNotInput = true;
|
2023-02-04 02:50:42 +00:00
|
|
|
reporterAnim.Play("IdleMiss", 0, 0);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame($"ringside/huhaudience{UnityEngine.Random.Range(0, 2)}");
|
2023-02-04 02:50:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void Nothing(PlayerActionEvent caller){}
|
|
|
|
}
|
|
|
|
}
|