Giter VIP home page Giter VIP logo

cafu_zenject's Introduction

CAFU Zenject

What

  • Zenject utilities for CAFU
  • Provide injection for UniRx.MessageBroker
    • Bind IMessagePublisher to MessageBroker
    • Bind IMessageReceiver to MessageBroker
  • Provide interfaces and extensions to publish/receive some instance
    • IInstancePublisher
    • IInstanceReceiver

Requirement

  • UniRx
  • Zenject
  • CAFU v3

Install

yarn add "umm/cafu_zenject#^1.0.0"

Usage

Installationn

Add CAFUInstaller.prefab into Prefab Installers of Scene Context in System scene.

Brokerage instances

If you want to exchange instances generated dynamically, you can use wrapper of UniRx.MessageBroker.

Publish instance

Implements IInstancePublisher and call this.Publish() to notify and publish instance.

using System;
using CAFU.Zenject.Utility;
using UniRx;
using UnityEngine;
using Zenject;

public class Foo : MonoBehaviour,
    IInstancePublisher
{
    [Inject] IMessagePublisher IInstancePublisher.MessagePublisher { get; }

    private void Start()
    {
        // Notify self instance
        this.Publish();
    }
}

Receive instance

Implements IInstanceReceiver and call this.Receive<T>() to receive published instance.

using System;
using CAFU.Zenject.Utility;
using UniRx;
using Zenject;

public class Bar :
    IInitializable,
    IInstanceReceiver
{
    [Inject] IMessageReceiver IInstanceReceiver.MessageReceiver { get; }

    void IInitializable.Initialize()
    {
        // Receive instance when created
        this.Receive<Foo>()
            .Subscribe(/* Do something */);
    }
}

License

Copyright (c) 2018 Tetsuya Mori

Released under the MIT license, see LICENSE.txt

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.