RenderHeads / UnityPlugin-ModulePattern

A simple module pattern (in the classical sense) for building gameplay systems decoupled from the transform hierarchy (run in c# land and access from monobehaviour-land).

Home Page:https://www.renderheads.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RenderHeads ©2021

Author / Maintainer: Ross Borchers

Module pattern for Unity

The module pattern is a framework for building gameplay systems decoupled from the transform hierarchy. The framework provides a very light set of tools to create acyclical, decoupled caller hierarchies in code, and allows you to access them from MonoBehaviour-land.

A module in a classical sense! A decoupled, cohesive and replaceable piece of functionality, hidden behind an interface. Most of the time, modules are plain C# classes, but they could be anything you like.

We also provide a factory implementation to access modules program or scene wide, so they can improve on the singleton pattern and provide access at different levels of scope.

Have you experienced one or more of the following symptoms?

  • Uncertainty surrounding which components depend on one another?
  • Disbelief staring at a mess of duplicated game objects after project hand-over?
  • Dread while searching for a component in the hierarchy editor window?
  • Trepidation related to moving a component to a different GameObject?
  • Concern over linking components together in the hierarchy and whether they will randomly become unlinked?
  • Anxiety while debugging, caused by forgetting to assign a reference?
  • Unease building the transform hierarchy for systems that have no reason to be represented spatially?
  • Confusion when disabled GameObjects erroneously disable an important component?

The module pattern was built to help avoid these issues

Features

  • Build your module hierarchy in code.
  • Access modules anywhere, globally and on a per scene basis, without overusing singletons.
  • Create modules as plain C# classes which open up the possibility for new design patterns:

The Module Pattern is not

  • It is not a replacement or in competition with DOTS, Jobs, or Burst. You can use them together.
  • It is not a replacement or in competition with MonoBehaviours, MonoBehaviours are still useful for view related logic.

Installation

Using Unity's Package Manager (UPM), select Add New Package from Git URL, and paste the following URL: https://github.com/RenderHeads/UnityPlugin-ModulePattern.git?path=/Packages/RH.ModulePattern

Usage

There are only three useful files in this repository:

  • IModule
    • Interface for any module you want to create (A C# class that extends IModule), IModuleFactory requires modules inherit from this.
  • IModuleFactory
    • Interface responsible for storing modules. This is used to get Modules in your game, whether it be in MonoBehaviours, Systems, etc.
  • DefaultModuleFactory is an implementation of IModuleFactory.
    • It provides a standard way to get modules across your game and should be appropriate for 90% of use cases.

Note that we use interfaces wherever possible as a matter of principle to maintain decoupling. This abstraction is enforced in DefaultModuleFactory, but it is not necessarily required if you define your own module factory. It's often faster to develop without abstraction.

Example

You can use a MonoBehaviour to bootstrap the module system, but there are other ways to bootstrap the module system. You just need a way to create and update the module factory and modules. Using a GameManager/LevelManager's Awake/Start and Update functions suffice most of the time.

  • Making a module factory for each scene you want to have a dedicated group of modules:
//We specify the scene this factory is created in so we can search for modules by scene.
IModuleFactory moduleFactory = new DefaultModuleFactory(gameObject.scene);
  • Initializing modules and dependencies, adding them to the module factory:
IMyModule1 module1 = moduleFactory.AddModule(new MyModule1());
IMyModule2 module2 = moduleFactory.AddModule(new MyModule2(module1)); //Module2 depends on module 1.
  • After initialization, accessing modules from a MonoBehaviour:
//Get factory by scene
if(DefaultModuleFactory.TryFindFactoryInScene(this.gameObject.scene, out IModuleFactory factory))
{
   //Get module from factory
   if(factory.TryGetModule(out IModule1 module1))
   {
      module1.FooBar();
   }
}

//Get the first module of type in all factories across all scenes.
if(DefaultModuleFactory.TryFindFirstInAll(out IModule1 module1))
{
   module1.FooBar();
}

//Get all modules of type in all factories across all scenes.
List<IModule1> modules = DefaultModuleFactory.FindInAll<IModule1>();

//Get all module factories for all scenes
List<IModuleFactory> factories = DefaultModuleFactory.GetAll();

Rationale

Inter-class communication traditionally is achieved by a singleton, FindObjectOfType or GetComponent, GetComponentInChildren, GetComponentInParent and related functions. Sometimes you may assign a reference in an inspector field.

All of these assume some relationship between the transform hierarchy and the code structure. This is not always the case. Systems can contain logic but do not handle rendering and have no reason to be spatial - they are not view components! The relationship does not need to be serialized in the scene or prefab. There may be little relationship between transform hierarchy order and the caller hierarchy. It's convoluted.

Script update is typically controlled by MonoBehaviour Start/Update/FixedUpdate/LateUpdate callbacks. This requires that scripts inherit from MonoBehaviour, which couples script update to the transform hierarchy. There is no reason this needs to be the case. Furthermore, MonoBehaviour update order is notoriously hard to control and understand and can lead to one-frame-late type bugs. Not to mention the performance implications!

Based on these observations we chose to separate the caller hierarchy for non-view systems from the scene tree hierarchy. In our projects, it has helped us decouple, standardize and re-use code and helped developers jump between projects faster than they otherwise would have been able to.

Sample Project

Project Description

The project shows a simple use case for the module pattern, where two modules perform and indepedant function button are dependant on each other. In this case, the one module spawns objects (ISpawnerModule), and the other module moves objects (IMoverModule).

Application Entrypoint

The application entrypoint is GameManager.cs and has the responsibility of setting up and modules and updating them. The setup happens in the Awake() method and the update step happens in the Update() method

The Awake method reads as follows

       void Awake()
        {
            //Create a new defaultmodule factory and pass in the active scene as a reference, so this particular module can be scoped to the scene
            DefaultModuleFactory _factory = new DefaultModuleFactory(gameObject.scene);

            //declare our spawner module for spawning objects in the scene, and set spawn immediately = true
            _spawnerModule = new ConsistentSpawnModule(_spawnPrefab, true);

            //declare our mover module for moving objects around
            _moverModule = new MoverModule(_spawnerModule);

            //add our modules to the factory so they can be accessed outside this scope.
            _factory.AddModule(_spawnerModule);
            _factory.AddModule(_moverModule);

            SetupViewCallbacks();
        }

You will notice we declare two modules, a spawner module, and a mover module. The Mover module takes the Spawner module in as a constructor, as it uses some of its functionality to perform its function. This clearly defines a dependency of one on the other (so we are ensured that these two modules are initialized in the right order).

Finally we add these modules to the factory so we can utilize them in other places. It is important to note in this sample we declare these types as interfaces so it is easy to swap out the implementation if we wish to do so

The Update Method reads as follows

        /// <summary>
        ///  we will manually call the UpdateModule for each module that we have defined, in the order we want, so we can be guarenteed of update order.
        /// </summary>
        void Update()
        {
            _spawnerModule.UpdateModule();
            //update our move module after the spawning has taken place
            _moverModule.UpdateModule();
        }

In this particular pattern, we have to manually call UpdateModule in an update loop somewhere (typically a global game manager). This ensures that our update order is as we specify it.

Module Structure

This projects has 2 modules, ISpawnerModule and IMoverModule

Each module is made up of 2 files: an interface file and an implementation file.

The interface needs to implement from IModule:

    public interface IMoverModule : IModule

and the implementation needs to implement the interface:

    public class MoverModule : IMoverModule

Accessing Modules

The sample also has a file called GameView which controls the view of the application (in this case just allows us to toggle on and off spawning and movement).

The view fetches a references from the DefaultModuleFactory for our two modules in the Start Methods

        void Start()
        {
            if (!DefaultModuleFactory.TryFindFirstInAll(out _spawnerModule))
            {
                throw new System.Exception("[GameView] Could not find SpawnerModule, was it declared in game manager Awake?");
            }

            if (!DefaultModuleFactory.TryFindFirstInAll(out _moverModule))
            {
                throw new System.Exception("[GameView] Could not find MoverModule, was it declared in game manager Awake?");
            }

            _spawnButton.onClick.AddListener(() => { OnSpawnerClick.Invoke(); });
            _moverButton.onClick.AddListener(() => { OnMoverClick.Invoke(); });
         }

and then utilizes the functions exposed by the interface in the update method

        void Update()
        {
            _countLabel.text = $"Total Spawned: {_spawnerModule.GetSpawnCount()}";
            _spawnButtonText.text = $"{(_spawnerModule.IsSpawning() ? "Stop" : "Start")} spawning";
            _moveButtonText.text = $"{(_moverModule.IsMoving() ? "Stop" : "Start")} moving";
        }

Usage and Contribution

Usage License

The project is licensed under a GPL-3.0 license, which means you can use it for commerical and non commercial use, but the project you use it in also needs to apply the GPL-3.0 license and be open-sourced. If this license is not suitable for you, please contact us at southafrica@renderheads.com and we can discuss an appropriate commercial license.

Contributors License

We are currently working on a Contributors License Agreement, which we will put up here when it's ready. In the meantime, if you would like to contribute, please reach out to us.

About

A simple module pattern (in the classical sense) for building gameplay systems decoupled from the transform hierarchy (run in c# land and access from monobehaviour-land).

https://www.renderheads.com

License:Other


Languages

Language:C# 100.0%