Unity StrangeIoC HelloWorld
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的更多相关文章
- Unity StrangeIoC框架
Unity StrangeIoC框架 http://blog.csdn.net/y1196645376/article/details/52746251
- unity StrangeIoc
已经很久没有写博客,主要原因还是自我荒废了太久,在学习上失去了动力.最近来新的公司实习,以前都是做项目的开发,现在被调到框架组,主要从事的是框架维护还有开发.学习了许多新的知识还有优秀的框架,今天就写 ...
- Unity StrangeIoc框架 (一)
最近想项目中需要使用这个架构 因此 上网看了很多资料摸索 但是对于初学者来说大多数的资料不是那么容易理解 而且文档也是英文的阅读起来有点吃力 所以记录一下自己阅读的过程 方便以后翻阅和跟我一 ...
- 【拥抱元宇宙】创建你的第一个Unity程序HelloWorld,并发布
第一个Unity程序--Hello World. 1.需要先下载一个Unity Hub,以及安装Unity编辑器.Unity Hub需要登陆,激活码可以选择个人用户,免费的.免费的无法改变启动画面,其 ...
- Unity StrangeIoc框架 (二)
MVCSContex :the big picture 1.应用程序的入口是一个类成为ContextView,这是一个Monobehavior实例化MVCSContext 2.用MVCSContext ...
- Unity StrangeIoc框架 (三)signal信号方式
先创建TestRoot using UnityEngine; using System.Collections; using strange.extensions.context.impl; publ ...
- Bootstrapper.cs
using System.Windows; using Microsoft.Practices.Prism.Modularity; using Microsoft.Practices.Prism.Un ...
- 0 quickstart
说明 使用的安装包有: Prism 6.3 Unity 4.0.1 基于Prism框架的应用程序都包含一个主项目和若干功能模块,主项目负责启动时初始化工作,包括依赖注入容器,定义Shell等等.功能模 ...
- Unity MVC框架 StrangeIoC
StrangeIoC是一个超轻量级和高度可扩展的控制反转(IoC)框架,专门为C#和Unity编写. 项目地址:https://github.com/strangeioc/strangeioc 文档地 ...
随机推荐
- 使用ffmpeg转码时遇到aac报错
今天尝试用ffmpeg转一个视频的格式,结果报出这个错误: The encoder 'aac' is experimental but experimental codecs are not enab ...
- merge into的用法及10g新特性总结
merge into 的作用: 将源数据(来源于实际的表,视图,子查询)更新或插入到指定的表中(必须实际存在),依赖于on条件,好处是避免了多个insert 和update操作. merge是一个目标 ...
- 判定程序员等级,HashMap就够了
JDK1.8 HashMap源码分析 用到的符号: ^异运算:两个操作数相同,结果是;两个操作数不同,结果是1. &按位与:两个操作数都是1,结果才是1. 一.HashMap概述 在JDK1 ...
- [JCIP笔记](五)JDK并发包
这一节来讲一讲java.util.concurrent这个包里的一些重要的线程安全有关类. synchronized容器 synchronized容器就是把自己的内部状态封装起来,通过把每一个publ ...
- k8s Kubernetes v1.10
#转移页面 http://www.cnblogs.com/elvi/p/8976305.html
- How To Automate Disconnection of Idle Sessions
***Checked for relevance on 30-Apr-2012*** goal: How to automate disconnection of idle sessions fact ...
- 5秒让你的View变3D,ThreeDLayout使用和实现
在很久很久以前,写了一篇自定义3d view的博客.但是只是讲了如何实现,实现起来还是比较耗时,所以本着平易近人的心态,把他封装成了一个ViewGroup,只需要在你的view或者布局外面包裹一层Th ...
- Dynamics CRM 导出系统中实体的属性字段到EXCEL
我们在CRM中看元数据信息,可以通过SDK中的metadata browser的解决方案包,但该解决方案包只是在可视化上方便了,但如果我们需要在excel中整理系统的数据字典时这个解决方案包就派不上用 ...
- win 8.1 64位彻底删除王码98
安全模式 C:\Windows\SysWOW64\ 删除:winwb98.IME和winwb98.MB 注册表: 找到王码五笔相关的项.一般在最下面的以字母E开头的文件夹.全部删除. HKEY_LOC ...
- [shiro学习笔记]第四节 使用源代码生成Shiro的CHM格式的API文档
版本为1.2.3的shiro API chm个事故文档生成. 获取shiro源代码 编译生成API文档 转换成chm格式 API 获取shiro源代码 shiro官网: http://shiro.ap ...