JoanStinson / UnityDesignPatternsReference

A tiny retro action RPG implementation made applying Software Design Patterns to serve as a guide of reusable solutions that can be applied to common problems.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Retro RPG Patterns

A tiny retro action RPG implementation made applying Software Design Patterns to serve as a guide of reusable solutions that can be applied to common problems.

Made With Unity License Last Commit Repo Size Downloads Last Release

  • πŸ”Š Behavioral Patterns
    • Define a concrete communication scheme between objects.
  • 🐣 Creational Patterns
    • Create objects, rather than instantiating them directly.
  • βœ‚οΈ Decoupling Patterns
    • Split dependencies to ensure that changing a piece of code doesn't require changing another one.
  • πŸ› οΈ Optimization Patterns
    • Speed up the game by pushing the hardware to the furthest.
  • ⏰ Sequencing Patterns
    • Invent time and craft the gears that drive the game's great clock.
  • 🧬 Structural Patterns
    • Use inheritance to compose interfaces and define ways to compose objects to obtain new functionality.

πŸ”Š Behavioral Patterns

Define a concrete communication scheme between objects.

πŸ”Š Bytecode

Bytecode

Give a behavior the flexibility of data by encoding it as instructions for a virtual machine.

Unity has this pattern already built-in in its own Visual Scripting System (previously named 'Bolt') and in its Shader Graph System. Unreal has this pattern already built-in too in its Blueprint Visual Scripting System.

πŸ”Š Chain of Responsibility

Chain of Responsibility

Delegates commands to a chain of processing objects.

Diagram

πŸ”Š Command

Command

Creates objects that encapsulate actions and parameters.

Diagram

public class InputHandler : MonoBehaviour
{
    private Invoker _invoker;
    private BikeController _bikeController;
    private Command _turnLeftCommand;
    private Command _turnRightCommand;
    private Command _toggleTurboCommand;
    private bool _isReplaying;
    private bool _isRecording;

    private void Awake()
    {
        _invoker = gameObject.AddComponent<Invoker>();
        _bikeController = FindObjectOfType<BikeController>();
        _turnLeftCommand = new TurnLeft(_bikeController);
        _turnRightCommand = new TurnRight(_bikeController);
        _toggleTurboCommand = new ToggleTurbo(_bikeController);
    }

    private void Update()
    {
        if (!_isReplaying && _isRecording)
        {
            if (Input.GetKeyUp(KeyCode.A))
            {
                _invoker.ExecuteCommand(_turnLeftCommand);
            }

            if (Input.GetKeyUp(KeyCode.D))
            {
                _invoker.ExecuteCommand(_turnRightCommand);
            }

            if (Input.GetKeyUp(KeyCode.W))
            {
                _invoker.ExecuteCommand(_toggleTurboCommand);
            }
        }
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Start Recording"))
        {
            _bikeController.ResetPosition();
            _isReplaying = false;
            _isRecording = true;
            _invoker.Record();
        }

        if (GUILayout.Button("Stop Recording"))
        {
            _bikeController.ResetPosition();
            _isRecording = false;
        }

        if (!_isRecording && GUILayout.Button("Start Replay"))
        {
            _bikeController.ResetPosition();
            _isRecording = false;
            _isReplaying = true;
            _invoker.Replay();
        }
    }
}
public class BikeController : MonoBehaviour
{
    public enum Direction
    {
        Left = -1,
        Right = 1
    }

    private bool _isTurboOn;
    private const float _distance = 1f;

    public void ToggleTurbo()
    {
        _isTurboOn = !_isTurboOn;
    }

    public void Turn(Direction direction)
    {
        if (direction == Direction.Left)
        {
            transform.Translate(Vector3.left * _distance);
        }
        else if (direction == Direction.Right)
        {
            transform.Translate(Vector3.right * _distance);
        }
    }

    public void ResetPosition()
    {
        transform.position = Vector3.zero;
    }
}
public class Invoker : MonoBehaviour
{
    private SortedList<float, Command> _recordedCommands = new SortedList<float, Command>();

    private bool _isRecording;
    private bool _isReplaying;
    private float _replayTime;
    private float _recordingTime;

    public void ExecuteCommand(Command command)
    {
        command.Execute();

        if (_isRecording)
        {
            _recordedCommands.Add(_recordingTime, command);
        }

        Debug.Log("Recorded Time: " + _recordingTime);
        Debug.Log("Recorded Command: " + command);
    }

    public void Record()
    {
        _recordingTime = 0.0f;
        _isRecording = true;
    }

    public void Replay()
    {
        _replayTime = 0.0f;
        _isReplaying = true;

        if (_recordedCommands.Count <= 0)
        {
            Debug.LogError("No commands to replay!");
        }

        _recordedCommands.Reverse();
    }

    private void FixedUpdate()
    {
        if (_isRecording)
        {
            _recordingTime += Time.fixedDeltaTime;
        }

        if (_isReplaying)
        {
            _replayTime += Time.fixedDeltaTime;

            if (_recordedCommands.Any())
            {
                if (Mathf.Approximately(_replayTime, _recordedCommands.Keys[0]))
                {
                    Debug.Log("Replay Time: " + _replayTime);
                    Debug.Log("Replay Command: " + _recordedCommands.Values[0]);

                    _recordedCommands.Values[0].Execute();
                    _recordedCommands.RemoveAt(0);
                }
            }
            else
            {
                _isReplaying = false;
            }
        }
    }
}
public abstract class Command
{
    public abstract void Execute();
}
public class TurnLeft : Command
{
    private readonly BikeController _controller;

    public TurnLeft(BikeController controller)
    {
        _controller = controller;
    }

    public override void Execute()
    {
        _controller.Turn(BikeController.Direction.Left);
    }
}
public class TurnRight : Command
{
    private readonly BikeController _controller;

    public TurnRight(BikeController controller)
    {
        _controller = controller;
    }

    public override void Execute()
    {
        _controller.Turn(BikeController.Direction.Right);
    }
}
public class ToggleTurbo : Command
{
    private readonly BikeController _controller;

    public ToggleTurbo(BikeController controller)
    {
        _controller = controller;
    }

    public override void Execute()
    {
        _controller.ToggleTurbo();
    }
}
πŸ”Š Interpreter

Interpreter

Implements a specialized language.

Diagram

Similar to the Bytecode pattern, Unity has this pattern already built-in in its own Visual Scripting System (previously named 'Bolt') and in its Shader Graph System. Unreal has this pattern already built-in too in its Blueprint Visual Scripting System.

πŸ”Š Iterator

Iterator

Accesses the elements of an object sequentially without exposing its underlying representation.

Diagram

πŸ”Š Mediator

Mediator

Allows loose coupling between classes by being the only class that has detailed knowledge of their methods.

Diagram

πŸ”Š Memento

Memento

Provides the ability to restore an object to its previous state (undo).

Diagram

Similar to the State pattern, but with an extra feature that gives objects the ability to roll back to a previous state.

πŸ”Š Observer

Observer

It's a publish/subscribe pattern, which allows a number of observer objects to see an event.

Diagram

Any publish/subscribe structure forms part of this pattern. This way, C# Delegates, Actions, Event Actions and EventHandlers are its most basic implementation. Click Here For A Summary Of All. Unity's API has UnityActions and UnityEvents which are basically a wrapper of these C# events, but made available through the Inspector. From this point on, the pattern can be expanded to be more or less decoupled until reaching it's final form, which would be a Message or Event Bus System. Here is a basic implementation using Scriptable Objects: Event Bus System with Scriptable Objects.

public class ClientObserver : MonoBehaviour
{
    private BikeController _bikeController;

    private void Start()
    {
        _bikeController = (BikeController)FindObjectOfType(typeof(BikeController));
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Damage Bike") && _bikeController)
        {
            _bikeController.TakeDamage(15.0f);
        }

        if (GUILayout.Button("Toggle Turbo") && _bikeController)
        {
            _bikeController.ToggleTurbo();
        }
    }
}
public abstract class Subject : MonoBehaviour
{
    private readonly ArrayList _observers = new ArrayList();

    protected void Attach(Observer observer)
    {
        if (observer != null)
        {
            _observers.Add(observer);
        }
        else
        {
            Debug.LogWarning("Attached observer cannot be null!");
        }
    }

    protected void Detach(Observer observer)
    {
        if (observer != null)
        {
            _observers.Remove(observer);
        }
        else
        {
            Debug.LogWarning("Detached observer cannot be null!");
        }
    }

    protected void NotifyObservers()
    {
        foreach (Observer observer in _observers)
        {
            observer?.Notify(this);
        }
    }
}
public class BikeController : Subject
{
    public bool IsTurboOn { get; private set; }
    public float CurrentHealth => health;

    [SerializeField]
    private float health = 100f;
    private CameraController _cameraController;
    private HUDController _hudController;
    private bool _isEngineOn;

    private void Awake()
    {
        _hudController = gameObject.AddComponent<HUDController>();
        _cameraController = (CameraController)FindObjectOfType(typeof(CameraController));
    }

    private void Start()
    {
        StartEngine();
    }

    private void OnEnable()
    {
        Attach(_hudController);
        Attach(_cameraController);
    }

    private void OnDisable()
    {
        Detach(_hudController);
        Detach(_cameraController);
    }

    private void StartEngine()
    {
        _isEngineOn = true;
        NotifyObservers();
    }

    public void ToggleTurbo()
    {
        if (_isEngineOn)
        {
            IsTurboOn = !IsTurboOn;
        }

        NotifyObservers();
    }

    public void TakeDamage(float amount)
    {
        health -= amount;
        IsTurboOn = false;
        NotifyObservers();

        if (health < 0)
        {
            Destroy(gameObject);
        }
    }
}
public abstract class Observer : MonoBehaviour
{
    public abstract void Notify(Subject subject);
}
public class CameraController : Observer
{
    [SerializeField]
    private float _shakeMagnitude = 0.1f;
    private bool _isTurboOn;
    private Vector3 _initialPosition;
    private BikeController _bikeController;

    private void OnEnable()
    {
        _initialPosition = gameObject.transform.localPosition;
    }

    private void Update()
    {
        if (_isTurboOn)
        {
            Vector3 newRandomPosition = _initialPosition + (Random.insideUnitSphere * _shakeMagnitude);
            transform.localPosition = newRandomPosition;
        }
        else
        {
            transform.localPosition = _initialPosition;
        }
    }

    public override void Notify(Subject subject)
    {
        if (!_bikeController)
        {
            _bikeController = subject.GetComponent<BikeController>();
        }

        if (_bikeController)
        {
            _isTurboOn = _bikeController.IsTurboOn;
        }
    }
}
public class HUDController : Observer
{
    private bool _isTurboOn;
    private float _currentHealth;
    private BikeController _bikeController;

    private void OnGUI()
    {
        GUILayout.BeginArea(new Rect(50, 50, 100, 200));
        {
            GUILayout.BeginHorizontal("box");
            GUILayout.Label("Health: " + _currentHealth);
            GUILayout.EndHorizontal();

            if (_isTurboOn)
            {
                GUILayout.BeginHorizontal("box");
                GUILayout.Label("Turbo Activated!");
                GUILayout.EndHorizontal();
            }

            if (_currentHealth <= 50f)
            {
                GUILayout.BeginHorizontal("box");
                GUILayout.Label("WARNING: Low Health");
                GUILayout.EndHorizontal();
            }
        }
        GUILayout.EndArea();
    }

    public override void Notify(Subject subject)
    {
        if (!_bikeController)
        {
            _bikeController = subject.GetComponent<BikeController>();
        }

        if (_bikeController)
        {
            _isTurboOn = _bikeController.IsTurboOn;
            _currentHealth = _bikeController.CurrentHealth;
        }
    }
}
πŸ”Š State

State

Allows an object to alter its behavior when its internal state changes.

Diagram

Unity has this pattern already built-in in its own Animation System (also known as 'Mecanim'). Actually, it uses an FSM (Finite State Machine), which uses the State pattern, but with blending and transitions.

[RequireComponent(typeof(BikeController))]
public class ClientState : MonoBehaviour
{
    private BikeController _bikeController;

    private void Awake()
    {
        _bikeController = GetComponent<BikeController>();
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Start Bike"))
        {
            _bikeController.StartBike();
        }

        if (GUILayout.Button("Turn Left"))
        {
            _bikeController.Turn(Direction.Left);
        }

        if (GUILayout.Button("Turn Right"))
        {
            _bikeController.Turn(Direction.Right);
        }

        if (GUILayout.Button("Stop Bike"))
        {
            _bikeController.StopBike();
        }
    }
}
public class BikeController : MonoBehaviour
{
    [field: SerializeField] public float MaxSpeed { get; private set; } = 2.0f;
    [field: SerializeField] public float TurnDistance { get; private set; } = 2.0f;
    public float CurrentSpeed { get; set; }
    public Direction CurrentTurnDirection { get; private set; }

    private IBikeState _startState;
    private IBikeState _stopState;
    private IBikeState _turnState;

    private BikeStateContext _bikeStateContext;

    private void Awake()
    {
        _bikeStateContext = new BikeStateContext(this);
        _startState = gameObject.AddComponent<BikeStartState>();
        _stopState = gameObject.AddComponent<BikeStopState>();
        _turnState = gameObject.AddComponent<BikeTurnState>();
        _bikeStateContext.Transition(_stopState);
    }

    public void StartBike()
    {
        _bikeStateContext.Transition(_startState);
    }

    public void StopBike()
    {
        _bikeStateContext.Transition(_stopState);
    }

    public void Turn(Direction direction)
    {
        CurrentTurnDirection = direction;
        _bikeStateContext.Transition(_turnState);
    }
}
public enum Direction
{
    Left = -1,
    Right = 1
}
public class BikeStateContext
{
    public IBikeState CurrentState { get; set; }

    private readonly BikeController _bikeController;

    public BikeStateContext(BikeController bikeController)
    {
        _bikeController = bikeController;
    }

    public void Transition(IBikeState state)
    {
        CurrentState = state;
        CurrentState.Handle(_bikeController);
    }
}
public interface IBikeState
{
    void Handle(BikeController bikeController);
}
public class BikeStartState : MonoBehaviour, IBikeState
{
    private BikeController _bikeController;

    public void Handle(BikeController bikeController)
    {
        if (!_bikeController)
        {
            _bikeController = bikeController;
        }

        _bikeController.CurrentSpeed = _bikeController.MaxSpeed;
    }

    private void Update()
    {
        if (_bikeController && _bikeController.CurrentSpeed > 0)
        {
            Vector3 bikeTranslation = Vector3.forward * (_bikeController.CurrentSpeed * Time.deltaTime);
            _bikeController.transform.Translate(bikeTranslation);
        }
    }
}
public class BikeTurnState : MonoBehaviour, IBikeState
{
    private Vector3 _turnDirection;
    private BikeController _bikeController;

    public void Handle(BikeController bikeController)
    {
        if (!_bikeController)
        {
            _bikeController = bikeController;
        }

        _turnDirection.x = (float)_bikeController.CurrentTurnDirection;

        if (_bikeController.CurrentSpeed > 0)
        {
            transform.Translate(_turnDirection * _bikeController.TurnDistance);
        }
    }
}
public class BikeStopState : MonoBehaviour, IBikeState
{
    private BikeController _bikeController;

    public void Handle(BikeController bikeController)
    {
        if (!_bikeController)
        {
            _bikeController = bikeController;
        }

        _bikeController.CurrentSpeed = 0;
    }
}
πŸ”Š Strategy

Strategy

Allows one of a family of algorithms to be selected on-the-fly at runtime.

Diagram

public class ClientStrategy : MonoBehaviour
{
    private GameObject _drone;
    private List<IManeuverBehaviour> _components = new List<IManeuverBehaviour>();

    private void OnGUI()
    {
        if (GUILayout.Button("Spawn Drone"))
        {
            SpawnDrone();
        }
    }

    private void SpawnDrone()
    {
        _drone = GameObject.CreatePrimitive(PrimitiveType.Cube);
        _drone.AddComponent<Drone>();
        _drone.transform.position = Random.insideUnitSphere * 10;
        ApplyRandomStrategies();
    }

    private void ApplyRandomStrategies()
    {
        _components.Add(_drone.AddComponent<BoppingManeuver>());
        _components.Add(_drone.AddComponent<FallbackManeuver>());
        _components.Add(_drone.AddComponent<WeavingManeuver>());

        int index = Random.Range(0, _components.Count);
        _drone.GetComponent<Drone>().ApplyStrategy(_components[index]);
    }
}
public class Drone : MonoBehaviour
{
    public float Speed = 1f;
    public float MaxHeight = 5f;
    public float WeavingDistance = 1.5f;
    public float FallbackDistance = 20f;

    private Vector3 _rayDirection;
    private const float _rayAngle = -45f;
    private const float _rayDistance = 15f;

    private void Awake()
    {
        _rayDirection = transform.TransformDirection(Vector3.back) * _rayDistance;
        _rayDirection = Quaternion.Euler(_rayAngle, 0f, 0f) * _rayDirection;
    }


    private void Update()
    {
        Debug.DrawRay(transform.position, _rayDirection, Color.blue);

        if (Physics.Raycast(transform.position, _rayDirection, out var hitInfo, _rayDistance) && hitInfo.collider)
        {
            Debug.DrawRay(transform.position, _rayDirection, Color.green);
        }
    }

    public void ApplyStrategy(IManeuverBehaviour strategy)
    {
        strategy.Maneuver(this);
    }
}
public interface IManeuverBehaviour
{
    void Maneuver(Drone drone);
}
public class BoppingManeuver : MonoBehaviour, IManeuverBehaviour
{
    public void Maneuver(Drone drone)
    {
        StartCoroutine(Bopple(drone));
    }

    private IEnumerator Bopple(Drone drone)
    {
        float time;
        bool isReverse = false;
        float speed = drone.Speed;
        Vector3 startPosition = drone.transform.position;
        Vector3 endPosition = startPosition;
        endPosition.y = drone.MaxHeight;

        while (true)
        {
            time = 0;
            Vector3 start = drone.transform.position;
            Vector3 end = (isReverse) ? startPosition : endPosition;

            while (time < speed)
            {
                drone.transform.position = Vector3.Lerp(start, end, time / speed);
                time += Time.deltaTime;
                yield return null;
            }

            yield return new WaitForSeconds(1);
            isReverse = !isReverse;
        }
    }
}
public class FallbackManeuver : MonoBehaviour, IManeuverBehaviour
{
    public void Maneuver(Drone drone)
    {
        StartCoroutine(Fallback(drone));
    }

    private IEnumerator Fallback(Drone drone)
    {
        float time = 0;
        float speed = drone.Speed;
        Vector3 startPosition = drone.transform.position;
        Vector3 endPosition = startPosition;
        endPosition.z = drone.FallbackDistance;

        while (time < speed)
        {
            drone.transform.position = Vector3.Lerp(startPosition, endPosition, time / speed);
            time += Time.deltaTime;
            yield return null;
        }
    }
}
public class WeavingManeuver : MonoBehaviour, IManeuverBehaviour
{
    public void Maneuver(Drone drone)
    {
        StartCoroutine(Weave(drone));
    }

    private IEnumerator Weave(Drone drone)
    {
        float time;
        bool isReverse = false;
        float speed = drone.Speed;
        Vector3 startPosition = drone.transform.position;
        Vector3 endPosition = startPosition;
        endPosition.x = drone.WeavingDistance;

        while (true)
        {
            time = 0;
            Vector3 start = drone.transform.position;
            Vector3 end = (isReverse) ? startPosition : endPosition;

            while (time < speed)
            {
                drone.transform.position = Vector3.Lerp(start, end, time / speed);
                time += Time.deltaTime;
                yield return null;
            }

            yield return new WaitForSeconds(1);
            isReverse = !isReverse;
        }
    }
}
πŸ”Š Subclass Sandbox

Subclass Sandbox

Defines the behavior in a subclass using a set of operations provided by its base class.

πŸ”Š Template Method

Template Method

Defines the skeleton of an algorithm as an abstract class, allowing its subclasses to provide concrete behavior.

Diagram

This is basically the definition of polymorphism.

πŸ”Š Type Object

Type Object

Allows a flexible creation of new β€œclasses” by creating a single class, each instance of which represents a different type of object.

πŸ”Š Visitor

Visitor

Separates an algorithm from an object structure by moving the hierarchy of methods into one object.

Diagram

public class ClientVisitor : MonoBehaviour
{
    [SerializeField] private PowerUpVisitor _enginePowerUp;
    [SerializeField] private PowerUpVisitor _shieldPowerUp;
    [SerializeField] private PowerUpVisitor _weaponPowerUp;

    private BikeController _bikeController;

    private void Awake()
    {
        _bikeController = gameObject.AddComponent<BikeController>();
    }

    private void OnGUI()
    {
        if (GUILayout.Button("PowerUp Shield"))
        {
            _bikeController.Accept(_shieldPowerUp);
        }

        if (GUILayout.Button("PowerUp Engine"))
        {
            _bikeController.Accept(_enginePowerUp);
        }

        if (GUILayout.Button("PowerUp Weapon"))
        {
            _bikeController.Accept(_weaponPowerUp);
        }
    }
}
public interface IBikeElementVisitor
{
    void Visit(BikeShieldVisitable bikeShield);
    void Visit(BikeEngineVisitable bikeEngine);
    void Visit(BikeWeaponVisitable bikeWeapon);
}
[CreateAssetMenu(fileName = "PowerUp", menuName = "PowerUp")]
public class PowerUpVisitor : ScriptableObject, IBikeElementVisitor
{
    public string PowerupName;
    public GameObject PowerupPrefab;
    public string PowerupDescription;

    [Tooltip("Fully heal shield")]
    public bool HealShield;

    [Range(0f, 50f)]
    [Tooltip("Boost turbo settings up to increments of 50/mph")]
    public float TurboBoost;

    [Range(0f, 25)]
    [Tooltip("Boost weapon range in increments of up to 25 units")]
    public int WeaponRange;

    [Range(0.0f, 50f)]
    [Tooltip("Boost weapon strength in increments of up to 50%")]
    public float WeaponStrength;

    public void Visit(BikeShieldVisitable bikeShield)
    {
        if (HealShield)
        {
            bikeShield.HealtPercentage = 100f;
        }
    }

    public void Visit(BikeWeaponVisitable bikeWeapon)
    {
        int range = bikeWeapon.Range += WeaponRange;
        bikeWeapon.Range = (range >= bikeWeapon.MaxRange) ? bikeWeapon.MaxRange : range;

        float strength = bikeWeapon.Strength += Mathf.Round(bikeWeapon.Strength * WeaponStrength / 100);
        bikeWeapon.Strength = (strength >= bikeWeapon.MaxStrength) ? bikeWeapon.MaxStrength : strength;
    }

    public void Visit(BikeEngineVisitable bikeEngine)
    {
        float boost = bikeEngine.TurboBoostInMph += TurboBoost;

        if (boost < 0.0f)
        {
            bikeEngine.TurboBoostInMph = 0.0f;
        }
        else if (boost >= bikeEngine.MaxTurboBoost)
        {
            bikeEngine.TurboBoostInMph = bikeEngine.MaxTurboBoost;
        }
    }
}
public class BikeController : MonoBehaviour, IBikeElementVisitable
{
    private List<IBikeElementVisitable> _bikeElements = new List<IBikeElementVisitable>();

    private void Awake()
    {
        _bikeElements.Add(gameObject.AddComponent<BikeShieldVisitable>());
        _bikeElements.Add(gameObject.AddComponent<BikeWeaponVisitable>());
        _bikeElements.Add(gameObject.AddComponent<BikeEngineVisitable>());
    }

    public void Accept(IBikeElementVisitor visitor)
    {
        foreach (IBikeElementVisitable element in _bikeElements)
        {
            element.Accept(visitor);
        }
    }
}
public interface IBikeElementVisitable
{
    void Accept(IBikeElementVisitor visitor);
}
public class BikeShieldVisitable : MonoBehaviour, IBikeElementVisitable
{
    public float HealtPercentage = 50f;

    public float Damage(float damage)
    {
        return HealtPercentage -= damage;
    }

    public void Accept(IBikeElementVisitor visitor)
    {
        visitor.Visit(this);
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(125, 0, 200, 20), "Shield Health: " + HealtPercentage);
    }
}
public class BikeWeaponVisitable : MonoBehaviour, IBikeElementVisitable
{
    [Header("Range")]
    public int Range = 5;
    public int MaxRange = 25;

    [Header("Strength")]
    public float Strength = 25f;
    public float MaxStrength = 50f;

    public void Fire()
    {
        Debug.Log("Weapon fired!");
    }

    public void Accept(IBikeElementVisitor visitor)
    {
        visitor.Visit(this);
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(125, 40, 200, 20), "Weapon Range: " + Range);
        GUI.Label(new Rect(125, 60, 200, 20), "Weapon Strength: " + Strength);
    }
}
public class BikeEngineVisitable : MonoBehaviour, IBikeElementVisitable
{
    public float TurboBoostInMph = 25f;
    public float MaxTurboBoost = 200f;

    private const float _defaultSpeedInMph = 300f;
    private bool _isTurboOn;

    public float CurrentSpeed
    {
        get
        {
            return (_isTurboOn) ? _defaultSpeedInMph + TurboBoostInMph : _defaultSpeedInMph;
        }
    }

    public void ToggleTurbo()
    {
        _isTurboOn = !_isTurboOn;
    }

    public void Accept(IBikeElementVisitor visitor)
    {
        visitor.Visit(this);
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(125, 20, 200, 20), "Turbo Boost: " + TurboBoostInMph);
    }
}

🐣 Creational Patterns

Create objects, rather than instantiating them directly.

🐣 Abstract Factory

Abstract Factory

Groups object factories that have a common theme.

Diagram

🐣 Builder

Builder

Constructs complex objects by separating construction and representation.

Diagram

🐣 Factory Method

Factory Method

Creates objects without specifying the exact class to create.

Diagram

🐣 Prototype

Prototype

Creates objects by cloning an existing object.

Diagram

Unity has this pattern already built-in in its Prefabs System. When using the GameObject.Instantiate method it clones the original object (a prefab) and returns a clone (which is spawned in the current scene with the '(Clone)' suffix).

public class PrefabInstantiater : MonoBehaviour
{
    [SerializeField]
    private Transform _prefab;
    
    private void Start()
    {
        for (int i = 0; i < 10; ++i)
        {
            Instantiate(_prefab, new Vector3(i * 2f, 0, 0), Quaternion.identity);
        }
    }
}
🐣 Singleton

Singleton

Restricts object creation for a class to only one instance.

Diagram

This is a project killer pattern! It's the prohibited pattern which shall never be named (except in game jams). Instead of using singletons, program to an interface (not to an implementation) and if you use a DI framework to fill these dependencies even better. I highly recommend using Zenject. Dependency Inversion Principle > Singleton.

 public class MonoBehaviourSingleton<T> : MonoBehaviour where T : MonoBehaviour
 {
     private static bool _shuttingDown = false;
     private static readonly object _lock = new object();
     private static T _instance;

     public static T Instance
     {
         get
         {
             if (_shuttingDown)
             {
                 Debug.LogWarning($"[Singleton] Instance '{typeof(T)}' already destroyed. Returning null.");
                 return null;
             }

             lock (_lock)
             {
                 if (_instance == null)
                 {
                     _instance = (T)FindObjectOfType(typeof(T));

                     if (_instance == null)
                     {
                         var singletonObject = new GameObject();
                         _instance = singletonObject.AddComponent<T>();
                         singletonObject.name = $"{typeof(T)} (Singleton)";
                         DontDestroyOnLoad(singletonObject);
                     }
                 }

                 return _instance;
             }
         }
     }

     private void OnApplicationQuit()
     {
         _shuttingDown = true;
     }

     private void OnDestroy()
     {
         _shuttingDown = true;
     }
 }
 public sealed class UIManager : MonoBehaviourSingleton<UIManager>
 {
     public void ShowPanel<T>() where T : BasePanel
     {
         // show panel if it exists
     }

     public void HidePanel<T>() where T : BasePanel
     {
         // hide panel if it exists
     }
 }
 public class ControlsMenuPanel : BasePanel
 {
     private void ShowOptionsMenu()
     {
          UIManager.Instance.HidePanel<MainMenuPanel>();
          UIManager.Instance.ShowPanel<OptionsMenuPanel>();
     }
 }

βœ‚οΈ Decoupling Patterns

Split dependencies to ensure that changing a piece of code doesn't require changing another one.

βœ‚οΈ Component

Component

Allows a single entity to span multiple domains without coupling the domains to each other.

Unity has this pattern already built-in in its own Component System.

 [RequireComponent(typeof(Animator))]
 [RequireComponent(typeof(AudioSource))]
 [RequireComponent(typeof(Rigidbody2D))]
 public abstract class Creature : MonoBehaviour, IEntity
 {
     protected Animator _animator;
     protected AudioSource _audioSource;
     protected Rigidbody2D _rigidbody2D;

     protected virtual void Start()
     {
         _animator = GetComponent<Animator>();
         _audioSource = GetComponent<AudioSource>();
         _rigidbody2D = GetComponent<Rigidbody2D>();
     }
 }
βœ‚οΈ Event Queue

Event Queue

Decouples when an event is sent and when it is executed.

βœ‚οΈ Service Locator

Service Locator

Provides global access to services without being attached to the concrete class.

public static class ServiceLocator
{
    private static readonly IDictionary<Type, object> Services = new Dictionary<Type, Object>();

    public static void RegisterService<T>(T service)
    {
        if (!Services.ContainsKey(typeof(T)))
        {
            Services[typeof(T)] = service;
        }
        else
        {
            throw new ApplicationException("Service already registered");
        }
    }

    public static T GetService<T>()
    {
        try
        {
            return (T)Services[typeof(T)];
        }
        catch
        {
            throw new ApplicationException("Requested service not found.");
        }
    }
}
public class ClientServiceLocator : MonoBehaviour
{
    private void Awake()
    {
        RegisterServices();
    }

    private void RegisterServices()
    {
        ILoggerService logger = new Logger();
        ServiceLocator.RegisterService(logger);

        IAnalyticsService analytics = new Analytics();
        ServiceLocator.RegisterService(analytics);

        IAdvertisement advertisement = new Advertisement();
        ServiceLocator.RegisterService(advertisement);
    }

    private void OnGUI()
    {
        GUILayout.Label("Review output in the console:");

        if (GUILayout.Button("Log Event"))
        {
            ILoggerService logger = ServiceLocator.GetService<ILoggerService>();
            logger.Log("Hello World!");
        }

        if (GUILayout.Button("Send Analytics"))
        {
            IAnalyticsService analytics = ServiceLocator.GetService<IAnalyticsService>();
            analytics.SendEvent("Hello World!");
        }

        if (GUILayout.Button("Display Advertisement"))
        {
            IAdvertisement advertisement = ServiceLocator.GetService<IAdvertisement>();
            advertisement.DisplayAd();
        }
    }
}
public interface ILoggerService
{
    void Log(string message);
}
public class Logger : ILoggerService
{
    public void Log(string message)
    {
        Debug.Log("Logged: " + message);
    }
}
public interface IAnalyticsService
{
    void SendEvent(string eventName);
}
public class Analytics : IAnalyticsService
{
    public void SendEvent(string eventName)
    {
        Debug.Log("Sent: " + eventName);
    }
}
public interface IAdvertisement
{
    void DisplayAd();
}
public class Advertisement : IAdvertisement
{
    public void DisplayAd()
    {
        Debug.Log("Displaying video advertisement");
    }
}

πŸ› οΈ Optimization Patterns

Speed up the game by pushing the hardware to the furthest.

πŸ› οΈ Data Locality

Data Locality

Accelerates memory access by arranging data to take advantage of CPU caching.

πŸ› οΈ Dirty Flag

Dirty Flag

Avoids unnecessary work by deferring it until the result is needed.

πŸ› οΈ Object Pool

Object Pool

Allows the recycling of objects and optimizes performance and memory.

public class ClientObjectPool : MonoBehaviour
{
    private DroneObjectPool _pool;

    private void Awake()
    {
        _pool = gameObject.AddComponent<DroneObjectPool>();
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Spawn Drones"))
        {
            _pool.SpawnPooledItemInRandomPos();
        }
    }
}
public class DroneObjectPool : MonoBehaviour
{
    [SerializeField]
    private int _poolSize = 10;

    public IObjectPool<Drone> Pool
    {
        get
        {
            if (_pool == null)
            {
                _pool = new ObjectPool<Drone>(CreatePooledItem, OnTakeFromPool, OnReturnedToPool, OnDestroyPoolObject, true, _poolSize, _poolSize);
            }
            return _pool;
        }
    }

    private IObjectPool<Drone> _pool;

    private Drone CreatePooledItem()
    {
        var droneGO = GameObject.CreatePrimitive(PrimitiveType.Cube);
        droneGO.name = "Drone";
        var drone = droneGO.AddComponent<Drone>();
        drone.Pool = Pool;
        return drone;
    }

    private void OnReturnedToPool(Drone drone)
    {
        drone.gameObject.SetActive(false);
    }

    private void OnTakeFromPool(Drone drone)
    {
        drone.gameObject.SetActive(true);
    }

    private void OnDestroyPoolObject(Drone drone)
    {
        Destroy(drone.gameObject);
    }

    public void SpawnPooledItemInRandomPos()
    {
        var amount = Random.Range(1, 10);

        for (int i = 0; i < amount; ++i)
        {
            var drone = Pool.Get();
            drone.transform.position = Random.insideUnitSphere * 10;
        }
    }
}
public class Drone : MonoBehaviour
{
    public IObjectPool<Drone> Pool { get; set; }
    public float CurrentHealth;

    [SerializeField] private float _maxHealth = 100.0f;
    [SerializeField] private float _timeToSelfDestruct = 3.0f;

    private void Awake()
    {
        CurrentHealth = _maxHealth;
    }

    private void OnEnable()
    {
        AttackPlayer();
        StartCoroutine(SelfDestruct());
    }

    public void AttackPlayer()
    {
        Debug.Log("Attack player!");
    }

    private IEnumerator SelfDestruct()
    {
        yield return new WaitForSeconds(_timeToSelfDestruct);
        TakeDamage(_maxHealth);
    }

    public void TakeDamage(float amount)
    {
        CurrentHealth -= amount;

        if (CurrentHealth <= 0.0f)
        {
            ReturnToPool();
        }
    }

    private void ReturnToPool()
    {
        Pool.Release(this);
    }

    private void OnDisable()
    {
        ResetDrone();
    }

    private void ResetDrone()
    {
        CurrentHealth = _maxHealth;
    }
}
πŸ› οΈ Spatial Partition

Spatial Partition

Locates objects efficiently by storing them in a data structure organized by their positions.

Unity has this pattern already built-in in its own Frustum Culling System. It uses an octree for culling objects.

⏰ Sequencing Patterns

Invent time and craft the gears that drive the game's great clock.

⏰ Double Buffer

Double Buffer

Causes a series of sequential operations to appear instantaneous or simultaneous.

Unity has this pattern already built-in in its own Rendering System. It uses 2 or even more buffers by native implementation.

⏰ Game Loop

Game Loop

Decouples the progression of game time from user input and processor speed.

Unity has this pattern already built-in in its own Execution System.

Here is a C++ implementation I made in the past.

int main() 
{
   while (!world.IsGameOver()) 
   {
      getline(cin, input);
      vector<string> words = Globals::split(input);

      if (ShouldExit())
      {
         break;
      }

      world.HandleInput(words);
   }
}
⏰ Update Method

Update Method

Simulates a collection of independent objects by telling each to process one frame of behavior at a time.

Unity has this pattern already built-in in its MonoBehaviour base class, from which every Unity script derives.

public class NewBehaviourScript : MonoBehaviour
{
    // Start is called before the first frame update
    private void Start()
    {

    }

    // Update is called once per frame
    private void Update()
    {

    }
}

🧬 Structural Patterns

Use inheritance to compose interfaces and define ways to compose objects to obtain new functionality.

🧬 Adapter

Adapter

Allows classes with incompatible interfaces to work together by wrapping its own interface around that of an already existing class.

Diagram

public class ClientAdapter : MonoBehaviour
{
    [SerializeField]
    private InventoryItem _item;
    private InventorySystem _inventorySystem;
    private IInventorySystem _inventorySystemAdapter;

    private void Awake()
    {
        _inventorySystem = new InventorySystem();
        _inventorySystemAdapter = new InventorySystemAdapter();
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Add item (no adapter)"))
        {
            _inventorySystem.AddItem(_item);
        }

        if (GUILayout.Button("Add item (with adapter)"))
        {
            _inventorySystemAdapter.AddItem(_item, SaveLocation.Both);
        }
    }
}
public class InventorySystem
{
    public void AddItem(InventoryItem item)
    {
        Debug.Log("Adding item to the cloud");
    }

    public void RemoveItem(InventoryItem item)
    {
        Debug.Log("Removing item from the cloud");
    }

    public List<InventoryItem> GetInventory()
    {
        Debug.Log("Returning an inventory list stored in the cloud");
        return new List<InventoryItem>();
    }
}
public interface IInventorySystem
{
    void SyncInventories();
    void AddItem(InventoryItem item, SaveLocation location);
    void RemoveItem(InventoryItem item, SaveLocation location);
    List<InventoryItem> GetInventory(SaveLocation location);
}
public class InventorySystemAdapter : InventorySystem, IInventorySystem
{
    private List<InventoryItem> _cloudInventory;

    public void SyncInventories()
    {
        var _cloudInventory = GetInventory();
        Debug.Log("Synchronizing local drive and cloud inventories");
    }

    public void AddItem(InventoryItem item, SaveLocation location)
    {
        if (location == SaveLocation.Cloud)
        {
            AddItem(item);
        }
        else if (location == SaveLocation.Local)
        {
            Debug.Log("Adding item to local drive");
        }
        else if (location == SaveLocation.Both)
        {
            Debug.Log("Adding item to local drive and on the cloud");
        }
    }

    public void RemoveItem(InventoryItem item, SaveLocation location)
    {
        Debug.Log("Remove item from local/cloud/both");
    }

    public List<InventoryItem> GetInventory(SaveLocation location)
    {
        Debug.Log("Get inventory from local/cloud/both");
        return new List<InventoryItem>();
    }
}
[CreateAssetMenu(fileName = "New Item", menuName = "Inventory")]
public class InventoryItem : ScriptableObject
{
    // Placeholder class
}
public enum SaveLocation
{
    Local,
    Cloud,
    Both
}
🧬 Bridge

Bridge

Decouples an abstraction from its implementation so that the two can vary independently.

Diagram

🧬 Composite

Composite

Composes zero-or-more similar objects so that they can be manipulated as one object.

Diagram

🧬 Decorator

Decorator

Dynamically adds/overrides behavior in an existing method of an object.

Diagram

public class ClientDecorator : MonoBehaviour
{
    private BikeWeapon _bikeWeapon;
    private bool _isWeaponDecorated;

    private void Awake()
    {
        _bikeWeapon = (BikeWeapon)FindObjectOfType(typeof(BikeWeapon));
    }

    private void OnGUI()
    {
        if (!_isWeaponDecorated && GUILayout.Button("Decorate Weapon"))
        {
            _bikeWeapon.Decorate();
            _isWeaponDecorated = !_isWeaponDecorated;
        }

        if (_isWeaponDecorated && GUILayout.Button("Reset Weapon"))
        {
            _bikeWeapon.Reset();
            _isWeaponDecorated = !_isWeaponDecorated;
        }

        if (GUILayout.Button("Toggle Fire"))
        {
            _bikeWeapon.ToggleFire();
        }
    }
}
public class BikeWeapon : MonoBehaviour
{
    public WeaponConfig WeaponConfig;
    public WeaponAttachment MainAttachment;
    public WeaponAttachment SecondaryAttachment;

    private IWeapon _weapon;
    private bool _isFiring;
    private bool _isDecorated;

    private void Awake()
    {
        _weapon = new Weapon(WeaponConfig);
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(5, 50, 150, 100), "Range: " + _weapon.Range);
        GUI.Label(new Rect(5, 70, 150, 100), "Strength: " + _weapon.Strength);
        GUI.Label(new Rect(5, 90, 150, 100), "Cooldown: " + _weapon.Cooldown);
        GUI.Label(new Rect(5, 110, 150, 100), "Firing Rate: " + _weapon.Rate);
        GUI.Label(new Rect(5, 130, 150, 100), "Weapon Firing: " + _isFiring);

        if (MainAttachment && _isDecorated)
        {
            GUI.Label(new Rect(5, 150, 150, 100), "Main Attachment: " + MainAttachment.name);
        }

        if (SecondaryAttachment && _isDecorated)
        {
            GUI.Label(new Rect(5, 170, 200, 100), "Secondary Attachment: " + SecondaryAttachment.name);
        }
    }

    public void ToggleFire()
    {
        _isFiring = !_isFiring;

        if (_isFiring)
        {
            StartCoroutine(FireWeapon());
        }
    }

    private IEnumerator FireWeapon()
    {
        float firingRate = 1.0f / _weapon.Rate;

        while (_isFiring)
        {
            yield return new WaitForSeconds(firingRate);
            Debug.Log("fire");
        }
    }

    public void Reset()
    {
        _weapon = new Weapon(WeaponConfig);
        _isDecorated = !_isDecorated;
    }

    public void Decorate()
    {
        if (MainAttachment && !SecondaryAttachment)
        {
            _weapon = new WeaponDecorator(_weapon, MainAttachment);
        }

        if (MainAttachment && SecondaryAttachment)
        {
            _weapon = new WeaponDecorator(new WeaponDecorator(_weapon, MainAttachment), SecondaryAttachment);
        }

        _isDecorated = !_isDecorated;
    }
}
public interface IWeapon
{
    float Rate { get; }
    float Range { get; }
    float Strength { get; }
    float Cooldown { get; }
}
public class Weapon : IWeapon
{
    public float Range
    {
        get { return _config.Range; }
    }

    public float Rate
    {
        get { return _config.Rate; }
    }

    public float Strength
    {
        get { return _config.Strength; }
    }

    public float Cooldown
    {
        get { return _config.Cooldown; }
    }

    private readonly WeaponConfig _config;

    public Weapon(WeaponConfig weaponConfig)
    {
        _config = weaponConfig;
    }
}
[CreateAssetMenu(fileName = "NewWeaponConfig", menuName = "Weapon/Config", order = 1)]
public class WeaponConfig : ScriptableObject, IWeapon
{
    [Range(0, 60)]
    [Tooltip("Rate of firing per second")]
    [SerializeField]
    private float rate;

    [Range(0, 50)]
    [Tooltip("Weapon range")]
    [SerializeField]
    private float range;

    [Range(0, 100)]
    [Tooltip("Weapon strength")]
    [SerializeField]
    private float strength;

    [Range(0, 5)]
    [Tooltip("Cooldown duration")]
    [SerializeField]
    private float cooldown;

    public string weaponName;
    public GameObject weaponPrefab;
    public string weaponDescription;

    public float Rate
    {
        get { return rate; }
    }

    public float Range
    {
        get { return range; }
    }

    public float Strength
    {
        get { return strength; }
    }

    public float Cooldown
    {
        get { return cooldown; }
    }
}
[CreateAssetMenu(fileName = "NewWeaponAttachment", menuName = "Weapon/Attachment", order = 1)]
public class WeaponAttachment : ScriptableObject, IWeapon
{
    [Range(0, 50)]
    [Tooltip("Increase rate of firing per second")]
    [SerializeField] public float rate;

    [Range(0, 50)]
    [Tooltip("Increase weapon range")]
    [SerializeField] float range;

    [Range(0, 100)]
    [Tooltip("Increase weapon strength")]
    [SerializeField] public float strength;

    [Range(0, -5)]
    [Tooltip("Reduce cooldown duration")]
    [SerializeField] public float cooldown;

    public string attachmentName;
    public GameObject attachmentPrefab;
    public string attachmentDescription;

    public float Rate
    {
        get { return rate; }
    }

    public float Range
    {
        get { return range; }
    }

    public float Strength
    {
        get { return strength; }
    }

    public float Cooldown
    {
        get { return cooldown; }
    }
}
public class WeaponDecorator : IWeapon
{
    private readonly IWeapon _decoratedWeapon;
    private readonly WeaponAttachment _attachment;

    public WeaponDecorator(IWeapon weapon, WeaponAttachment attachment)
    {
        _attachment = attachment;
        _decoratedWeapon = weapon;
    }

    public float Rate
    {
        get
        {
            return _decoratedWeapon.Rate + _attachment.Rate;
        }
    }

    public float Range
    {
        get
        {
            return _decoratedWeapon.Range + _attachment.Range;
        }
    }

    public float Strength
    {
        get
        {
            return _decoratedWeapon.Strength + _attachment.Strength;
        }
    }

    public float Cooldown
    {
        get
        {
            return _decoratedWeapon.Cooldown + _attachment.Cooldown;
        }
    }
}
🧬 Facade

Facade

Provides a simplified interface to a large body of code.

Diagram

The Facade pattern establishes a new interface, whereas the Adapter pattern adapts an old interface.

public class ClientFacade : MonoBehaviour
{
    private BikeEngine _bikeEngine;

    private void Awake()
    {
        _bikeEngine = gameObject.AddComponent<BikeEngine>();
    }

    private void OnGUI()
    {
        if (GUILayout.Button("Turn On"))
        {
            _bikeEngine.TurnOn();
        }

        if (GUILayout.Button("Turn Off"))
        {
            _bikeEngine.TurnOff();
        }

        if (GUILayout.Button("Toggle Turbo"))
        {
            _bikeEngine.ToggleTurbo();
        }
    }
}
public class BikeEngine : MonoBehaviour
{
    public float burnRate = 1f;
    public float fuelAmount = 100f;
    public float tempRate = 5f;
    public float minTemp = 50f;
    public float maxTemp = 65f;
    public float currentTemp;
    public float turboDuration = 2f;

    private FuelPump _fuelPump;
    private TurboCharger _turboCharger;
    private CoolingSystem _coolingSystem;
    private bool _isEngineOn;

    private void Awake()
    {
        _fuelPump = gameObject.AddComponent<FuelPump>();
        _turboCharger = gameObject.AddComponent<TurboCharger>();
        _coolingSystem = gameObject.AddComponent<CoolingSystem>();
    }

    private void Start()
    {
        _fuelPump.engine = this;
        _turboCharger.engine = this;
        _coolingSystem.engine = this;
    }

    public void TurnOn()
    {
        _isEngineOn = true;
        StartCoroutine(_fuelPump.burnFuel);
        StartCoroutine(_coolingSystem.coolEngine);
    }

    public void TurnOff()
    {
        _isEngineOn = false;
        _coolingSystem.ResetTemperature();
        StopCoroutine(_fuelPump.burnFuel);
        StopCoroutine(_coolingSystem.coolEngine);
    }

    public void ToggleTurbo()
    {
        if (_isEngineOn)
        {
            _turboCharger.ToggleTurbo(_coolingSystem);
        }
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(100, 0, 500, 20), "Engine Running: " + _isEngineOn);
    }
}
public class FuelPump : MonoBehaviour
{
    public BikeEngine engine;
    public IEnumerator burnFuel;

    private void Awake()
    {
        burnFuel = BurnFuel();
    }

    private IEnumerator BurnFuel()
    {
        while (true)
        {
            yield return new WaitForSeconds(1);
            engine.fuelAmount -= engine.burnRate;

            if (engine.fuelAmount <= 0.0f)
            {
                engine.TurnOff();
                yield return 0;
            }
        }
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(100, 40, 500, 20), "Fuel: " + engine.fuelAmount);
    }
}
public class TurboCharger : MonoBehaviour
{
    public BikeEngine engine;

    private bool _isTurboOn;
    private CoolingSystem _coolingSystem;

    public void ToggleTurbo(CoolingSystem coolingSystem)
    {
        _coolingSystem = coolingSystem;
        if (!_isTurboOn)
        {
            StartCoroutine(TurboCharge());
        }
    }

    private IEnumerator TurboCharge()
    {
        _isTurboOn = true;
        _coolingSystem.PauseCooling();

        yield return new WaitForSeconds(engine.turboDuration);

        _isTurboOn = false;
        _coolingSystem.PauseCooling();
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(100, 60, 500, 20), "Turbo Activated: " + _isTurboOn);
    }
}
public class CoolingSystem : MonoBehaviour
{

    public BikeEngine engine;
    public IEnumerator coolEngine;
    private bool _isPaused;

    private void Awake()
    {
        coolEngine = CoolEngine();
    }

    public void PauseCooling()
    {
        _isPaused = !_isPaused;
    }

    public void ResetTemperature()
    {
        engine.currentTemp = 0.0f;
    }

    private IEnumerator CoolEngine()
    {
        while (true)
        {
            yield return new WaitForSeconds(1);

            if (!_isPaused)
            {
                if (engine.currentTemp > engine.minTemp)
                {
                    engine.currentTemp -= engine.tempRate;
                }
                else if (engine.currentTemp < engine.minTemp)
                {
                    engine.currentTemp += engine.tempRate;
                }
            }
            else
            {
                engine.currentTemp += engine.tempRate;
            }

            if (engine.currentTemp > engine.maxTemp)
            {
                engine.TurnOff();
            }
        }
    }

    private void OnGUI()
    {
        GUI.color = Color.green;
        GUI.Label(new Rect(100, 20, 500, 20), "Temp: " + engine.currentTemp);
    }
}
🧬 Flyweight

Flyweight

Reduces the cost of creating and manipulating a large number of similar objects.

Diagram

Unity has this pattern already built-in in its Prefabs System by referencing the data of 1 prefab to instantiate multiple objects that are similar reducing memory usage and the same goes for the Scriptable Objects System as if multiple prefabs reference the same scriptable object, only 1 scriptable object reference will be used for all prefabs (less copies equals less memory).

🧬 Proxy

Proxy

Provides a placeholder for another object to control access, reduce cost, and reduce complexity.

Diagram

About

A tiny retro action RPG implementation made applying Software Design Patterns to serve as a guide of reusable solutions that can be applied to common problems.

License:MIT License


Languages

Language:C# 100.0%