#VisualUIEditor项目讲解之撤消反撤消详解 撤消反撤消在UI编辑器里面必备的功能,它能够帮助咱们在编辑过程当中,无需惧怕误操做,助您更好的使用编辑器node
#在项目中使用 当您在项目中错误的移动位置,或者设置了错误的属性,这时候您能够用CTRL+Z来撤消刚才您进行的修改 当您在项目中撤消了刚才的操做,又想快速的回到刚才的状态,这时候您可使用CTRL+R反撤消功能,来进行反撤消git
#源码讲解 ##源码路径 项目的实现源码,可参考renderUndogithub
##源码详解 每一个Scene实例化的时候都会建立一个UndoObj,UndoObj里面是一层UndoList的浅封装,差异是在Undo和Redo的时候一般编辑器有节点发生变动编辑器
"ui:scene_change"(event, message) { let runScene = this.$.scene.getRunScene(); if(!runScene._undo) runScene._undo = new UndoObj(); }
UndoList维持着场景变动的记录,UndoList的构造函数以下函数
class UndoList extends EventEmitter { constructor (type) { super() //是否变化时发送事件的变化 this._silent = false //分为local和global类型, local类型事件变化只会通知本地, global则会一般整个编辑器 this._type = type //当前的命令列表 this._curGroup = new CommandGroup() //操做过程的命令列表 this._groups = [] //记录当前的位置信息 this._position = -1 //上一次保存时的位置信息 this._savePosition = -1 } }
当有新的操做到达时, 好比节点移动位置发生变动, 这时候则会调用函数ui
add (cmd) { this._clearRedo() if (this._curGroup.isCanCombine(cmd)) { this._curGroup.combineCommand(cmd) } else { this.commit() this._curGroup.add(cmd) } this._changed('add-command') }
由于整个撤消反撤消操做是单线的, 因此当有新的操做, 以前保存的redo操做变成无心义, 这时候会先清除redo列表, 即当前位置后命令列表 这时候咱们会判断该命令是否可以合并, 若是能合并, 咱们会优先尝试合并this
//CommandGroup的函数 isCanCombine (other) { if (this._commands.length == 0) { return true } for ( let i = 0; i < this._commands.length; ++i) { if (this._commands[i].isCanCombine(other)) { return true } } if (this._time && Math.abs(this._time - other.info.time) < 1000) { return true } return false } //Command的函数 isCanCombine (other) { if (!this.info || !other.info) { return false } if (this.info.op != other.info.op) { return false } if (this.info.uuid != other.info.uuid) { return false } if (this.info.op == 'prop' && (this.info.prop != other.info.prop)) { return false } if (Math.abs(this.info.time - other.info.time) >= 1000) { return false } return true }
在CommandGroup中, 咱们会遍历全部的Command,看可否进行合并或者最后一条Command的时间距离如今的时间过短,咱们则认为可以合并 在Command中,同一种操做类型,同一个节点,同一个属性操做,时间在必定的时间内方可认为能合并 若是判断能合并,则进行合并并更新属性值设计
###为何如此设计?code
由于整个撤消系统中,都是假定对其它系统一无所知的,而其它系统除了有限的Add接口,并无暴露其它的接口信息 下面列举两种情景接口
- 当在编辑器中,拖动某个节点移动的时候,每隔350ms会触发一次mousemove事件,这时候节点属性会频繁更改,而咱们又认为这是一次操做,则咱们应当在移动完成以后按一次撤消应该回到以前的状态,而不该该是移动过程当中的任何状态,这时候用到同属性操做,在必定时间内合并操做
- 当在编辑器中,一次拖动或者更改多个节点的属性,这时候预期的撤消应该为此次修改的全部属性同时回到变动以前的状态,而不该该是一个个节点的属性变动,因此这时候会合并全部的操做,当成一个组别
当判断不能合并的时候,则会新起一条CommandGroup来记录新的Command,并更新位置信息
撤消Undo
undo () { // check if we have un-commit group if (this._curGroup.canCommit()) { this._curGroup.undo() this._changed('undo-cache') this._groups.push(this._curGroup) this._curGroup = new CommandGroup() return true } // check if can undo if (this._position < 0) { return false } let group = this._groups[this._position] group.undo() this._position-- this._changed('undo') return true }
撤消时,存在如下三种状况
//Command undo undo () { let node = cocosGetItemByUUID(this.info.scene, this.info.uuid) if (this.info.op == 'prop') { if (!node) { return false } if (this.info.doPropChange) { this.info.doPropChange(node, this.info.prop, this.info.oldValue) } else { NodePropChange(node, this.info.prop, this.info.oldValue) } return true } console.warn('Please implement undo function in your command') }
每一个命令列表,首先会先尝试获取节点,而后根据节点的属性变动,进行新旧值的设置
反撤消Redo
redo () { // check if can redo if (this._position >= this._groups.length - 1) { return false } this._position++ let group = this._groups[this._position] group.redo() this._changed('redo') return true }
存在如下两种状况
//Command redo redo () { let node = cocosGetItemByUUID(this.info.scene, this.info.uuid) if (this.info.op == 'prop') { if (!node) { return false } if (this.info.doPropChange) { this.info.doPropChange(node, this.info.prop, this.info.newValue) } else { NodePropChange(node, this.info.prop, this.info.newValue) } return true } console.warn('Please implement redo function in your command') }
每一个命令列表,首先会先尝试获取节点,而后根据节点的属性变动,进行新旧值的设置
在编辑器中添加Command
function addNodeCommand (node, prop, oldValue, newValue, doPropChange) { let scene = getRootNode(node) if (!scene._undo) { return } tryAddCommand(scene._undo, newPropCommandChange(scene, node.uuid, prop, oldValue, newValue, doPropChange)) }
当属性发生变动的时候,咱们会调用addNodeCommand值进行相应的设置,来添加撤消反撤消功能的支持,如下的参数说明
function(node, prop, newValue) {}
其它未列出的信息,可参考源码的实现细节
#其它信息 VisualUIEditor开发QQ群欢迎您的加入: 453224679