Compare commits

...

6 commits

19 changed files with 360 additions and 201 deletions

8
Game/Assets/Effects.meta Normal file
View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c23c9f7c225f28546ad748b02e751f1d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,44 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: ColourDistortionProfile
m_EditorClassIdentifier:
components:
- {fileID: 2076673937229531157}
--- !u!114 &2076673937229531157
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 66f335fb1ffd8684294ad653bf1c7564, type: 3}
m_Name: ColorAdjustments
m_EditorClassIdentifier:
active: 1
postExposure:
m_OverrideState: 1
m_Value: 0
contrast:
m_OverrideState: 1
m_Value: 1.47
colorFilter:
m_OverrideState: 1
m_Value: {r: 0.9647059, g: 0.98039216, b: 1, a: 1}
hueShift:
m_OverrideState: 1
m_Value: 87
saturation:
m_OverrideState: 1
m_Value: 67

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: de50934a2e98f5940b4e2e5c8f0a1e49
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,44 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!114 &11400000
MonoBehaviour:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: d7fd9488000d3734a9e00ee676215985, type: 3}
m_Name: VignetteVolumeProfile
m_EditorClassIdentifier:
components:
- {fileID: 470894040277958869}
--- !u!114 &470894040277958869
MonoBehaviour:
m_ObjectHideFlags: 3
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 0}
m_Enabled: 1
m_EditorHideFlags: 0
m_Script: {fileID: 11500000, guid: 899c54efeace73346a0a16faa3afe726, type: 3}
m_Name: Vignette
m_EditorClassIdentifier:
active: 1
color:
m_OverrideState: 1
m_Value: {r: 0, g: 0, b: 0, a: 1}
center:
m_OverrideState: 1
m_Value: {x: 0.5, y: 0.5}
intensity:
m_OverrideState: 1
m_Value: 1
smoothness:
m_OverrideState: 1
m_Value: 0.352
rounded:
m_OverrideState: 1
m_Value: 0

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 655125311f4fc2048bcc12ddf6c49723
NativeFormatImporter:
externalObjects: {}
mainObjectFileID: 11400000
userData:
assetBundleName:
assetBundleVariant:

View file

@ -1,24 +0,0 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class ResetPosition : MonoBehaviour
{
private Vector3 initialPosition;
private Quaternion initialRotation;
void Start()
{
// Store initial position and rotation at the start
initialPosition = transform.position;
initialRotation = transform.rotation;
}
public void ResetingPosition()
{
// Reset the XR Rig to the stored position and rotation
transform.position = initialPosition;
transform.rotation = initialRotation;
}
}

View file

@ -5,20 +5,18 @@
*/
using System.Collections;
using System.Diagnostics.CodeAnalysis;
using TMPro;
using UnityEngine;
using UnityEngine.XR.Interaction.Toolkit;
using UnityEngine.XR.Interaction.Toolkit.Interactables;
[SuppressMessage("ReSharper", "GrammarMistakeInComment")]
public class BedroomTask : MonoBehaviour
{
[Header("Task Requirement Values")]
// To track how much trash has been collected so far
public int trashCollected;
// Defines how much trash is needed to collect in order to unlock the door
// Defines how much trash is needed to collect to unlock the door
public int trashRequired = 10;
// Defines the door
@ -154,11 +152,11 @@ public class BedroomTask : MonoBehaviour
_doorCollider.enabled = false;
}
// Functions when door is unlocked
// Functions when the door is unlocked
private void UnlockDoor()
{
// Ensure rigidbody is not null
if (_doorRigidbody != null)
if (_doorRigidbody)
{
// Allows door movement
_doorRigidbody.isKinematic = false;
@ -218,7 +216,7 @@ public class BedroomTask : MonoBehaviour
audioSource.PlayOneShot(footstepsSound);
yield return new WaitForSeconds(footstepsSound.length);
// Play a door slam after the footsteps clip ends
// Play a door slam after the footstep clip ends
audioSource.PlayOneShot(doorSlamSound);
yield return new WaitForSeconds(doorSlamSound.length);

View file

@ -1,88 +1,114 @@
/*
Author: Wai Lam and Reza
Date: 12/2/25
Description: Go to school
*/
* Author: Wai Lam and Reza
* Date: 12/2/25
* Description: Go to school
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using TMPro;
using UnityEngine;
using UnityEngine.SceneManagement;
public class GoToSchool : MonoBehaviour
{
private GameManager gameManager;
// public PostProcessingManager PostProcessingManager;
// ReSharper disable once GrammarMistakeInComment
// public PostProcessingManager PostProcessingManager;
public CanvasGroup fadeCanvasGroup; // Assign in Inspector
public float fadeDuration = 1f; // Duration for fade in/out
public float displayDuration = 5f; // Time the UI stays fully visible
public float fadeDuration = 1f; // Duration for fade in/out
public float displayDuration = 5f; // Time the UI stays fully visible
public AudioSource[] audioSources;
private bool atPond = false;
private bool hasTriggered = false; // Prevent multiple triggers
public AudioLoop audioLoop;
public ParticleSystem[] particleEffects;
// Defines UI references
[Header("UI References")]
public GameObject storyPanelUI;
public TMP_Text storyText;
[Header("Triggers")]
public Collider parkPondTrigger; // Assign in Inspector
public Collider schoolTrigger; // Assign in Inspector
public ResetPosition xrRig;
void Awake()
public ParticleSystem[] particleEffects;
// Defines UI references
[Header("UI References")] public GameObject storyPanelUI;
public TMP_Text storyText;
[Header("Triggers")] public Collider parkPondTrigger; // Assign in Inspector
public Collider schoolTrigger; // Assign in Inspector
public MemoriseInitialPosition xrRig;
private bool _atPond;
private GameManager _gameManager;
private bool _hasTriggered; // Prevent multiple triggers
private void Awake()
{
Debug.Log("IM AWAKE");
// DontDestroyOnLoad(gameObject);
gameManager = GameManager.Instance; // Reference to GameManager instance
Debug.Log("currentday: " + gameManager.currentDay);
_gameManager = GameManager.Instance; // Reference to GameManager instance
Debug.Log("current day: " + _gameManager.CurrentDay);
if (storyPanelUI == null)
storyPanelUI = GameObject.Find("Story Panel"); // Use the exact name
if (storyText == null)
storyText = FindObjectOfType<TMP_Text>(); // Finds the first TMP_Text in the scene
if (storyPanelUI != null)
storyPanelUI.SetActive(true);
if (gameManager.currentDay == 1)
{
if (storyText != null)
{
storyText.text = "I guess I should head to school now...";
StartCoroutine(ClearMessageAfterSeconds(7f));
}
if (audioLoop != null)
{
audioLoop.StartAudioLoop();
}
}
if (gameManager.currentDay == 2)
switch (_gameManager.CurrentDay)
{
if (storyText != null)
case 1:
{
storyText.text = "I need to calm down first... maybe going to the park pond would help...";
StartCoroutine(ClearMessageAfterSeconds(7f));
if (storyText != null)
{
storyText.text = "I guess I should head to school now...";
StartCoroutine(ClearMessageAfterSeconds(7f));
}
if (audioLoop != null) audioLoop.StartAudioLoop();
break;
}
foreach (ParticleSystem effect in particleEffects)
case 2:
{
effect.gameObject.SetActive(true); // Ensure the GameObject is active
effect.Play(); // Play each particle system
if (storyText != null)
{
storyText.text = "I need to calm down first... maybe going to the park pond would help...";
StartCoroutine(ClearMessageAfterSeconds(7f));
}
foreach (var effect in particleEffects)
{
effect.gameObject.SetActive(true); // Ensure the GameObject is active
effect.Play(); // Play each particle system
}
// PostProcessingManager.Instance.TriggerEffect("Panic");
break;
}
}
}
private void OnTriggerEnter(Collider other)
{
Debug.Log("Triggered by: " + other.gameObject.name);
switch (_gameManager.CurrentDay)
{
// Player arrives at the pond first
// if (!atPond && other == parkPondTrigger)
case 2 when !_atPond && other == parkPondTrigger:
_atPond = true;
StartCoroutine(StayAtPond());
break;
// if (atPond && other == schoolTrigger)
// Normal case for Day 1
case 2 when _atPond && other == schoolTrigger:
case 1:
{
_hasTriggered = true;
StartCoroutine(FadeInAndLoadScene());
_gameManager.GoToSchoolTaskComplete();
_gameManager.IncrementDay();
break;
}
// PostProcessingManager.Instance.TriggerEffect("Panic");
}
}
private IEnumerator ClearMessageAfterSeconds(float delay)
@ -92,95 +118,61 @@ public class GoToSchool : MonoBehaviour
storyText.text = "";
}
private void OnTriggerEnter(Collider other)
{
Debug.Log("Triggered by: " + other.gameObject.name);
if (gameManager.currentDay == 2)
{
if (!atPond && other == parkPondTrigger) // Player arrives at pond first
{
atPond = true;
StartCoroutine(StayAtPond());
}
else if (atPond && other == schoolTrigger) // Player can go to school after pond
{
hasTriggered = true;
StartCoroutine(FadeInAndLoadScene());
gameManager.GoToSchoolTaskComplete();
gameManager.IncrementDay();
}
}
else if (gameManager.currentDay == 1) // Normal case for Day 1
{
hasTriggered = true;
StartCoroutine(FadeInAndLoadScene());
gameManager.GoToSchoolTaskComplete();
gameManager.IncrementDay();
}
}
private IEnumerator StayAtPond()
{
storyText.text = "The sound of the water is soothing...";
yield return new WaitForSeconds(7f);
// PostProcessingManager.Instance.StopEffect();
// PostProcessingManager.Instance.StopEffect();
storyText.text = "I feel a little better now. I should head to school now.";
StartCoroutine(ClearMessageAfterSeconds(7f));
}
IEnumerator FadeInAndLoadScene()
private IEnumerator FadeInAndLoadScene()
{
yield return StartCoroutine(Fade(0f, 1f, fadeDuration));
yield return new WaitForSeconds(displayDuration);
int currentDay = gameManager.currentDay;
string nextScene = currentDay == 2 ? "Day2" : (currentDay == 3 ? "Day3" : "Start");
var currentDay = _gameManager.CurrentDay;
var nextScene = currentDay switch
{
2 => "Day2",
3 => "Day3",
_ => "Start"
};
SceneManager.LoadScene(nextScene);
yield return new WaitForSeconds(1f); // Small delay to ensure scene transition
xrRig.ResetingPosition();
xrRig.ResetPosition();
}
IEnumerator Fade(float startAlpha, float endAlpha, float duration)
private IEnumerator Fade(float startAlpha, float endAlpha, float duration)
{
float elapsed = 0f;
var elapsed = 0f;
fadeCanvasGroup.alpha = startAlpha;
float[] startVolumes = new float[audioSources.Length];
for (int i = 0; i < audioSources.Length; i++)
{
startVolumes[i] = audioSources[i] != null ? audioSources[i].volume : 1f;
}
var startVolumes = new float[audioSources.Length];
for (var i = 0; i < audioSources.Length; i++)
startVolumes[i] = audioSources[i] ? audioSources[i].volume : 1f;
while (elapsed < duration)
{
elapsed += Time.deltaTime;
float t = elapsed / duration;
var t = elapsed / duration;
fadeCanvasGroup.alpha = Mathf.Lerp(startAlpha, endAlpha, t);
for (int i = 0; i < audioSources.Length; i++)
{
if (audioSources[i] != null)
{
for (var i = 0; i < audioSources.Length; i++)
if (audioSources[i])
audioSources[i].volume = Mathf.Lerp(startVolumes[i], 0f, t);
}
}
yield return null;
}
fadeCanvasGroup.alpha = endAlpha;
for (int i = 0; i < audioSources.Length; i++)
{
if (audioSources[i] != null)
{
audioSources[i].volume = 0f;
}
}
foreach (var t in audioSources)
if (t)
t.volume = 0f;
}
}

View file

@ -1,42 +1,65 @@
/*
* Author: Mark
* Date: 31/1/25
* Description: adds a help box to the inspector window
*/
// https://discussions.unity.com/t/helpattribute-allows-you-to-use-helpbox-in-the-unity-inspector-window/659414/22
using UnityEngine;
using System;
using UnityEditor;
using UnityEngine;
public enum HelpBoxMessageType { None, Info, Warning, Error }
public enum HelpBoxMessageType
{
None,
Info,
Warning,
Error
}
public class HelpBoxAttribute : PropertyAttribute {
public class HelpBoxAttribute : PropertyAttribute
{
public readonly HelpBoxMessageType MessageType;
public readonly string Text;
public string Text;
public HelpBoxMessageType MessageType;
public HelpBoxAttribute(string text, HelpBoxMessageType messageType = HelpBoxMessageType.None) {
this.Text = text;
this.MessageType = messageType;
public HelpBoxAttribute(string text, HelpBoxMessageType messageType = HelpBoxMessageType.None)
{
Text = text;
MessageType = messageType;
}
}
[CustomPropertyDrawer(typeof(HelpBoxAttribute))]
public class HelpBoxAttributeDrawer : DecoratorDrawer {
public override float GetHeight() {
try {
var helpBoxAttribute = attribute as HelpBoxAttribute;
if (helpBoxAttribute == null) return base.GetHeight();
var helpBoxStyle = (GUI.skin != null) ? GUI.skin.GetStyle("helpbox") : null;
return helpBoxStyle == null ? base.GetHeight() : Mathf.Max(40f, helpBoxStyle.CalcHeight(new GUIContent(helpBoxAttribute.Text), EditorGUIUtility.currentViewWidth) + 4);
public class HelpBoxAttributeDrawer : DecoratorDrawer
{
public override float GetHeight()
{
try
{
if (attribute is not HelpBoxAttribute helpBoxAttribute) return base.GetHeight();
var helpBoxStyle = GUI.skin != null ? GUI.skin.GetStyle("helpbox") : null;
return helpBoxStyle == null
? base.GetHeight()
: Mathf.Max(40f,
helpBoxStyle.CalcHeight(new GUIContent(helpBoxAttribute.Text), EditorGUIUtility.currentViewWidth) +
4);
}
catch (System.ArgumentException) {
catch (ArgumentException)
{
return 3 * EditorGUIUtility.singleLineHeight; // Handle Unity 2022.2 bug by returning default value.
}
}
public override void OnGUI(Rect position) {
public override void OnGUI(Rect position)
{
if (attribute is not HelpBoxAttribute helpBoxAttribute) return;
EditorGUI.HelpBox(position, helpBoxAttribute.Text, GetMessageType(helpBoxAttribute.MessageType));
}
private static MessageType GetMessageType(HelpBoxMessageType helpBoxMessageType) {
switch (helpBoxMessageType) {
private static MessageType GetMessageType(HelpBoxMessageType helpBoxMessageType)
{
switch (helpBoxMessageType)
{
default:
case HelpBoxMessageType.None: return MessageType.None;
case HelpBoxMessageType.Info: return MessageType.Info;
@ -44,4 +67,4 @@ public class HelpBoxAttributeDrawer : DecoratorDrawer {
case HelpBoxMessageType.Error: return MessageType.Error;
}
}
}
}

View file

@ -0,0 +1,27 @@
/*
* Author: Wai Lam
* Date: 13/2/25
* Description: Memorise the initial position of a game object and reset it when needed
*/
using UnityEngine;
public class MemoriseInitialPosition : MonoBehaviour
{
private Vector3 _initialPosition;
private Quaternion _initialRotation;
private void Start()
{
// Store initial position and rotation at the start
_initialPosition = transform.position;
_initialRotation = transform.rotation;
}
public void ResetPosition()
{
// Reset the XR Rig to the stored position and rotation
transform.position = _initialPosition;
transform.rotation = _initialRotation;
}
}

View file

@ -1,26 +0,0 @@
/*
Author: Wai Lam
Date: 7/2/25
Description: Loading scene from start to game
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class Sceneloader : MonoBehaviour
{
public string sceneName; // Name of the scene to load
public void LoadScene()
{
if (!string.IsNullOrEmpty(sceneName))
{
SceneManager.LoadScene(sceneName);
}
else
{
Debug.LogWarning("Scene name is not assigned!");
}
}
}

View file

@ -1,14 +1,12 @@
/*
Author: Reza
Date: 4/2/25
Description: To track how much trash has been thrown in the trashbin
*/
* Author: Reza
* Date: 4/2/25
* Description: To track how much trash has been thrown in the trash bin
*/
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Trash : MonoBehaviour
public class TrashBinTracker : MonoBehaviour
{
private BedroomTask bedroomTask;
@ -17,10 +15,7 @@ public class Trash : MonoBehaviour
// Find the BedroomTask script in the scene
bedroomTask = FindObjectOfType<BedroomTask>();
if (bedroomTask == null)
{
Debug.LogWarning("BedroomTask script not found in the scene!");
}
if (bedroomTask == null) Debug.LogWarning("BedroomTask script not found in the scene!");
}
private void OnTriggerEnter(Collider other)

View file

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c0b4c9b210168164e8839f5d4cf5543d
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 2d3c07480153f034c9d7a374b7211b91
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View file

@ -0,0 +1,40 @@
{
"project_info": {
"project_number": "905742343227",
"firebase_url": "https://echoesbehindcloseddoors-default-rtdb.asia-southeast1.firebasedatabase.app",
"project_id": "echoesbehindcloseddoors",
"storage_bucket": "echoesbehindcloseddoors.firebasestorage.app"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:905742343227:android:dbb48abb86e6a2cd2c901e",
"android_client_info": {
"package_name": "co.wirm.ebcd"
}
},
"oauth_client": [
{
"client_id": "905742343227-9t3a9pu10276r2jpqks902fau7n5oghb.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyAasD2yFEcVhhDHgoTTUhg0ctwV-Ywdwx8"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "905742343227-9t3a9pu10276r2jpqks902fau7n5oghb.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}

View file

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: 5c50ffb5f74bc444eba94068cc99127d
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant: