2022-06-26 06:48:14 +00:00
|
|
|
using HeavenStudio.Util;
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
2023-06-06 18:59:56 +00:00
|
|
|
using HeavenStudio.Common;
|
2023-10-29 19:44:47 +00:00
|
|
|
using HeavenStudio.InputSystem;
|
2022-06-26 06:48:14 +00:00
|
|
|
|
|
|
|
namespace HeavenStudio.Games.Loaders
|
|
|
|
{
|
|
|
|
using static Minigames;
|
|
|
|
public static class AgbSpaceDanceLoader
|
|
|
|
{
|
|
|
|
public static Minigame AddGame(EventCaller eventCaller) {
|
2023-04-02 02:28:23 +00:00
|
|
|
return new Minigame("spaceDance", "Space Dance", "0014d6", false, false, new List<GameAction>()
|
2022-06-26 06:48:14 +00:00
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new GameAction("bop", "Bop")
|
|
|
|
{
|
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.EpicBop(e.beat, e.length, e["auto"], e["bop"], e["grampsAuto"], e["gramps"]); },
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
|
|
|
new Param("bop", true, "Dancers Bop", "Toggle if the dancers should bop for the duration of this event."),
|
|
|
|
new Param("auto", false, "Dancers Bop (Auto)", "Toggle if the dancers should automatically bop until another Bop event is reached."),
|
|
|
|
new Param("gramps", false, "Gramps Bop", "Toggle if Space Gramps should bop for the duration of this event."),
|
|
|
|
new Param("grampsAuto", false, "Gramps Bop (Auto)", "Toggle if Space Gramps should automatically bop until another Bop event is reached.")
|
|
|
|
},
|
|
|
|
resizable = true,
|
|
|
|
defaultLength = 4f
|
|
|
|
},
|
2022-08-21 03:13:52 +00:00
|
|
|
new GameAction("turn right", "Turn Right")
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.DoTurnRight(e.beat, e["gramps"]); },
|
|
|
|
preFunction = delegate { var e = eventCaller.currentEntity; SpaceDance.TurnRightSfx(e.beat, e["whoSpeaks"]); },
|
2023-02-27 20:13:10 +00:00
|
|
|
defaultLength = 2.0f,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("whoSpeaks", SpaceDance.WhoSpeaks.Dancers, "Speaker", "Choose who will say the voice line."),
|
|
|
|
new Param("gramps", false, "Space Gramps Animations", "Toggle if Space Gramps will turn right with the dancers.")
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-08-21 03:13:52 +00:00
|
|
|
},
|
|
|
|
new GameAction("sit down", "Sit Down")
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.DoSitDown(e.beat, e["gramps"]); },
|
|
|
|
preFunction = delegate { var e = eventCaller.currentEntity; SpaceDance.SitDownSfx(e.beat, e["whoSpeaks"]); },
|
2023-02-27 20:13:10 +00:00
|
|
|
defaultLength = 2.0f,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("whoSpeaks", SpaceDance.WhoSpeaks.Dancers, "Speaker", "Choose who will say the voice line."),
|
|
|
|
new Param("gramps", false, "Space Gramps Animations", "Toggle if Space Gramps will sit down with the dancers.")
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-08-21 03:13:52 +00:00
|
|
|
},
|
|
|
|
new GameAction("punch", "Punch")
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.DoPunch(e.beat, e["gramps"]); },
|
|
|
|
preFunction = delegate { var e = eventCaller.currentEntity; SpaceDance.PunchSfx(e.beat, e["whoSpeaks"]); },
|
2023-02-27 20:13:10 +00:00
|
|
|
defaultLength = 2.0f,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("whoSpeaks", SpaceDance.WhoSpeaks.Dancers, "Speaker", "Choose who will say the voice line."),
|
|
|
|
new Param("gramps", false, "Space Gramps Animations", "Toggle if Space Gramps will punch with the dancers.")
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-08-21 03:13:52 +00:00
|
|
|
},
|
2023-02-27 20:13:10 +00:00
|
|
|
new GameAction("shootingStar", "Shooting Star")
|
2022-08-21 03:13:52 +00:00
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.UpdateShootingStar(e.beat, e.length, (EasingFunction.Ease)e["ease"]); },
|
2023-02-27 20:13:10 +00:00
|
|
|
defaultLength = 2f,
|
|
|
|
resizable = true,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("ease", EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.")
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-08-21 03:13:52 +00:00
|
|
|
},
|
2023-02-27 20:13:10 +00:00
|
|
|
new GameAction("changeBG", "Change Background Color")
|
|
|
|
{
|
2023-08-12 03:30:03 +00:00
|
|
|
function = delegate {var e = eventCaller.currentEntity; SpaceDance.instance.BackgroundColor(e.beat, e.length, e["start"], e["end"], e["ease"]); },
|
2023-02-27 20:13:10 +00:00
|
|
|
defaultLength = 1f,
|
|
|
|
resizable = true,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("start", SpaceDance.defaultBGColor, "Start Color", "Set the color at the start of the event."),
|
|
|
|
new Param("end", SpaceDance.defaultBGColor, "End Color", "Set the color at the end of the event."),
|
|
|
|
new Param("ease", Util.EasingFunction.Ease.Linear, "Ease", "Set the easing of the action.")
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
|
|
|
},
|
2023-03-03 19:19:33 +00:00
|
|
|
new GameAction("grampsAnims", "Space Gramps Animations")
|
|
|
|
{
|
|
|
|
function = delegate {var e = eventCaller.currentEntity; SpaceDance.instance.GrampsAnimations(e.beat, e["type"], e["toggle"]); },
|
|
|
|
defaultLength = 0.5f,
|
|
|
|
parameters = new List<Param>()
|
|
|
|
{
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("toggle", true, "Loop", "Toggle if the animation should loop."),
|
|
|
|
new Param("type", SpaceDance.GrampsAnimationType.Talk, "Animation", "Set the animation for Space Gramps to perform.")
|
2023-03-03 19:19:33 +00:00
|
|
|
}
|
2023-06-06 18:59:56 +00:00
|
|
|
},
|
|
|
|
new GameAction("scroll", "Scrolling Background")
|
|
|
|
{
|
|
|
|
function = delegate { var e = eventCaller.currentEntity; SpaceDance.instance.UpdateScrollSpeed(e["x"], e["y"]); },
|
|
|
|
defaultLength = 1f,
|
|
|
|
parameters = new List<Param>() {
|
2024-01-15 02:04:10 +00:00
|
|
|
new Param("x", new EntityTypes.Float(-10f, 10f, 0), "Horizontal Speed", "Set how fast the background will scroll horizontally."),
|
|
|
|
new Param("y", new EntityTypes.Float(-10f, 10f, 0), "Vertical Speed", "Set how fast the background will scroll vertically."),
|
2023-06-06 18:59:56 +00:00
|
|
|
}
|
|
|
|
},
|
2023-05-28 17:34:44 +00:00
|
|
|
},
|
|
|
|
new List<string>() {"agb", "normal"},
|
|
|
|
"agbspacedance", "jp",
|
2024-03-29 02:35:07 +00:00
|
|
|
new List<string>() {"jp"},
|
|
|
|
chronologicalSortKey: 17
|
2023-05-28 17:34:44 +00:00
|
|
|
);
|
2022-06-26 06:48:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace HeavenStudio.Games
|
|
|
|
{
|
2022-06-27 00:59:27 +00:00
|
|
|
// using Scripts_SpaceDance;
|
2022-06-26 06:48:14 +00:00
|
|
|
public class SpaceDance : Minigame
|
|
|
|
{
|
2024-03-04 03:50:46 +00:00
|
|
|
public static Color defaultBGColor = new(0f, 0.161f, 0.839f);
|
2023-02-27 20:13:10 +00:00
|
|
|
public enum WhoSpeaks
|
|
|
|
{
|
|
|
|
Dancers = 0,
|
|
|
|
Gramps = 1,
|
|
|
|
Both = 2
|
|
|
|
}
|
2023-03-03 19:19:33 +00:00
|
|
|
public enum GrampsAnimationType
|
|
|
|
{
|
|
|
|
Stand = 0,
|
|
|
|
Talk = 1,
|
|
|
|
Sniff = 2
|
|
|
|
}
|
2023-02-27 20:13:10 +00:00
|
|
|
[SerializeField] SpriteRenderer bg;
|
|
|
|
[SerializeField] Animator shootingStarAnim;
|
2022-06-27 00:59:27 +00:00
|
|
|
public Animator DancerP;
|
|
|
|
public Animator Dancer1;
|
|
|
|
public Animator Dancer2;
|
|
|
|
public Animator Dancer3;
|
|
|
|
public Animator Gramps;
|
2022-06-27 16:07:27 +00:00
|
|
|
public Animator Hit;
|
2022-06-27 00:59:27 +00:00
|
|
|
public GameObject Player;
|
2023-02-27 20:13:10 +00:00
|
|
|
bool canBop = true;
|
|
|
|
bool grampsCanBop = true;
|
|
|
|
public bool spaceGrampsShouldBop = false;
|
|
|
|
float shootingStarLength;
|
2023-06-10 19:13:29 +00:00
|
|
|
double shootingStarStartBeat;
|
2023-02-27 20:13:10 +00:00
|
|
|
EasingFunction.Ease lastEase;
|
|
|
|
bool isShootingStar;
|
2023-03-03 19:19:33 +00:00
|
|
|
bool grampsLoopingAnim;
|
|
|
|
bool grampsSniffing;
|
2023-02-27 20:13:10 +00:00
|
|
|
|
2023-06-06 18:59:56 +00:00
|
|
|
[SerializeField] CanvasScroll scroll;
|
2023-07-13 00:35:47 +00:00
|
|
|
float xScrollMultiplier = 0;
|
|
|
|
float yScrollMultiplier = 0;
|
|
|
|
[SerializeField] private float xBaseSpeed = 1;
|
|
|
|
[SerializeField] private float yBaseSpeed = 1;
|
2023-06-06 18:59:56 +00:00
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public GameEvent bop = new GameEvent();
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2022-06-26 06:48:14 +00:00
|
|
|
public static SpaceDance instance;
|
|
|
|
|
2023-10-29 19:44:47 +00:00
|
|
|
const int IA_TurnPress = IAMAXCAT;
|
|
|
|
const int IA_DownPress = IAMAXCAT + 1;
|
|
|
|
const int IA_PunchPress = IAMAXCAT + 2;
|
|
|
|
|
|
|
|
protected static bool IA_PadTurnPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetPadDown(InputController.ActionsPad.Right, out dt);
|
|
|
|
}
|
|
|
|
protected static bool IA_BatonTurnPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetBatonDown(InputController.ActionsBaton.East, out dt)
|
|
|
|
&& !instance.IsExpectingInputNow(InputAction_Punch);
|
|
|
|
}
|
|
|
|
protected static bool IA_TouchTurnPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetTouchDown(InputController.ActionsTouch.Tap, out dt)
|
|
|
|
&& !(instance.IsExpectingInputNow(InputAction_Down) || instance.IsExpectingInputNow(InputAction_Punch));
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static bool IA_PadDownPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetPadDown(InputController.ActionsPad.Down, out dt);
|
|
|
|
}
|
|
|
|
protected static bool IA_BatonDownPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetBatonDown(InputController.ActionsBaton.South, out dt)
|
|
|
|
&& !instance.IsExpectingInputNow(InputAction_Punch);
|
|
|
|
}
|
|
|
|
protected static bool IA_TouchDownPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetTouchDown(InputController.ActionsTouch.Tap, out dt)
|
|
|
|
&& instance.IsExpectingInputNow(InputAction_Down);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected static bool IA_BatonPunchPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetBatonDown(InputController.ActionsBaton.Face, out dt)
|
|
|
|
&& instance.IsExpectingInputNow(InputAction_Punch);
|
|
|
|
}
|
|
|
|
protected static bool IA_TouchPunchPress(out double dt)
|
|
|
|
{
|
|
|
|
return PlayerInput.GetTouchDown(InputController.ActionsTouch.Tap, out dt)
|
|
|
|
&& instance.IsExpectingInputNow(InputAction_Punch);
|
|
|
|
}
|
|
|
|
|
|
|
|
public static PlayerInput.InputAction InputAction_Turn =
|
|
|
|
new("AgbSpaceDanceTurn", new int[] { IA_TurnPress, IA_TurnPress, IA_TurnPress },
|
|
|
|
IA_PadTurnPress, IA_TouchTurnPress, IA_BatonTurnPress);
|
|
|
|
public static PlayerInput.InputAction InputAction_Down =
|
|
|
|
new("AgbSpaceDanceDown", new int[] { IA_DownPress, IA_DownPress, IA_DownPress },
|
|
|
|
IA_PadDownPress, IA_TouchDownPress, IA_BatonDownPress);
|
|
|
|
public static PlayerInput.InputAction InputAction_Punch =
|
|
|
|
new("AgbSpaceDancePunch", new int[] { IA_PunchPress, IA_PunchPress, IA_PunchPress },
|
|
|
|
IA_PadBasicPress, IA_TouchPunchPress, IA_BatonPunchPress);
|
|
|
|
|
2022-06-26 06:48:14 +00:00
|
|
|
// Start is called before the first frame update
|
|
|
|
void Awake()
|
|
|
|
{
|
|
|
|
instance = this;
|
2023-12-05 22:38:52 +00:00
|
|
|
SetupBopRegion("spaceDance", "bop", "auto");
|
2022-06-26 06:48:14 +00:00
|
|
|
}
|
|
|
|
|
2023-11-23 16:19:39 +00:00
|
|
|
public override void OnBeatPulse(double beat)
|
|
|
|
{
|
2023-12-05 22:38:52 +00:00
|
|
|
if (BeatIsInBopRegion(beat))
|
2023-11-23 16:19:39 +00:00
|
|
|
{
|
|
|
|
Bop();
|
|
|
|
}
|
|
|
|
if (spaceGrampsShouldBop)
|
|
|
|
{
|
|
|
|
GrampsBop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-26 06:48:14 +00:00
|
|
|
// Update is called once per frame
|
|
|
|
void Update()
|
|
|
|
{
|
2023-02-27 20:13:10 +00:00
|
|
|
var cond = Conductor.instance;
|
2024-03-04 03:50:46 +00:00
|
|
|
bg.color = bgColorEase.GetColor();
|
2023-02-27 20:13:10 +00:00
|
|
|
if (cond.isPlaying && !cond.isPaused)
|
2022-06-26 06:48:14 +00:00
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
scroll.NormalizedX -= xBaseSpeed * xScrollMultiplier * Time.deltaTime;
|
|
|
|
scroll.NormalizedY -= yBaseSpeed * yScrollMultiplier * Time.deltaTime;
|
2023-02-27 20:13:10 +00:00
|
|
|
if (isShootingStar)
|
|
|
|
{
|
|
|
|
float normalizedBeat = cond.GetPositionFromBeat(shootingStarStartBeat, shootingStarLength);
|
|
|
|
if (normalizedBeat >= 0)
|
|
|
|
{
|
|
|
|
if (normalizedBeat > 1)
|
|
|
|
{
|
|
|
|
isShootingStar = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
EasingFunction.Function func = EasingFunction.GetEasingFunction(lastEase);
|
|
|
|
float newAnimPos = func(0f, 1f, normalizedBeat);
|
|
|
|
shootingStarAnim.DoNormalizedAnimation("ShootingStar", newAnimPos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-12-06 01:59:36 +00:00
|
|
|
if (!DancerP.IsPlayingAnimationNames("PunchDo", "TurnRightDo", "SitDownDo"))
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-10-29 19:44:47 +00:00
|
|
|
if (PlayerInput.GetIsAction(InputAction_Punch) && !IsExpectingInputNow(InputAction_Punch))
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("PunchDo", 0.5f);
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.Play("GrampsOhFuck", 0, 0);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2023-10-29 19:44:47 +00:00
|
|
|
if (PlayerInput.GetIsAction(InputAction_Down) && !IsExpectingInputNow(InputAction_Down))
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-10-29 19:44:47 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.Play("GrampsOhFuck", 0, 0);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2023-10-29 19:44:47 +00:00
|
|
|
if (PlayerInput.GetIsAction(InputAction_Turn) && !IsExpectingInputNow(InputAction_Turn))
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-10-29 19:44:47 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.Play("GrampsOhFuck", 0, 0);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-26 06:48:14 +00:00
|
|
|
}
|
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-06-06 18:59:56 +00:00
|
|
|
public void UpdateScrollSpeed(float scrollSpeedX, float scrollSpeedY)
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
xScrollMultiplier = scrollSpeedX;
|
|
|
|
yScrollMultiplier = scrollSpeedY;
|
2023-06-06 18:59:56 +00:00
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void GrampsAnimations(double beat, int type, bool looping)
|
2023-03-03 19:19:33 +00:00
|
|
|
{
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case (int)GrampsAnimationType.Stand:
|
|
|
|
Gramps.Play("GrampsStand", 0, 0);
|
|
|
|
grampsLoopingAnim = false;
|
|
|
|
grampsSniffing = false;
|
|
|
|
break;
|
|
|
|
case (int)GrampsAnimationType.Talk:
|
|
|
|
if (looping)
|
|
|
|
{
|
|
|
|
grampsLoopingAnim = true;
|
|
|
|
grampsSniffing = false;
|
|
|
|
GrampsTalkLoop(beat);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
grampsLoopingAnim = false;
|
|
|
|
grampsSniffing = false;
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case (int)GrampsAnimationType.Sniff:
|
|
|
|
if (looping)
|
|
|
|
{
|
|
|
|
grampsLoopingAnim = true;
|
|
|
|
grampsSniffing = true;
|
|
|
|
GrampsSniffLoop(beat);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
grampsLoopingAnim = false;
|
|
|
|
grampsSniffing = false;
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsSniff", 0.5f);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
void GrampsSniffLoop(double beat)
|
2023-03-03 19:19:33 +00:00
|
|
|
{
|
|
|
|
if (!grampsLoopingAnim || !grampsSniffing) return;
|
|
|
|
spaceGrampsShouldBop = false;
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
2023-03-03 19:19:33 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat, delegate
|
|
|
|
{
|
|
|
|
if (grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsSniff", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3, delegate
|
|
|
|
{
|
|
|
|
if (grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsSniff", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3.5f, delegate
|
|
|
|
{
|
|
|
|
if (grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsSniff", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 5.5f, delegate
|
|
|
|
{
|
|
|
|
GrampsSniffLoop(beat + 5.5f);
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
void GrampsTalkLoop(double beat)
|
2023-03-03 19:19:33 +00:00
|
|
|
{
|
|
|
|
if (!grampsLoopingAnim || grampsSniffing) return;
|
|
|
|
spaceGrampsShouldBop = false;
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
2023-03-03 19:19:33 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat + 0.66666f , delegate
|
|
|
|
{
|
|
|
|
if (!grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 1.33333f, delegate
|
|
|
|
{
|
|
|
|
if (!grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 2f, delegate
|
|
|
|
{
|
|
|
|
if (!grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3f, delegate
|
|
|
|
{
|
|
|
|
if (!grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 3.5f, delegate
|
|
|
|
{
|
|
|
|
if (!grampsSniffing && grampsLoopingAnim)
|
|
|
|
{
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsTalk", 0.5f);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 4f, delegate
|
|
|
|
{
|
|
|
|
GrampsTalkLoop(beat + 4f);
|
|
|
|
}),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void UpdateShootingStar(double beat, float length, EasingFunction.Ease ease)
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
lastEase = ease;
|
2023-02-27 20:13:10 +00:00
|
|
|
shootingStarLength = length;
|
|
|
|
shootingStarStartBeat = beat;
|
|
|
|
isShootingStar = true;
|
|
|
|
}
|
|
|
|
|
2023-07-13 00:35:47 +00:00
|
|
|
public static void TurnRightSfx(double beat, int whoSpeaks)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
|
|
|
List<MultiSound.Sound> soundsToPlay = new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/voicelessTurn", beat),
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (whoSpeaks)
|
|
|
|
{
|
|
|
|
case (int)WhoSpeaks.Dancers:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/dancerTurn", beat),
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/dancerRight", beat + 1.0f, 1, 1, false, 0.012f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Gramps:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/otherTurn", beat),
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherRight", beat + 1.0f, 1, 1, false, 0.005f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Both:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/dancerTurn", beat),
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/dancerRight", beat + 1.0f, 1, 1, false, 0.012f),
|
2023-02-27 20:13:10 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherTurn", beat),
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherRight", beat + 1.0f, 1, 1, false, 0.005f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
MultiSound.Play(soundsToPlay.ToArray(), true, true);
|
2023-07-13 00:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DoTurnRight(double beat, bool grampsTurns)
|
|
|
|
{
|
|
|
|
canBop = false;
|
|
|
|
if (grampsTurns) grampsCanBop = false;
|
2024-03-05 18:04:14 +00:00
|
|
|
ScheduleInput(beat, 1f, InputAction_Turn, JustRight, RightMiss, null);
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat, delegate
|
2023-07-13 00:35:47 +00:00
|
|
|
{
|
|
|
|
DancerP.DoScaledAnimationAsync("TurnRightStart", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("TurnRightStart", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("TurnRightStart", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("TurnRightStart", 0.5f);
|
|
|
|
if (grampsTurns) Gramps.DoScaledAnimationAsync("GrampsTurnRightStart", 0.5f);
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 1f, delegate
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
Dancer1.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
|
|
|
if (grampsTurns) Gramps.DoScaledAnimationAsync("GrampsTurnRightDo", 0.5f);
|
|
|
|
}),
|
2023-06-06 18:59:56 +00:00
|
|
|
new BeatAction.Action(beat + 1.5f, delegate { canBop = true; grampsCanBop = true; }),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
2022-06-27 00:59:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-07-13 00:35:47 +00:00
|
|
|
public static void SitDownSfx(double beat, int whoSpeaks)
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-02-27 20:13:10 +00:00
|
|
|
List<MultiSound.Sound> soundsToPlay = new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/voicelessSit", beat),
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (whoSpeaks)
|
|
|
|
{
|
|
|
|
case (int)WhoSpeaks.Dancers:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/dancerLets", beat, 1, 1, false, 0.055f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerSit", beat + 0.5f, 1, 1, false, 0.05f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerDown", beat + 1f, 1, 1, false, 0.004f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Gramps:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherLets", beat, 1, 1, false, 0.02f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherSit", beat + 0.5f, 1, 1, false, 0.064f),
|
2023-03-03 04:23:56 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherDown", beat + 1f, 1, 1, false, 0.01f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Both:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
new MultiSound.Sound("spaceDance/dancerLets", beat, 1, 1, false, 0.055f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerSit", beat + 0.5f, 1, 1, false, 0.05f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerDown", beat + 1f, 1, 1, false, 0.004f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherLets", beat, 1, 1, false, 0.02f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherSit", beat + 0.5f, 1, 1, false, 0.064f),
|
2023-03-03 04:23:56 +00:00
|
|
|
new MultiSound.Sound("spaceDance/otherDown", beat + 1f, 1, 1, false, 0.01f),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
MultiSound.Play(soundsToPlay.ToArray(), true, true);
|
2023-07-13 00:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DoSitDown(double beat, bool grampsSits)
|
|
|
|
{
|
|
|
|
canBop = false;
|
|
|
|
if (grampsSits) grampsCanBop = false;
|
2024-03-05 18:04:14 +00:00
|
|
|
ScheduleInput(beat, 1f, InputAction_Down, JustSit, SitMiss, null);
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
|
|
|
new BeatAction.Action(beat, delegate
|
2023-07-13 00:35:47 +00:00
|
|
|
{
|
|
|
|
DancerP.DoScaledAnimationAsync("SitDownStart", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("SitDownStart", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("SitDownStart", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("SitDownStart", 0.5f);
|
|
|
|
if (grampsSits) Gramps.DoScaledAnimationAsync("GrampsSitDownStart", 0.5f);
|
|
|
|
}),
|
|
|
|
new BeatAction.Action(beat + 1f, delegate
|
2023-07-13 00:35:47 +00:00
|
|
|
{
|
|
|
|
Dancer1.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
|
|
|
if (grampsSits) Gramps.DoScaledAnimationAsync("GrampsSitDownDo", 0.5f);
|
|
|
|
}),
|
2023-06-06 18:59:56 +00:00
|
|
|
new BeatAction.Action(beat + 1.5f, delegate { canBop = true; grampsCanBop = true; }),
|
2023-02-27 20:13:10 +00:00
|
|
|
});
|
2022-06-27 00:59:27 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-07-13 00:35:47 +00:00
|
|
|
public static void PunchSfx(double beat, int whoSpeaks)
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-02-27 20:13:10 +00:00
|
|
|
List<MultiSound.Sound> soundsToPlay = new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/voicelessPunch", beat),
|
|
|
|
new MultiSound.Sound("spaceDance/voicelessPunch", beat + 0.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/voicelessPunch", beat + 1f),
|
|
|
|
};
|
|
|
|
|
|
|
|
switch (whoSpeaks)
|
|
|
|
{
|
|
|
|
case (int)WhoSpeaks.Dancers:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat + 0.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat + 1f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPunch", beat + 1.5f),
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Gramps:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat + 0.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat + 1f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPunch", beat + 1.5f),
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case (int)WhoSpeaks.Both:
|
|
|
|
soundsToPlay.AddRange(new List<MultiSound.Sound>()
|
|
|
|
{
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat + 0.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPa", beat + 1f),
|
|
|
|
new MultiSound.Sound("spaceDance/dancerPunch", beat + 1.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat + 0.5f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPa", beat + 1f),
|
|
|
|
new MultiSound.Sound("spaceDance/otherPunch", beat + 1.5f),
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
MultiSound.Play(soundsToPlay.ToArray(), true, true);
|
2023-07-13 00:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void DoPunch(double beat, bool grampsPunches)
|
|
|
|
{
|
|
|
|
canBop = false;
|
|
|
|
if (grampsPunches) grampsCanBop = false;
|
2024-03-05 18:04:14 +00:00
|
|
|
ScheduleInput(beat, 1.5f, InputAction_Punch, JustPunch, PunchMiss, null);
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, new List<BeatAction.Action>()
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-07-13 00:35:47 +00:00
|
|
|
new BeatAction.Action(beat, delegate
|
|
|
|
{
|
|
|
|
DancerP.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
if (grampsPunches) Gramps.DoScaledAnimationAsync("GrampsPunchStartOdd", 0.5f);
|
|
|
|
}),
|
2023-07-13 00:35:47 +00:00
|
|
|
new BeatAction.Action(beat + 0.5f, delegate
|
|
|
|
{
|
|
|
|
DancerP.DoScaledAnimationAsync("PunchStartOuter", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("PunchStartOuter", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("PunchStartOuter", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("PunchStartOuter", 0.5f);
|
|
|
|
if (grampsPunches) Gramps.DoScaledAnimationAsync("GrampsPunchStartEven", 0.5f);
|
|
|
|
}),
|
2023-07-13 00:35:47 +00:00
|
|
|
new BeatAction.Action(beat + 1f, delegate
|
|
|
|
{
|
|
|
|
DancerP.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("PunchStartInner", 0.5f);
|
|
|
|
if (grampsPunches) Gramps.DoScaledAnimationAsync("GrampsPunchStartOdd", 0.5f);
|
|
|
|
}),
|
2023-07-13 00:35:47 +00:00
|
|
|
new BeatAction.Action(beat + 1.5f, delegate
|
|
|
|
{
|
|
|
|
Dancer1.DoScaledAnimationAsync("PunchDo", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("PunchDo", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
Dancer3.DoScaledAnimationAsync("PunchDo", 0.5f);
|
|
|
|
if (grampsPunches) Gramps.DoScaledAnimationAsync("GrampsPunchDo", 0.5f);
|
|
|
|
}),
|
2023-07-13 00:35:47 +00:00
|
|
|
new BeatAction.Action(beat + 2.5, delegate
|
|
|
|
{
|
|
|
|
canBop = true; grampsCanBop = true;
|
|
|
|
})
|
2022-06-27 00:59:27 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-06-10 19:13:29 +00:00
|
|
|
public void EpicBop(double beat, float length, bool autoDancers, bool dancers, bool autoGramps, bool gramps)
|
2023-06-06 18:59:56 +00:00
|
|
|
{
|
|
|
|
spaceGrampsShouldBop = autoGramps;
|
|
|
|
if (dancers || gramps)
|
|
|
|
{
|
|
|
|
List<BeatAction.Action> bops = new List<BeatAction.Action>();
|
|
|
|
for (int i = 0; i < length; i++)
|
|
|
|
{
|
|
|
|
if (dancers)
|
|
|
|
{
|
|
|
|
bops.Add(new BeatAction.Action(beat + i, delegate { Bop(); }));
|
|
|
|
}
|
|
|
|
if (gramps)
|
|
|
|
{
|
|
|
|
bops.Add(new BeatAction.Action(beat + i, delegate { GrampsBop(); }));
|
|
|
|
}
|
|
|
|
}
|
2023-09-11 22:28:04 +00:00
|
|
|
BeatAction.New(instance, bops);
|
2023-06-06 18:59:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void Bop()
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-06-06 18:59:56 +00:00
|
|
|
if (!canBop) return;
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("Bop", 0.5f);
|
|
|
|
Dancer1.DoScaledAnimationAsync("Bop", 0.5f);
|
|
|
|
Dancer2.DoScaledAnimationAsync("Bop", 0.5f);
|
|
|
|
Dancer3.DoScaledAnimationAsync("Bop", 0.5f);
|
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-06-06 18:59:56 +00:00
|
|
|
public void GrampsBop()
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-06-06 18:59:56 +00:00
|
|
|
if (!grampsCanBop) return;
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsBop", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
|
|
|
|
2024-03-05 18:04:14 +00:00
|
|
|
private ColorEase bgColorEase = new(defaultBGColor);
|
2023-08-12 03:30:03 +00:00
|
|
|
|
2024-03-04 03:50:46 +00:00
|
|
|
public void BackgroundColor(double beat, float length, Color startColor, Color endColor, int ease)
|
2023-08-12 03:30:03 +00:00
|
|
|
{
|
2024-03-04 03:50:46 +00:00
|
|
|
bgColorEase = new(beat, length, startColor, endColor, ease);
|
2023-08-12 03:30:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//call this in OnPlay(double beat) and OnGameSwitch(double beat)
|
|
|
|
private void PersistColor(double beat)
|
|
|
|
{
|
|
|
|
var allEventsBeforeBeat = EventCaller.GetAllInGameManagerList("spaceDance", new string[] { "changeBG" }).FindAll(x => x.beat < beat);
|
|
|
|
if (allEventsBeforeBeat.Count > 0)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-08-12 03:30:03 +00:00
|
|
|
allEventsBeforeBeat.Sort((x, y) => x.beat.CompareTo(y.beat)); //just in case
|
|
|
|
var lastEvent = allEventsBeforeBeat[^1];
|
|
|
|
BackgroundColor(lastEvent.beat, lastEvent.length, lastEvent["start"], lastEvent["end"], lastEvent["ease"]);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-12 03:30:03 +00:00
|
|
|
public override void OnPlay(double beat)
|
|
|
|
{
|
|
|
|
PersistColor(beat);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void OnGameSwitch(double beat)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-08-12 03:30:03 +00:00
|
|
|
PersistColor(beat);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void JustRight(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsOhFuck", 0.5f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
RightSuccess();
|
2022-06-27 00:59:27 +00:00
|
|
|
}
|
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void RightSuccess()
|
2024-03-05 18:04:14 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputGood");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("TurnRightDo", 0.5f);
|
2024-03-05 18:04:14 +00:00
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
|
|
|
public void RightMiss(PlayerActionEvent caller)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad2");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("Ouch", 0.5f);
|
2022-06-27 16:07:27 +00:00
|
|
|
Hit.Play("HitTurn", -1, 0);
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.DoScaledAnimationAsync("GrampsMiss", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void JustSit(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsOhFuck", 0.5f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SitSuccess();
|
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void SitSuccess()
|
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputGood");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("SitDownDo", 0.5f);
|
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
|
|
|
public void SitMiss(PlayerActionEvent caller)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad2");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("Ouch", 0.5f);
|
2022-06-27 16:07:27 +00:00
|
|
|
Hit.Play("HitSit", -1, 0);
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.DoScaledAnimationAsync("GrampsMiss", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void JustPunch(PlayerActionEvent caller, float state)
|
|
|
|
{
|
|
|
|
if (state >= 1f || state <= -1f)
|
2022-06-27 00:59:27 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("PunchDo", 0.5f);
|
|
|
|
Gramps.DoScaledAnimationAsync("GrampsOhFuck", 0.5f);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
PunchSuccess();
|
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
2023-02-27 20:13:10 +00:00
|
|
|
public void PunchSuccess()
|
2024-03-05 18:04:14 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputGood");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("PunchDo", 0.5f);
|
2024-03-05 18:04:14 +00:00
|
|
|
}
|
2022-06-27 00:59:27 +00:00
|
|
|
|
|
|
|
public void PunchMiss(PlayerActionEvent caller)
|
2023-02-27 20:13:10 +00:00
|
|
|
{
|
2023-06-10 19:13:29 +00:00
|
|
|
SoundByte.PlayOneShotGame("spaceDance/inputBad2");
|
2023-02-27 20:13:10 +00:00
|
|
|
DancerP.DoScaledAnimationAsync("Ouch", 0.5f);
|
2022-06-27 16:07:27 +00:00
|
|
|
Hit.Play("HitPunch", -1, 0);
|
2023-06-06 18:59:56 +00:00
|
|
|
Gramps.DoScaledAnimationAsync("GrampsMiss", 0.5f);
|
2023-02-27 20:13:10 +00:00
|
|
|
}
|
2022-06-26 06:48:14 +00:00
|
|
|
}
|
|
|
|
}
|