mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-08 18:55:07 +00:00
50a1b7bcdb
* 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
124 lines
No EOL
4 KiB
C#
124 lines
No EOL
4 KiB
C#
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
using System.IO.Compression;
|
|
using System.Text;
|
|
|
|
using UnityEngine;
|
|
using UnityEngine.Audio;
|
|
|
|
using Jukebox;
|
|
|
|
namespace HeavenStudio
|
|
{
|
|
public class GameInitializer : MonoBehaviour
|
|
{
|
|
[SerializeField] RenderTexture gameRenderTexture;
|
|
[SerializeField] RenderTexture overlayRenderTexture;
|
|
|
|
[SerializeField] HeavenStudio.Editor.Editor editorGO;
|
|
[SerializeField] String debug_cmdFile;
|
|
|
|
[SerializeField] GameManager gameManager;
|
|
|
|
[SerializeField] GameObject MainCamera;
|
|
[SerializeField] GameObject CursorCamera;
|
|
[SerializeField] GameObject OverlayCamera;
|
|
[SerializeField] GameObject StaticCamera;
|
|
[SerializeField] GameObject Cursor;
|
|
|
|
[SerializeField] GameObject Profiler;
|
|
|
|
public bool debugUI;
|
|
|
|
public bool playOnStart = false;
|
|
public bool fromCmd = false;
|
|
|
|
private void Start()
|
|
{
|
|
string input = "";
|
|
if (debug_cmdFile != string.Empty)
|
|
{
|
|
if (debug_cmdFile.IndexOfAny(Path.GetInvalidPathChars()) == -1)
|
|
{
|
|
if (File.Exists(debug_cmdFile))
|
|
{
|
|
input = debug_cmdFile;
|
|
fromCmd = true;
|
|
playOnStart = true;
|
|
}
|
|
}
|
|
}
|
|
else if (OpeningManager.OnOpenFile is not null or "")
|
|
{
|
|
if (editorGO == null && OpeningManager.OnOpenFile.IndexOfAny(Path.GetInvalidPathChars()) == -1)
|
|
{
|
|
if (File.Exists(OpeningManager.OnOpenFile))
|
|
{
|
|
input = OpeningManager.OnOpenFile;
|
|
fromCmd = true;
|
|
playOnStart = true;
|
|
}
|
|
}
|
|
OpeningManager.OnOpenFile = null;
|
|
}
|
|
|
|
GameObject Games = new GameObject();
|
|
Games.name = "Games";
|
|
|
|
gameManager.playOnStart = playOnStart;
|
|
|
|
gameManager.GamesHolder = Games;
|
|
gameManager.CircleCursor = Cursor.transform.GetChild(0).GetComponent<CircleCursor>();
|
|
gameManager.GameCamera = MainCamera.GetComponent<Camera>();
|
|
gameManager.CursorCam = CursorCamera.GetComponent<Camera>();
|
|
gameManager.OverlayCamera = OverlayCamera.GetComponent<Camera>();
|
|
gameManager.StaticCamera = StaticCamera.GetComponent<Camera>();
|
|
|
|
if (!debugUI && Profiler != null)
|
|
{
|
|
Profiler.GetComponent<DebugUI>().enabled = false;
|
|
Profiler.transform.GetChild(0).gameObject.SetActive(false);
|
|
}
|
|
|
|
GameObject Conductor = new GameObject();
|
|
Conductor.name = "Conductor";
|
|
AudioSource source = Conductor.AddComponent<AudioSource>();
|
|
Conductor.AddComponent<Conductor>();
|
|
Conductor.GetComponent<Conductor>().musicSource = source;
|
|
source.outputAudioMixerGroup = Settings.GetMusicMixer();
|
|
// Conductor.AddComponent<AudioDspTimeKeeper>();
|
|
|
|
GlobalGameManager.GameRenderTexture = gameRenderTexture;
|
|
GlobalGameManager.OverlayRenderTexture = overlayRenderTexture;
|
|
GlobalGameManager.ResetGameRenderTexture();
|
|
|
|
if (editorGO == null)
|
|
{
|
|
bool success = OpenCmdRemix(input);
|
|
gameManager.Init(success);
|
|
}
|
|
else
|
|
{
|
|
editorGO.Init();
|
|
}
|
|
}
|
|
|
|
public bool OpenCmdRemix(string path)
|
|
{
|
|
try
|
|
{
|
|
string tmpDir = RiqFileHandler.ExtractRiq(path);
|
|
Debug.Log("Imported RIQ successfully!");
|
|
return true;
|
|
}
|
|
catch (System.Exception e)
|
|
{
|
|
Debug.Log($"Error importing RIQ: {e.Message}");
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |