using System; using System.Collections; using System.Collections.Generic; using MoreMountains.Feedbacks; using MoreMountains.Tools; using UnityEngine; using UnityEngine.SceneManagement; #if MM_UI using UnityEngine.UI; #endif namespace MoreMountains.Feel { /// /// A class used to handle Feel's Snake demo's snake "head", the part controlled by the player /// [AddComponentMenu("")] public class Snake : MonoBehaviour { [Header("Movement")] /// the snake's movement speed public float Speed = 5f; /// the speed multiplier to apply at most times public float NormalSpeedMultiplier = 1f; /// the rate at which speed should vary public float SpeedChangeRate = 0.2f; /// the current direction of the snake public Vector3 Direction = Vector2.right; [Header("Boost")] /// the speed multiplier to apply to the speed when boosting public float BoostMultiplier = 2f; /// the duration of the boost, in seconds public float BoostDuration = 2f; [Header("BodyParts")] /// the prefab to use for body parts public SnakeBodyPart BodyPartPrefab; /// the offset to apply between two parts public int BodyPartsOffset = 7; /// the maximum amount of body parts for this snake public int MaxAmountOfBodyParts = 10; /// the minimum duration, in seconds, between 2 allowed parts losses public float MinTimeBetweenLostParts = 2f; [Header("Bindings")] #if MM_UI /// a Text component on which to display our current score public Text PointsCounter; #endif [Header("Feedbacks")] /// a feedback to play when the snake turns public MMFeedbacks TurnFeedback; /// a feedback to play when the snake teleports to the other side of the screen public MMFeedbacks TeleportFeedback; /// a feedback to play when teleporting once public MMFeedbacks TeleportOnceFeedback; /// a feedback to play when eating snake food public MMFeedbacks EatFeedback; /// a feedback to play when losing a body part public MMFeedbacks LoseFeedback; [Header("Debug")] [MMReadOnly] public int SnakePoints = 0; [MMReadOnly] public float _speed; [MMReadOnly] public float _speedMultiplier; [MMReadOnly] public float _lastFoodEatenAt = -100f; protected Vector3 _newPosition; protected MMPositionRecorder _recorder; public List _snakeBodyParts; protected float _lastLostPart = 0f; /// /// On Awake, we initialize our snake's points, speed, position recorder, and body parts container /// protected void Awake() { _speed = Speed; SnakePoints = 0; _recorder = this.gameObject.GetComponent(); #if MM_UI PointsCounter.text = "0"; #endif _snakeBodyParts = new List(); } /// /// Every frame, we check for input and move our snake's head /// protected virtual void Update() { HandleInput(); HandleMovement(); } /// /// Every frame, looks for turn input /// protected virtual void HandleInput() { if (FeelDemosInputHelper.CheckMainActionInputPressedThisFrame()) { Turn(); } } /// /// Every frame, moves the snake's head's position /// protected virtual void HandleMovement() { _speedMultiplier = (Time.time - _lastFoodEatenAt < BoostDuration) ? BoostMultiplier : NormalSpeedMultiplier; _speed = MMMaths.Lerp(_speed, Speed * _speedMultiplier, SpeedChangeRate, Time.deltaTime); _newPosition = (_speed * Time.deltaTime * Direction); this.transform.position += _newPosition; } /// /// Called when turning, rotates the snake's head, changes its direction, plays a feedback /// public virtual void Turn() { TurnFeedback?.PlayFeedbacks(); Direction = MMMaths.RotateVector2(Direction, 90f); this.transform.Rotate(new Vector3(0f,0f,90f)); } /// /// Called by the snake head's MMViewportEdgeTeleporter, defines what happens when the snake is teleported to the other side of the screen /// public virtual void Teleport() { StartCoroutine(TeleportCo()); } /// /// A coroutine used to teleport the snake to the other side of the screen /// /// protected virtual IEnumerator TeleportCo() { TeleportFeedback?.PlayFeedbacks(); TeleportOnceFeedback?.PlayFeedbacks(); yield return MMCoroutine.WaitForFrames(BodyPartsOffset); int total = _snakeBodyParts.Count; float feedbacksIntensity = 0f; float part = 1 / (float)total; for (int i = 0; i < total; i++) { yield return MMCoroutine.WaitForFrames(BodyPartsOffset/2); feedbacksIntensity = 1 - i * part; TeleportFeedback?.PlayFeedbacks(this.transform.position, feedbacksIntensity); } } /// /// Called when eating food, triggers visual effects, increases points, plays a feedback /// public virtual void Eat() { EatEffect(); EatFeedback?.PlayFeedbacks(); SnakePoints++; #if MM_UI PointsCounter.text = SnakePoints.ToString(); #endif StartCoroutine(EatCo()); } /// /// A coroutine used to go through every snake body part and trigger its Eat MMFeedbacks /// protected virtual IEnumerator EatCo() { int total = _snakeBodyParts.Count; float feedbacksIntensity = 0f; float part = 1 / (float)total; for (int i = 0; i < total; i++) { if (i >= _snakeBodyParts.Count) { yield break; } yield return MMCoroutine.WaitForFrames(BodyPartsOffset/2); feedbacksIntensity = 1 - i * part; if (i == total - 1) { if ((i < MaxAmountOfBodyParts - 1) && (_snakeBodyParts.Count > i)) { if (_snakeBodyParts[i] != null) { _snakeBodyParts[i].New(); } } } else { _snakeBodyParts[i].Eat(feedbacksIntensity); } } } /// /// When eating food, we instantiate a new body part unless we've reached our limit /// public virtual void EatEffect() { _lastFoodEatenAt = Time.time; if (SnakePoints < MaxAmountOfBodyParts - 1) { SnakeBodyPart part = Instantiate(BodyPartPrefab); SceneManager.MoveGameObjectToScene(part.gameObject, this.gameObject.scene); part.transform.position = this.transform.position; part.TargetRecorder = _recorder; part.Offset = ((SnakePoints) * BodyPartsOffset) + BodyPartsOffset + 1; part.Index = _snakeBodyParts.Count; part.name = "SnakeBodyPart_" + part.Index; _snakeBodyParts.Add(part); } } /// /// When we lose a body part, we play a feedback, destroy the last part, lose points, and update our points display /// /// public virtual void Lose(SnakeBodyPart part) { if (Time.time - _lastLostPart < MinTimeBetweenLostParts) { return; } _lastLostPart = Time.time; LoseFeedback?.PlayFeedbacks(part.transform.position); Destroy(_snakeBodyParts[_snakeBodyParts.Count-1].gameObject); _snakeBodyParts.RemoveAt(_snakeBodyParts.Count-1); SnakePoints--; #if MM_UI PointsCounter.text = SnakePoints.ToString(); #endif } } }