mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 11:45:09 +00:00
89 lines
No EOL
2.5 KiB
C#
89 lines
No EOL
2.5 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using System;
|
|
using Starpelly;
|
|
|
|
using RhythmHeavenMania.Util;
|
|
|
|
namespace RhythmHeavenMania.Games.MrUpbeat
|
|
{
|
|
public class MrUpbeat : Minigame
|
|
{
|
|
[Header("References")]
|
|
public GameObject metronome;
|
|
public UpbeatMan man;
|
|
|
|
public GameEvent beat = new GameEvent();
|
|
public GameEvent offbeat = new GameEvent();
|
|
public bool canGo = false;
|
|
private int beatCount = 0;
|
|
|
|
public static MrUpbeat instance;
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (canGo)
|
|
metronome.transform.eulerAngles = new Vector3(0, 0, 270 - Mathf.Cos(Mathf.PI * Conductor.instance.songPositionInBeats) * 75);
|
|
//else
|
|
// metronome.transform.eulerAngles = new Vector3(0, 0, 200);
|
|
|
|
List<Beatmap.Entity> gos = GameManager.instance.Beatmap.entities.FindAll(c => c.datamodel == "mrUpbeat/go");
|
|
for(int i=0; i<gos.Count; i++)
|
|
{
|
|
if ((gos[i].beat - 0.15f) <= Conductor.instance.songPositionInBeats && (gos[i].beat + gos[i].length) - 0.15f > Conductor.instance.songPositionInBeats)
|
|
{
|
|
canGo = true;
|
|
break;
|
|
} else
|
|
{
|
|
canGo = false;
|
|
}
|
|
}
|
|
|
|
if (Conductor.instance.ReportBeat(ref beat.lastReportedBeat) && canGo)
|
|
{
|
|
if(beatCount % 2 == 0)
|
|
Jukebox.PlayOneShotGame("mrUpbeat/metronomeRight");
|
|
else
|
|
Jukebox.PlayOneShotGame("mrUpbeat/metronomeLeft");
|
|
|
|
beatCount++;
|
|
}
|
|
|
|
if (Conductor.instance.ReportBeat(ref offbeat.lastReportedBeat, 0.25f, true))
|
|
{
|
|
man.Blip();
|
|
if(canGo) man.targetBeat = offbeat.lastReportedBeat + 1f;
|
|
}
|
|
}
|
|
|
|
public override void OnGameSwitch()
|
|
{
|
|
base.OnGameSwitch();
|
|
canGo = false;
|
|
man.stepTimes = 0;
|
|
SetInterval(0);
|
|
}
|
|
|
|
public void SetInterval(float beat)
|
|
{
|
|
beatCount = 0;
|
|
offbeat.startBeat = beat;
|
|
man.targetBeat = beat + 320f;
|
|
man.Idle();
|
|
}
|
|
|
|
public void Go(float beat)
|
|
{
|
|
beatCount = 0;
|
|
}
|
|
|
|
|
|
}
|
|
} |