unity有一个叫StrangeIoC的框架插件,这里写了一个使用StrangeIoC的HelloWorld,比他自带的demo更为简单,方便理解

1.插件下载,在Asset Store直接搜索StrangeIoC

2.在Asset文件夹中,新建一个文件夹Game_D,用来放我们编写的脚本,在Game_D文件下创建controller文件夹,用来存放控制脚本,在controller新建一个脚本DGameCommand,继承自EventCommand

using strange.extensions.command.impl;
using strange.extensions.context.api;
using UnityEngine; public class DGameCommand : EventCommand {     public override void Execute()
    {
        Debug.Log("Start DGame");
    }
}

3.在Game_D文件夹下创建一个脚本DGameContext继承自MVCSContext,主要用接口绑定、命令绑定、view绑定

using UnityEngine;
using System.Collections;
using strange.extensions.context.impl;
using strange.extensions.command.impl;
using strange.extensions.context.api; public class DGameContext : MVCSContext {
        public DGameContext(MonoBehaviour view)
        : base(view)
{
}         protected override void mapBindings()
        {
            base.mapBindings();
            commandBinder.Bind(ContextEvent.START).To<DGameCommand>().Once();
        }
}

4.在Game_D文件夹下创建一个脚本DGameRoot继承自ContextView,这里就是框架程序的入口,把DGameRoot拖在unity场景的一个物体上,运行即可执行,其实这里就是最小的demo,但是后面还是会写到接口的实现调用,view的实现调用

using UnityEngine;
using System.Collections;
using strange.extensions.context.impl; public class DGameRoot : ContextView {     void Awake()
    {
        context = new DGameContext(this);
    }
}

5.在Game_D文件夹下创建一个文件夹interface,并在interface文件夹下新建一个接口IDoSomething,再新建一个接口实现类DDoSomething,接口实现可用于一些manager脚本

接口:

public interface IDoSomething {
    void DoSomeFunction();
}

接口实现:

using UnityEngine;
using System.Collections; public class DDoSomething : IDoSomething {
 
public void DoSomeFunction()
    {
        Debug.Log("interface do something function");
    }
}

6.在controller文件夹下新建一个脚本DDoSomethingCommand,用来执行实现的接口功能

using UnityEngine;
using System.Collections;
using strange.extensions.command.impl; public class DDoSomethingCommand : EventCommand {
    [Inject]
    public IDoSomething ds { get; set; }
    public override void Execute()
    {
        //执行其脚本
        ds.DoSomeFunction();
    }
}

7.这里使用Event,所以需要在controller文件夹下新建一个脚本DGameEvent

public enum DGameEvent {
    DoSomething,
}

8.打开DGameContext脚本,添加以下内容

using UnityEngine;
using System.Collections;
using strange.extensions.context.impl;
using strange.extensions.command.impl;
using strange.extensions.context.api; public class DGameContext : MVCSContext {
        public DGameContext(MonoBehaviour view)
        : base(view)
{
}         protected override void mapBindings()
        {
            base.mapBindings();
            injectionBinder.Bind<IDoSomething>().To<DDoSomething>().ToSingleton();
            
            commandBinder.Bind(DGameEvent.DoSomething).To<DDoSomethingCommand>();
            commandBinder.Bind(ContextEvent.START).To<DGameCommand>().Once();
        }
}

9.打开DGameCommand脚本,添加以下内容,这里就是接口函数的调用,可以再度运行调试

using strange.extensions.command.impl;
using strange.extensions.context.api;
using UnityEngine; public class DGameCommand : EventCommand {     public override void Execute()
    {
        Debug.Log("Start DGame");
        dispatcher.Dispatch(DGameEvent.DoSomething);
    }
}

10.在Game_D文件下新建一个文件夹view文件夹,并在view文件夹下新建一个脚本DButtonView继承自EventView

using UnityEngine;
using System.Collections;
using strange.extensions.mediation.impl;
public class DButtonView : EventView {
    internal const string CLICK_BUTTON = "CLICK_BUTTON";
    void OnGUI()
    {
        if (GUI.Button(new Rect(0, 0, 100, 30), "Click"))
        {
            dispatcher.Dispatch(CLICK_BUTTON);
        }
    }
}

11.在view文件夹下新建一个脚本DButtonMediator,继承自EventMediator

using UnityEngine;
using System.Collections;
using strange.extensions.mediation.impl; public class DButtonMediator :EventMediator{
    [Inject]
    public DButtonView btnView{get;set;}     public override void OnRegister()
    {
        base.OnRegister();
        btnView.dispatcher.AddListener(DButtonView.CLICK_BUTTON, OnBtnViewClick);
    }
    void OnBtnViewClick()
    {
        Debug.Log("click view button");
    }
}

12.再改一次DGameContext脚本:

using UnityEngine;
using System.Collections;
using strange.extensions.context.impl;
using strange.extensions.command.impl;
using strange.extensions.context.api; public class DGameContext : MVCSContext {
        public DGameContext(MonoBehaviour view)
        : base(view)
{
}         protected override void mapBindings()
        {
            base.mapBindings();
            injectionBinder.Bind<IDoSomething>().To<DDoSomething>().ToSingleton();             mediationBinder.Bind<DButtonView>().To<DButtonMediator>();
            
            commandBinder.Bind(DGameEvent.DoSomething).To<DDoSomethingCommand>();
            commandBinder.Bind(ContextEvent.START).To<DGameCommand>().Once();
        }
}

13.最后再在场景中新建一个物体,将DButtonView拖上去,然后运行

14.最后都建议,自己手动写一遍代码,方便理解

Unity StrangeIoC HelloWorld的更多相关文章

  1. Unity StrangeIoC框架

    Unity StrangeIoC框架  http://blog.csdn.net/y1196645376/article/details/52746251    

  2. unity StrangeIoc

    已经很久没有写博客,主要原因还是自我荒废了太久,在学习上失去了动力.最近来新的公司实习,以前都是做项目的开发,现在被调到框架组,主要从事的是框架维护还有开发.学习了许多新的知识还有优秀的框架,今天就写 ...

  3. Unity StrangeIoc框架 (一)

    最近想项目中需要使用这个架构  因此 上网看了很多资料摸索   但是对于初学者来说大多数的资料不是那么容易理解 而且文档也是英文的阅读起来有点吃力  所以记录一下自己阅读的过程  方便以后翻阅和跟我一 ...

  4. 【拥抱元宇宙】创建你的第一个Unity程序HelloWorld,并发布

    第一个Unity程序--Hello World. 1.需要先下载一个Unity Hub,以及安装Unity编辑器.Unity Hub需要登陆,激活码可以选择个人用户,免费的.免费的无法改变启动画面,其 ...

  5. Unity StrangeIoc框架 (二)

    MVCSContex :the big picture 1.应用程序的入口是一个类成为ContextView,这是一个Monobehavior实例化MVCSContext 2.用MVCSContext ...

  6. Unity StrangeIoc框架 (三)signal信号方式

    先创建TestRoot using UnityEngine; using System.Collections; using strange.extensions.context.impl; publ ...

  7. Bootstrapper.cs

    using System.Windows; using Microsoft.Practices.Prism.Modularity; using Microsoft.Practices.Prism.Un ...

  8. 0 quickstart

    说明 使用的安装包有: Prism 6.3 Unity 4.0.1 基于Prism框架的应用程序都包含一个主项目和若干功能模块,主项目负责启动时初始化工作,包括依赖注入容器,定义Shell等等.功能模 ...

  9. Unity MVC框架 StrangeIoC

    StrangeIoC是一个超轻量级和高度可扩展的控制反转(IoC)框架,专门为C#和Unity编写. 项目地址:https://github.com/strangeioc/strangeioc 文档地 ...

随机推荐

  1. Java多线程并发工具类

    Semaphore-信号灯机制 当我们创建一个可扩展大小的线程池,并且需要在线程池内同时让有限数目的线程并发运行时,就需要用到Semaphore(信号灯机制),Semaphore 通常用于限制可以访问 ...

  2. SAS中常见的数组函数

    SAS中常见的数组函数有: dim dimk hbound hboundk lbound lboundk 数组函数计萁数组的维数.上下界,有利于写出可移植的程序,数组函数包括:dim(x) 求数组x第 ...

  3. linux下的静态库与动态库详解

    静态库 先说说我们为什么需要库? 当有些代码我们大量会在程序中使用比如(scanf,printf等)这些函数我们需要在程序中频繁使用,于是我们就把这些代码编译为库文件,在需要使用时我们直接链接即可. ...

  4. PHP 5 SimpleXML 函数

    PHP SimpleXML 简介 SimpleXML 扩展提供了一种获取 XML 元素的名称和文本的简单方式,只要您知道 XML 文档的布局. SimpleXML 转换 XML 文档到 SimpleX ...

  5. Docker 数据卷容器

    如果你有一些持续更新的数据需要在容器之间共享,最好创建数据卷容器. 数据卷容器,其实就是一个正常的容器,专门用来提供数据卷供其它容器挂载的. 首先,创建一个命名的数据卷容器 dbdata: $ sud ...

  6. Android中典型的ROOT原理(5)

    ROOT的作用 Customization 用户的个人定制,如删除一些预安装,定制开机动画等. 特权操作 所有需要特权操作的基本都是要通过ROOT,这也是ROOT的初衷. ROOT的第一步:寻找漏洞并 ...

  7. JVM类加载原理学习笔记

    (1)类的生命周期包括了:加载(Loading).验证(Verification).准备(Preparation).解析(Resolution).初始化(Initialization).使用(Usin ...

  8. 计算机网络之远程终端协议TELNET

    TELNET 是一个简单的远程终端协议.用户用 TELNET 就可在其所在地通过 TCP 连接注册(即登录)到远地的另一个主机上(使用主机名或 IP 地址). TELNET 能将用户的击键传到远地主机 ...

  9. Android等宽字体

    Android等宽字体 效果图 在xml中设置 添加属性 android:typeface="monospace" 例如 <TextView android:layout_w ...

  10. 深度学习与计算机视觉系列(2)_图像分类与KNN

    作者: 寒小阳 &&龙心尘 时间:2015年11月. 出处: http://blog.csdn.net/han_xiaoyang/article/details/49949535 ht ...