【UnityUI程序框架】The PureMVC Framework核心你会用吗

在这里插入图片描述


👨‍💻个人主页:@元宇宙-秩沅

👨‍💻 hallo 欢迎 点赞👍 收藏⭐ 留言📝 加关注✅!

👨‍💻 本文由 秩沅 原创

👨‍💻 收录于专栏:Unity基础实战

🅰️



文章目录

    • 🅰️
    • 前言
    • 🎶(==A==) PureMVC的构成
    • 🎶(==0==) 通知名类PureNotification创建
    • 🎶(==1==) Model_Proxy(代理)
    • 🎶 Model_Proxy 实践
    • 1.首先创建数据类型_PlayerDataObj
    • 2.创建代理_PlayerProxy
    • 🎶(==2==) View_Mediator(中介)
    • 🎶 View_Mediator 实践
    • 1.首先创建主视图(面板)_MainView
    • 2.创建中介_MainViewMediator
    • 3.创建角色视图(面板)_RoleView
    • 4.创建中介_RoleViewMediator
    • 🅰️


前言

PureMVC是一个基于模型-视图-控制器(MVC)架构的开源框架,用于创建面向对象的、可重用的应用程序。它提供了一套成熟的模式和标准,以帮助开发人员实现松散耦合的代码,以便更好地分离关注点和简化应用程序的开发和维护。PureMVC框架适用于各种编程语言,包括Java、ActionScript、C#、PHP、JavaScript等,并且它已经被广泛地应用于各种类型的应用程序中,包括桌面应用程序、Web应用程序和移动应用程序等。
官方网址:http://puremvc.org/

在这里插入图片描述

  • dll导入法(更安全)
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述
    将dll文件拖入新建女的Plug插件文件夹中
    在这里插入图片描述
    在这里插入图片描述

  • 移入Unity’中


🎶(A PureMVC的构成


在这里插入图片描述

  • PureMVC由三个文件夹组成分别是 Core ,Interfaces,Patterns
    在这里插入图片描述

在这里插入图片描述

PureMVC中涉及到的设计模式

1.代理设计模式
2.中介者设计模式
3.外观设计模式
4.观察者设计模式
5.命令设计模式
6.单例设计模式


🎶(0 通知名类PureNotification创建


  • 观察者设计模式
  • 原因:在PureMVC中每个模块之间的联系都是通过通知来进行连接在这里插入图片描述
  • 所以需要创建一个通知名类
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 这个是pureMVC中的 通知名类
/// 主要是用来申明各个通知的 名字 
/// 方便使用和管理
/// </summary>
public class PureNotification 
{/// <summary>/// 启动通知/// </summary>public const string START_UP = "startUp";/// <summary>/// 显示面板通知/// </summary>public const string SHOW_PANEL = "showPanel";/// <summary>/// 隐藏面板通知/// </summary>public const string HIDE_PANEL = "hidePanel";/// <summary>/// 代表玩家数据更新的通知名/// </summary>public const string UPDATE_PLAYER_INFO = "updatePlayerInfo";/// <summary>/// 升级通知/// </summary>public const string LEV_UP = "levUp";
}

🎶(1 Model_Proxy(代理)


  • 代理设计模式

Proxy
由一个常量,两个属性,一个构造函数,两个虚方法组成

在这里插入图片描述

using PureMVC.Interfaces;
using PureMVC.Patterns.Observer;
namespace PureMVC.Patterns.Proxy
{public class Proxy: Notifier, IProxy{///代理名字       public const string NAME = "Proxy";///构造函数public Proxy(string proxyName, object data = null){ProxyName = proxyName ?? NAME;if (data != null) Data = data;}/// <summary>/// 当代理被注册时的逻辑(由Model调用)Called by the Model when the Proxy is registered/// </summary>public virtual void OnRegister(){ }/// <summary>/// 当代理被移除时的逻辑(由Model调用)Called by the Model when the Proxy is registered/// </summary>public virtual void OnRemove(){}/// <summary>代理名(属性)the proxy name</summary>public string ProxyName { get; protected set; }/// <summary>数据(属性)the data object</summary>public object Data { get; set; }}
}

🎶 Model_Proxy 实践


在这里插入图片描述

1.首先创建数据类型_PlayerDataObj

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 玩家数据结构 
/// </summary>
public class PlayerDataObj
{//申明一堆玩家属性相关的变量public string playerName;public int lev;public int money;public int gem;public int power;public int hp;public int atk;public int def;public int crit;public int miss;public int luck;
}

2.创建代理_PlayerProxy


using PureMVC.Patterns.Proxy;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;/// <summary>
/// 玩家数据代理对象
/// 主要处理 玩家数据更新相关的逻辑
/// </summary>
public class PlayerProxy : Proxy
{public new const string NAME = "PlayerProxy";//1.继承Proxy父类//2.写我们的构造函数//写构造函数//重要点//1.代理的名字!!!!//2.代理相关的数据!!!!!public PlayerProxy():base(PlayerProxy.NAME){//在构造函数中 初始化一个数据 进行关联PlayerDataObj data = new PlayerDataObj();//初始化data.playerName = PlayerPrefs.GetString("PlayerName", "唐老狮");data.lev = PlayerPrefs.GetInt("PlayerLev", 1);data.money = PlayerPrefs.GetInt("PlayerMoney", 9999);data.gem = PlayerPrefs.GetInt("PlayerGem", 8888);data.power = PlayerPrefs.GetInt("PlayerPower", 99);data.hp = PlayerPrefs.GetInt("PlayerHp", 100);data.atk = PlayerPrefs.GetInt("PlayerAtk", 20);data.def = PlayerPrefs.GetInt("PlayerDef", 10);data.crit = PlayerPrefs.GetInt("PlayerCrit", 20);data.miss = PlayerPrefs.GetInt("PlayerMiss", 10);data.luck = PlayerPrefs.GetInt("PlayerLuck", 40);//赋值给自己的Data进行关联Data = data;}public void LevUp()//升级{PlayerDataObj data = Data as PlayerDataObj;//升级 改变内容data.lev += 1;data.hp += data.lev;data.atk += data.lev;data.def += data.lev;data.crit += data.lev;data.miss += data.lev;data.luck += data.lev;}public void SaveData()//存储{PlayerDataObj data = Data as PlayerDataObj;//把这些数据内容 存储到本地PlayerPrefs.SetString("PlayerName", data.playerName);PlayerPrefs.SetInt("PlayerLev", data.lev);PlayerPrefs.SetInt("PlayerMoney", data.money);PlayerPrefs.SetInt("PlayerGem", data.gem);PlayerPrefs.SetInt("PlayerPower", data.power);PlayerPrefs.SetInt("PlayerHp", data.hp);PlayerPrefs.SetInt("PlayerAtk", data.atk);PlayerPrefs.SetInt("PlayerDef", data.def);PlayerPrefs.SetInt("PlayerCrit", data.crit);PlayerPrefs.SetInt("PlayerMiss", data.miss);PlayerPrefs.SetInt("PlayerLuck", data.luck);}
}

🎶(2 View_Mediator(中介)


  • 中介者设计模式
    ——————————————在这里插入图片描述
using PureMVC.Interfaces;
using PureMVC.Patterns.Observer;namespace PureMVC.Patterns.Mediator
{public class Mediator : Notifier, IMediator{public static string NAME = "Mediator";/// <summary>/// 构造函数./// </summary>/// <param name="mediatorName">中介名</param>/// <param name="viewComponent">面板名</param>public Mediator(string mediatorName, object viewComponent = null){MediatorName = mediatorName ?? NAME;ViewComponent = viewComponent;}/// <summary>/// 用来存储通知名/// </summary>public virtual string[] ListNotificationInterests(){return new string[0];}/// <summary>/// 用来处理通知逻辑的方法/// </summary>/// <param name="notification">接口对象里面包含两个重要的参数1.通知名2.通知包含的信息</param>public virtual void HandleNotification(INotification notification){}/// <summary>/// 注册时执行的方法/// </summary>public virtual void OnRegister(){}/// <summary>/// 移除时执行的方法/// </summary>public virtual void OnRemove(){}/// <summary>中介名</summary>public string MediatorName { get; protected set; }/// <summary>(面板)名</summary>public object ViewComponent { get; set; }}
}

🎶 View_Mediator 实践


1.首先创建主视图(面板)_MainView

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;public class NewMainView : MonoBehaviour
{//1.找控件public Button btnRole;public Button btnSill;public Text txtName;public Text txtLev;public Text txtMoney;public Text txtGem;public Text txtPower;//2.提供面板更新的相关方法给外部//按照MVC的思想 可以直接在这里提供 更新的方法//如果是用MVP的思想public void UpdateInfo(PlayerDataObj data){txtName.text = data.playerName;txtLev.text = "LV." + data.lev;txtMoney.text = data.money.ToString();txtGem.text = data.gem.ToString();txtPower.text = data.power.ToString();}
}

2.创建中介_MainViewMediator

using PureMVC.Interfaces;
using PureMVC.Patterns.Mediator;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class NewMainViewMediator : Mediator
{public static new  string NAME = "NewMainViewMediator";//套路写法//1.继承PureMVC中的Mediator脚本 //2.写构造函数public NewMainViewMediator():base(NAME){//这里面可以去创建界面预设体等等的逻辑//但是界面显示应该是触发的控制的//而且创建界面的代码 重复性比较高}public void SetView(NewMainView view){ViewComponent = view;view.btnRole.onClick.AddListener(()=>{SendNotification(PureNotification.SHOW_PANEL, "RolePanel");});}//3.重写监听通知的方法public override string[] ListNotificationInterests(){//这是一个PureMVC的规则//就是你需要监听哪些通知 那就在这里把通知们通过字符串数组的形式返回出去//PureMVC就会帮助我们监听这些通知 // 类似于 通过事件名 注册事件监听return new string[]{PureNotification.UPDATE_PLAYER_INFO,};}//4.重写处理通知的方法public override void HandleNotification(INotification notification){//INotification 对象 里面包含两个队我们来说 重要的参数//1.通知名 我们根据这个名字 来做对应的处理//2.通知包含的信息 switch (notification.Name){case PureNotification.UPDATE_PLAYER_INFO://收到 更新通知的时候 做处理if(ViewComponent != null){(ViewComponent as NewMainView).UpdateInfo(notification.Body as PlayerDataObj);}break;}}//5.可选:重写注册时的方法public override void OnRegister(){base.OnRegister();//初始化一些内容}
}

3.创建角色视图(面板)_RoleView


using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;public class NewRoleView : MonoBehaviour
{//1.找控件public Button btnClose;public Button btnLevUp;public Text txtLev;public Text txtHp;public Text txtAtk;public Text txtDef;public Text txtCrit;public Text txtMiss;public Text txtLuck;//2.提供面板更新的相关方法给外部public void UpdateInfo(PlayerDataObj data){txtLev.text = "LV." + data.lev;txtHp.text = data.hp.ToString();txtAtk.text = data.atk.ToString();txtDef.text = data.def.ToString();txtCrit.text = data.crit.ToString();txtMiss.text = data.miss.ToString();txtLuck.text = data.luck.ToString();}
}

4.创建中介_RoleViewMediator

using PureMVC.Interfaces;
using PureMVC.Patterns.Mediator;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;public class NewRoleViewMediator : Mediator
{public static new string NAME = "NewRoleViewMediator";//套路写法//1.继承PureMVC中的Mediator脚本 //2.写构造函数public NewRoleViewMediator():base(NAME){}public void SetView(NewRoleView view){ViewComponent = view;//关闭按钮 事件监听view.btnClose.onClick.AddListener(() =>{SendNotification(PureNotification.HIDE_PANEL, this);});//升级按钮监听view.btnLevUp.onClick.AddListener(()=>{//去升级//去通知升级SendNotification(PureNotification.LEV_UP);});}//3.重写监听通知的方法public override string[] ListNotificationInterests(){return new string[] {PureNotification.UPDATE_PLAYER_INFO,//以后你还关心别的通知 就在这后面通过逗号连接 加起来就行了};}//4.重写处理通知的方法public override void HandleNotification(INotification notification){//INotification 对象 里面包含两个队我们来说 重要的参数//1.通知名 我们根据这个名字 来做对应的处理//2.通知包含的信息 switch (notification.Name){case PureNotification.UPDATE_PLAYER_INFO://玩家数据更新 逻辑处理if(ViewComponent != null){(ViewComponent as NewRoleView).UpdateInfo(notification.Body as PlayerDataObj);}break;}}
}

🅰️


⭐【Unityc#专题篇】之c#进阶篇】

⭐【Unityc#专题篇】之c#核心篇】

⭐【Unityc#专题篇】之c#基础篇】

⭐【Unity-c#专题篇】之c#入门篇】

【Unityc#专题篇】—进阶章题单实践练习

⭐【Unityc#专题篇】—基础章题单实践练习

【Unityc#专题篇】—核心章题单实践练习


你们的点赞👍 收藏⭐ 留言📝 关注✅是我持续创作,输出优质内容的最大动力!


在这里插入图片描述


本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/17980.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python | Leetcode Python题解之第105题从前序与中序遍历序列构造二叉树

题目&#xff1a; 题解&#xff1a; class Solution:def buildTree(self, preorder: List[int], inorder: List[int]) -> TreeNode:if not preorder:return Noneroot TreeNode(preorder[0])stack [root]inorderIndex 0for i in range(1, len(preorder)):preorderVal pr…

计算机毕业设计python+spark天气预测 天气可视化 天气大数据 空气质量检测 空气质量分析 气象大数据 气象分析 大数据毕业设计 大数据毕设

摘 要 近些年大数据人工智能等技术发展迅速&#xff0c;我国工业正努力从“制造”迈向“智造”实现新跨越。神经网络(NeuronNetwork)是一种计算模型&#xff0c;通过大量数据的学习&#xff0c;来发现数据之间的模式和规律&#xff0c;模仿人脑神经元的工作方式。随着算力的提…

音视频集市应用融合平台方案

音视频应用即有深度又有广度&#xff0c;如何让一个平台拥有更多功能更灵活的拓展能力&#xff0c;从单体模块化&#xff0c;多插件到微服务都有大量的实践。 笔者在实际开发过程也同样面对这些纷繁复杂而又必须共容共通需求的挑战。 在实战开发了大量从服务端到设备端再到浏览…

vos3000外呼系统如何查询授权信息和系统并发

要查询VOS3000外呼系统的授权信息和系统并发情况&#xff0c;您可以按照以下步骤进行&#xff1a; 登录系统管理界面&#xff1a; 使用管理员账号登录VOS3000外呼系统的管理界面。 查找系统信息&#xff1a; 寻找系统信息或授权管理的相关选项或标签。 查询授权信息&#xff…

Linux:IPC - System V

Linux&#xff1a;IPC - System V 共享内存 shm创建共享内存shmgetshmctlftok 挂接共享内存shmatshmdt shm特性 消息队列 msgmsggetmsgctlmsgsndmsgrcv 信号量 semSystem V 管理机制 System V IPC 是Linux系统中一种重要的进程间通信机制&#xff0c;它主要包括共享内存 shm&am…

⌈ 传知代码 ⌋ 高速公路车辆速度检测软件

&#x1f49b;前情提要&#x1f49b; 本文是传知代码平台中的相关前沿知识与技术的分享~ 接下来我们即将进入一个全新的空间&#xff0c;对技术有一个全新的视角~ 本文所涉及所有资源均在传知代码平台可获取 以下的内容一定会让你对AI 赋能时代有一个颠覆性的认识哦&#x…

【NumPy】全面解析NumPy的where函数:高效条件操作指南

&#x1f9d1; 博主简介&#xff1a;阿里巴巴嵌入式技术专家&#xff0c;深耕嵌入式人工智能领域&#xff0c;具备多年的嵌入式硬件产品研发管理经验。 &#x1f4d2; 博客介绍&#xff1a;分享嵌入式开发领域的相关知识、经验、思考和感悟&#xff0c;欢迎关注。提供嵌入式方向…

哈希冲突的常见解决方法【附C++代码】

在C中&#xff0c;哈希表是一种常用的数据结构&#xff0c;用于实现快速的插入、删除和查找操作。 哈希表的核心在于哈希函数&#xff0c;它将输入的关键字转换为一个数组索引。然而&#xff0c;不同的关键字可能映射到相同的索引&#xff0c;这种情况称为哈希冲突。 有效地解…

走进全球LED显示龙头艾比森,深挖逆势增长43%的数智化逻辑

在大环境不景气的情况下&#xff0c;有一家智能制造企业在2023年营收40亿&#xff0c;同比增长高达43%&#xff0c;海外营收增长约 46%&#xff0c;并且连续12年单品牌出口额第一。 这就是全球LED显示龙头艾比森。 5月9日&#xff0c;纷享销客带领近70位企业高管走进纷享销客…

短视频再度重逢:四川京之华锦信息技术公司

短视频再度重逢 在数字化时代的浪潮中&#xff0c;短视频以其独特的魅力迅速崛起&#xff0c;成为现代人生活中不可或缺的一部分。而当我们谈论起短视频&#xff0c;我们不仅仅是在谈论一种娱乐方式&#xff0c;更是在谈论一种情感的载体&#xff0c;一种回忆的媒介。今天&…

MyBatis系统学习篇 - MyBatis逆向工程

MyBatis的逆向工程是指根据数据库表结构自动生成对应的Java实体类、Mapper接口和XML映射文件的过程。逆向工程可以帮助开发人员快速生成与数据库表对应的代码&#xff0c;减少手动编写重复代码的工作量。 我们在MyBatis中通过逆向工具来帮我简化繁琐的搭建框架&#xff0c;减少…

iOS推送证书过期处理

苹果推送证书的有效期都是一年&#xff0c;将要过期的时候&#xff0c;苹果官方会发邮件提醒。 一、过期 在电脑上找到并打开其它->钥匙串访问&#xff1b; 我的证书可以看到各个App的推送证书&#xff0c;如果过期了&#xff0c;显示红色X 二、重新创建 1、登陆apple开…

如何解决三层单点故障

我给他整成下面这样行不行呀 一个pc的默认网关只有一个&#xff0c;pc1配置的是1.1&#xff0c;那么路由坏了&#xff0c;他还是给1.1发送数据&#xff0c;冗余的那个也没用上呀 用VRRP&#xff08;虚拟路由冗余协议&#xff09;解决以上问题 那光把这个R1和R2虚拟成一个R3&…

windows 执行node报错 800A1391

在项目下执行node -v的时候&#xff0c;抛了这个错误&#xff0c;一开始没发现有啥问题 现在一看&#xff0c;这个报错里的node怎么是个文件... 出现这个问题&#xff0c;是因为项目下&#xff0c;有个同名的文件叫node.js&#xff0c;搞得windows一时不知道是想打开node.js文…

通过提示工程将化学知识整合到大型语言模型中

在当今快速发展的人工智能领域&#xff0c;大型语言模型&#xff08;LLMs&#xff09;正成为科学研究的新兴工具。这些模型以其卓越的语言处理能力和零样本推理而闻名&#xff0c;为解决传统科学问题提供了全新的途径。然而&#xff0c;LLMs在特定科学领域的应用面临挑战&#…

大型央企国企信创化与数字化转型规划实施方案(71页PPT)

方案介绍&#xff1a; 随着全球信息技术的迅猛发展&#xff0c;数字化转型已成为企业提升竞争力、实现可持续发展的必经之路。作为国家经济的重要支柱&#xff0c;大型央企国企在信创化与数字化转型方面承载着重要的责任和使命。本方案旨在通过系统性的规划和实施&#xff0c;…

Discourse 使用 DiscourseConnect 来进行用户数据同步

我们都知道 Discourse 的用户管理和设置都高度依赖电子邮件。 如果 Discourse 没有设置电子邮件 SMTP 的话&#xff0c;作为管理员是没有办法对用户邮箱进行修改并且通过验证的。 可以采取的办法是通过 Discourse 的 DiscourseConnect 来进行用户同步。 根据官方的说法&…

如何取消公众号的在线客服绑定授权

1&#xff0c;功能设置 2&#xff0c;公众号设置 3&#xff0c;查看详情&#xff0c;取消

开发远程遥控情趣玩具软件,提供现成程序源码应具备哪些基础功能

以“东莞梦情智能”为参考&#xff0c;其提供的现成情趣玩具遥控软件程序源码&#xff0c;所具备哪些基础功能&#xff0c;看看它们如何让情趣玩具变得更加丰富多彩。 一、设备连接 设备连接是情趣玩具遥控软件的基础功能之一。“东莞梦情智能”的现成源码支持多种连接方式&am…

mysql中text,longtext,mediumtext区别

文章目录 一.概览二、字节限制不同三、I/O 不同四、行迁移不同 一.概览 在 MySQL 中&#xff0c;text、mediumtext 和 longtext 都是用来存储大量文本数据的数据类型。 TEXT&#xff1a;TEXT 数据类型可以用来存储最大长度为 65,535(2^16-1)个字符的文本数据。如果存储的数据…