Home

Awesome

Morpeh.Globals License Unity Version

⚑️ Morpeh ECS Scriptable Object Singletons and Events for Unity Game Engine.

πŸ“– How To Install

Unity Engine

Minimal Unity Version is 2020.3.*
Require Git for installing package.
Require Tri Inspector for drawing in inspector.

<details> <summary>Open Unity Package Manager and add Morpeh URL. </summary>

installation_step1.png
installation_step2.png

</details>

    ⭐ Master: https://github.com/scellecs/morpeh.git
    🚧 Stage: https://github.com/scellecs/morpeh.git#stage-2023.1
    🏷️ Tag: https://github.com/scellecs/morpeh.git#2023.1.0

πŸ“˜ Singletons and Globals Assets. Event system.

There is an execution order in the ECS pattern, so we cannot use standard delegates or events, they will break it.

ECS uses the concept of a deferred call, or the events are data.
In the simplest cases, events are used as entities with empty components called tags or markers.
That is, in order to notify someone about the event, you need to create an entity and add an empty component to it.
Another system creates a filter for this component, and if there are entities, we believe that the event is published.

In general, this is a working approach, but there are several problems.
Firstly, these tags overwhelm the project with their types, if you wrote a message bus, then you understand what I mean.
Each event in the game has its own unique type and there is not enough imagination to give everyone a name.
Secondly, it’s uncomfortable working with these events from MonoBehaviours, UI, Visual Scripting Frameworks (Playmaker, Bolt, etc.)

As a solution to this problem, global assets were created.

πŸ”– Singleton is a simple ScriptableObject that is associated with one specific entity.
It is usually used to add dynamic components to one entity without using filters.

πŸ”– GlobalEvent is a Singleton, which has the functionality of publishing events to the world by adding a tag to its entity.
It has 4 main methods for working with it:

  1. Publish (arg) - publish in the next frame, all systems will see this.
  2. IsPublished - did anyone publish this event
  3. BatchedChanges - a data stack where publication arguments are added.

πŸ”– GlobalVariable is a GlobalEvent that stores the start value and the last value after the changes.
It also has the functionality of saving and loading data from PlayerPrefs.

You can create globals by context menu Create/ECS/Globals/ in Project Window.
You can declare globals in any systems, components and scripts and set it by Inspector Window, for example:

public sealed class HealthSystem : UpdateSystem {
    public GlobalEvent myEvent;
    ...
}

And check their publication with:

public sealed class HealthSystem : UpdateSystem {
    public GlobalEvent myEvent;
    ...
    public override void OnUpdate(float deltaTime) {
        if (myEvent.IsPublished) {
            Debug.Log("Event is published");
        }
    }
}

And there is also a variation with checking for null:

public sealed class HealthSystem : UpdateSystem {
    public GlobalEvent myEvent;
    ...
    public override void OnUpdate(float deltaTime) {
        if (myEvent) {
            Debug.Log("Event is not null and is published");
        }
    }
}

πŸ“˜ License

πŸ“„ MIT License

πŸ’¬ Contacts

βœ‰οΈ Telegram: olegmrzv
πŸ“§ E-Mail: benjminmoore@gmail.com
πŸ‘₯ Telegram Community RU: Morpeh ECS Development