SoundtrackModule.cs 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. using KairoEngine.Core;
  6. using KairoEngine.Core.ModuleSystem;
  7. using Sirenix.OdinInspector;
  8. namespace KairoEngine.SoundtrackSystem
  9. {
  10. [Serializable, HideReferenceObjectPicker]
  11. public class SoundtrackModule : GameModuleBase
  12. {
  13. public override string name => "Soundtrack Module";
  14. [FoldoutGroup("@name"), NonSerialized, ShowInInspector]
  15. public Playlist playlist;
  16. [FoldoutGroup("@name")] public int currentTrackIndex = 0;
  17. [FoldoutGroup("@name")] public bool playOnStart = true;
  18. [FoldoutGroup("@name")] public bool showDebug = false;
  19. public SoundtrackModule(GameConfig config) : base(config)
  20. {
  21. this.gameConfig = config;
  22. this.className = this.GetType().AssemblyQualifiedName;
  23. this.typeName = "SoundtrackModule";
  24. }
  25. public override void Load(Transform parent)
  26. {
  27. GameObject obj = new GameObject();
  28. obj.transform.parent = parent;
  29. obj.transform.position = new Vector3();
  30. obj.transform.rotation = Quaternion.identity;
  31. obj.name = "SoundtrackManager";
  32. SoundtrackManager manager = obj.AddComponent<SoundtrackManager>();
  33. manager.playlist = playlist;
  34. manager.audioSource1 = obj.AddComponent<AudioSource>();
  35. manager.audioSource2 = obj.AddComponent<AudioSource>();
  36. manager.audioSource1.playOnAwake = false;
  37. manager.audioSource2.playOnAwake = false;
  38. manager.playOnStart = this.playOnStart;
  39. manager.showDebug = this.showDebug;
  40. manager.currentTrackIndex = this.currentTrackIndex;
  41. }
  42. public override void Start()
  43. {
  44. }
  45. public override void Reset()
  46. {
  47. this.playlist = null;
  48. this.currentTrackIndex = 0;
  49. this.playOnStart = true;
  50. this.showDebug = false;
  51. }
  52. public override void Destroy()
  53. {
  54. }
  55. public static SoundtrackModule JSONToSoundtrackModule(string data)
  56. {
  57. try
  58. {
  59. return JsonUtility.FromJson<SoundtrackModule>(data);
  60. }
  61. catch (System.Exception e)
  62. {
  63. Debug.LogError($"Could not deserialize SoundtrackModule: \n{e}");
  64. return new SoundtrackModule(null);
  65. }
  66. }
  67. public override void OnBeforeSerialize(ObjectSerializer serializer)
  68. {
  69. if(playlist != null) serializer.AddScriptableObject("SoundtrackModule_Playlist", playlist);
  70. }
  71. public override void OnBeforeDeserialize(ObjectSerializer serializer)
  72. {
  73. playlist = (Playlist)serializer.GetScriptableObject("SoundtrackModule_Playlist");
  74. }
  75. }
  76. }