`cocos2dx 非完整` UI解析模块
昨天在cocos2dx的一个群里,遇到一位匿名为x的朋友询问的问题,是关于ui的.他使用c++写了不少的ui封装节点,用来实现游戏中的各种不同效果.然后现在想改用lua,于是尝试使用最小代价去复用自己的代码.当然这个是可以做到的,相信很多人都是知道方法的.今天的这篇文章就来谈谈ui部分的处理以及个人的见解.
我们都知道,cocos2dx引擎提供了ui工具cocostudio.后来改名为cocos engine.这些就不赘述了,很多人都会使用这款工具.新版本的工具我没有使用过,不过我承认是方便了很多.可是很多时候我们期望有着自己一套的资源管理方式,尤其是项目琐碎ui资源,效果资源等等一大堆的时候,后期优化app包大小的时候也是个问题. 所以我个人倾向的方案是提供基于项目的ui库.当然对于lua这样的语言不存在库的说法,我在fw目录下面提供了一个ui模块,为了解决自己提供的ui方式,首先得想明白我们如何去使用自己的ui模块.我期望的方式是这个样子的:
local component_cfg =
{
{
name = "bg_img",
creator = ui_parser.parsers.img, -- 基于cocos2dx ui
pos = cc.p(,),
-- ...
parent = self,
},
{
name = "loading_bar",
creator = ui_parser.parsers.widget_loading_bar, -- 基于自己扩展的ui
-- ...
parent = "bg_img", -- 节点内部相互添加也可以支持
}, onfinsh = function(components)
components["loading_bar"]:set_percent(), -- 初始化以后的操作
end,
} local components = ui_parser.parse(component_cfg)
看上面我提供的实例代码,我期望的是创建一个ui模块,只需要按照lua table的方式一样配置就好.这样有一个好处,可以复用很多其他模块的代码.需要的其他功能我都在注释中写出来了.接下来继续分析一下需求,我们可能会有自己的ui封装,所以得提供一个基类,当然这是仿照oop的说法,所以我就提供了一个ui_widget文件用来实现这个功能:
--小岩<757011285@qq.com>
--2015-5-30 13:25
local ui_widget = {} function ui_widget:ctor(cfg)
self.type_ = "ui_widget"
self.cfg_ = cfg
self:init_widget()
end function ui_widget:init_widget()
error(self.__cname .. ":init_widget() method not implemented!")
end function ui_widget:get_root_node()
error(self.__cname .. ":get_root_node() method not implemented!")
end function ui_widget:add_to_node(parent)
if parent.type_ and parent.type_ == "ui_widget" then
parent:get_root_node():addChild(self:get_root_node())
else
parent:addChild(self:get_root_node())
end
end function ui_widget:add_child(child)
if child.type_ and child.type_ = "ui_widget" then
self:get_root_node():addChild(child:get_root_node())
else
self:get_root_node():addChild(child)
end
end function ui_widget:set_ap(ap)
self:get_root_node():setAnchorPoint(ap)
end function ui_widget:get_ap()
return self:get_root_node():getAnchorPoint()
end function ui_widget:set_pos(pos)
self:get_root_node():setPosition(pos)
end function ui_widget:get_pos()
local posx, posy = self:get_root_node():getPosition()
return cc.p(posx, posy)
end return ui_widget
好了,基本的东西已经提供好了,下面就去处理.首先是处理creator,因为需求中明确的表示,第一我们要兼容cocos ui创建的api,另外我们还会有自己的ui封装.所以我将这些节点的创建方式都放在一起,方便管理.所以就有了ui_creator文件:
--小岩<757011285@qq.com>
--2015-5-30 12:45
local ui_creator = {} ui_creator.creators_ =
{
ccsprite =
{
function(...)
return cc.Sprite:create(...)
end,
function(...)
return cc.Sprite:createWithSpriteFrameName(...)
end
},
} function ui_creator.new_ccsprite(mode, ...)
return ui_creator.creators_.ccsprite[mode](...)
end return ui_creator
可能很多人会奇怪这里面的mode参数是做什么用的,这个是用作资源管理用的,在开发初期的时候我们不会对资源进行合并处理,大部分都是散乱的放在各个文件夹中,而后期的时候我们会对资源进行合并.例如打包成为png大图等.通过浏览cocos2dx源码可以知道,cocos2dx的资源管理方式分为local和cache,所以我就提供了两种不同的创建接口.但是又消除了api的不同,对于使用者而言,仅仅是指定一下mode参数而已.对于api消除不同性接下来还要说.看ui_widget可以知道我提供的api和cocos2dx提供的api不同.所以我要消除这部分的不同性.不过要先来看一下ui_parser的实现:
--小岩<757011285@qq.com>
--2015-5-30 12:45
local ui_creator = require "fw.ui.ui_creator"
local checker = require "fw.ui.check"
local api_adapter= require "fw.ui.api_adapter" local ui_parser = {} -- 解析ui控件函数
ui_parser.parsers =
{
img = function(cfg)
checker(cfg.mode, "number", string.format("ui_parser.parsers_.img() -- wrong mode %d", tonumber(cfg.mode)))
checker(cfg.img, "string", string.format("ui_parser.parsers_.img() -- wrong img %s", tostring(cfg.img)))
local img_ins = ui_creator.new_ccsprite(cfg.mode, cfg.img)
api_adapter.adapter_cc(img_ins)
return img_ins
end,
} local function _strict_loop_with_given_list(list, callback)
for index, item in ipairs(list) do
callback(index, item)
end
end --解析ui,生成ui控件
function ui_parser.parse(component_cfg)
local ui_components_ = {}
local ui_cbs_ = {}
local unspports_ = {} --解析callback
local function parse_cb(ui_cb)
table.insert(ui_cbs_, ui_cb)
end --解析ui控件
local function parse_ui(ui_cfg)
checker(ui_cfg.name, "string", string.format("ui_parser.parse.parse_ui() -- cfg name error!"))
checker(ui_cfg.creator, "function", string.format("ui_parser.parse.parse_ui() -- cfg creator error!")) --处理节点相互添加
if ui_cfg.parent and type(ui_cfg.parent) == "string" then
parse_cb(function(ui_components)
local ui_component = ui_components[ui_cfg.name]
local ui_component_type = ui_component.type_
local ui_component_parent = ui_componens[ui_cfg.parent]
local ui_component_parent_type = ui_component_parent.type_
if ui_component_type and ui_component_type == "ui_widget" then
ui_component:add_to_node(ui_component_parent)
else
if ui_component_parent_type and ui_component_parent_type == "ui_widget" then
ui_component_parent:add_child(ui_component)
end
end
end)
end ui_components_[ui_cfg.name] = ui_cfg.creator(ui_cfg)
end --保存unspport
local function parse_unspports(unspport)
table.insert(unspports_, unspport)
end _strict_loop_with_given_list(component_cfg, function(_, item)
local item_type = type(item)
if item_type == "table" then
parse_ui(item)
elseif item_type == "function" then
parse_cb(item)
else
parse_unspports(item)
end
end) _strict_loop_with_given_list(ui_cbs_, function(_, cb)
cb(ui_components_)
end) ui_components_["unspport"] = unspports_ return ui_components_
end return ui_parser
其中我做了很多的事情,例如很多时候我们在做UI布局的时候需要做相对适配,所以坐标不好指定,所以我在解析compoennt_cfg的时候认为如果提供的节点是function类型的话,那么就等所有的节点都解析完了之后统一操作,这样就可以处理相对布局的东西了.另外cocos2dx node派生的节点,和我们事先的ui_widget派生的节点如何相互添加的操作也做了.好了,创建的节点我在ui_parser.parsers中封装了,下面我们就来处理api的不同性,并消除掉。
--小岩<757011285@qq.com>
--2015-5-30 14:17
local api_adapter = {} api_adapter.cc =
{
parent = function(node, parent)
if type(parent) ~= "string" then
if parent.type_ and parent.type_ == "ui_widget" then
parent:add_child(node)
else
parent:addChild(node)
end
end
end,
pos = function(node, pos)
node:setPosition(pos)
end,
ap = function(node, ap)
node:setAnchorPoint(ap)
end,
show = function(node, show)
node:setVisible(show)
end,
content_size = function(node, content_size)
node:setContentSize(content_size)
end,
rotation = function(node, rotation)
node:setRotation(rotation)
end,
scale = function(node, scale)
node:setScale(scale)
end, scalex = function(node, scalex)
node:setScaleX(scalex)
end,
scaley = function(node, scaley)
node:setScaleY(scaley)
end,
rsx = function(node, rsx)
node:setRotationSkewX(rsx)
end,
rsy = function(node, rsy)
node:setRotationSkewY(rsy)
end,
} api_adapter.widget =
{
parent = function(node, parent)
if type(parent) ~= "string" then
node:add_to_parent(parent)
end
end,
pos = function(node, pos)
node:set_pos(pos)
end,
ap = function(node, ap)
node:set_ap(ap)
end,
show = function(node, show)
node:get_root_node():setVisible(show)
end,
content_size = function(node, content_size)
node:set_content_size(content_size)
end,
} function api_adapter.adapter_cc(node, cfg)
if cfg.parent then api_adapter.cc.parent(node, cfg.parent) end
if cfg.pos then api_adapter.cc.pos(node, cfg.pos) end
if cfg.ap then api_adapter.cc.ap(node, cfg.ap) end
if cfg.show or type(cfg.show) == "boolean" then api_adapter.cc.show(node, cfg.show) end
if cfg.content_size then api_adapter.cc.content_size(node, cfg.content_size) end
if cfg.rotation then api_adapter.cc.rotation(node, cfg.rotation) end
if cfg.scale then api_adapter.cc.scale(node, cfg.scale) end
if cfg.scalex then api_adapter.cc.scalex(node, cfg.scalex) end
if cfg.scaley then api_adapter.cc.scaley(node, cfg.scaley) end
if cfg.rsx then api_adapter.cc.rsx(node, cfg.rsx) end
if cfg.rsy then api_adapter.cc.rsy(node, cfg.rsy) end
end function api_adapter.adapter_widget(node, cfg)
if cfg.parent then api_adapter.widget.parent(node, cfg.parent) end
if cfg.pos then api_adapter.widget.pos(node, cfg.pos) end
if cfg.ap then api_adapter.widget.ap(node, cfg.ap) end
if cfg.show then api_adapter.widget.show(node, cfg.show) end
if cfg.content_size then api_adapter.widget.content_size(node, cfg.content_size) end
end return api_adapter
我按部就班的提供了上面的工具. 这样就消除了api不同性. 如果添加了我们自己的ui封装,响应的在creator中添加创建函数,在parser中添加响应的解析,在api_adaper中添加相应的函数.这样就做到了我前面预期的事情了。
在这里要说一句抱歉,因为我并没有添加测试用例的功能,所以不能给大家提供直观的测试表现,很快我就会考虑添加的.这篇文章就到这里啦.希望对大家有用。
`cocos2dx 非完整` UI解析模块的更多相关文章
- `cocos2dx非完整` 日志模块 增量更新
在上一篇文章中,说到了"流程"的由来,以及我对流程的使用. 这一片就是对流程的应用.前一篇文章中说到了三条流程 check_log_measure, check_env_measu ...
- `cocos2dx非完整` 开始自己的FW模块
上一篇的文章中说到了一些个人习惯的东西以及一些简单的项目配置,这一篇文章我们来进一步完善一些东西.首先,打开编译以后的客户端执行,会看到一大堆的fileutils加载luac文件的提示,在终端显示一大 ...
- `cocos2dx非完整` 添加xxtea加密模块
在上一篇文章中,我已经开始着手写自己的模块,也就是fw部分.其中上一篇文章中完成的是lua部分的配置解析部分,涉及一点点平台方面的封装.这一片文章我来说明一下我是如何处理cocos2dx资源加密的.首 ...
- `cocos2dx非完整`开篇
相信每个人都有一些自己的项目开发习惯,在·开篇·中我主要是会提到一些项目的配置问题.无论做一款什么样的手游项目,我们总是会从需求的角度出发去选择开发引擎,开发工具等一些列的工具去完善我们的开发环境.当 ...
- `cocos2dx非完整` 游戏架构缩影 添加启动流程
这期的话题可能不是很好, 我没有想到很好的词句去更好的表达. 我一直都是很固执的认为, 同一类型的游戏,在开发做的前期工作上面其实都是可以复用的,也就是大同小异的.从游戏启动,启动日志,启动检查,检查 ...
- `fw服务端非完整` 工程开发初期的工作
前面写到了一些关于cocos2dx在开发中的一些模块以及一些解决方法,那些都属于本人的个人简介和个人倾向的解决方案.最近这几天我完善了一下ui解析的部分,当然也只是抽出一点点时间去做的这件事情.我添加 ...
- 第三十六课:如何书写一个完整的ajax模块
本课主要教大家如何书写一个完整的ajax模块,讲解的代码主要跟ajax有关,而jQuery的ajax模块添加了Deferred异步编程的机制,因此对ajax的理解难度增大,还是忽略掉.但是我要讲解的代 ...
- 浩哥解析MyBatis源码(十一)——Parsing解析模块之通用标记解析器(GenericTokenParser)与标记处理器(TokenHandler)
原创作品,可以转载,但是请标注出处地址:http://www.cnblogs.com/V1haoge/p/6724223.html 1.回顾 上面的几篇解析了类型模块,在MyBatis中类型模块包含的 ...
- python命令行参数解析模块argparse和docopt
http://blog.csdn.net/pipisorry/article/details/53046471 还有其他两个模块实现这一功能,getopt(等同于C语言中的getopt())和弃用的o ...
随机推荐
- 将外卖O2O广告一棍子打成竞价排名,秤把平了吗?
近日,诸多媒体报道称美团外卖.饿了么等外卖O2O将竞价排名引入外卖平台当中进行广告运营一事闹得沸沸扬扬.那么,美团外卖.饿了么真的都是竞价排名吗? 其实,美团外卖的付费推广仅仅只是针对列表的固定位置, ...
- Moses在Ubuntu14.04平台的安装过程
平台环境:在windows 7中建立VMware虚拟机,操作系统为Ubuntu_14.04_amd_64 1.安装GIZA++ 安装步骤如下: wget http://giza-pp.googleco ...
- 【CUDA学习】全局存储器
全局存储器,即普通的显存,整个网格中的任意线程都能读写全局存储器的任意位置. 存取延时为400-600 clock cycles 非常容易成为性能瓶颈. 访问显存时,读取和存储必须对齐,宽度为4By ...
- Hello Kraken.js!
前言 kraken.js 由paypal 公司开源的一个用于快速开发基于Express.js框架应用的快速开发工具, 因为kraken 并没有在Express.js基础上更改多少东西,只是在原来的 ...
- 10个有关RESTful API良好设计的最佳实践
Web API已经在最近几年变成重要的话题,一个干净的API设计对于后端系统是非常重要的. 通常我们为Web API使用RESTful设计,REST概念分离了API结构和逻辑资源,通过Http方法GE ...
- CountDownLatch线程阻塞用法实例
在编写多线程的工作中,有个常见的问题:主线程(main) 启动好几个子线程(task)来完成并发任务,主线程要等待所有的子线程完成之后才继续执行main的其它任务. 默认主线程退出时其它子线程不会停, ...
- VS2010在运行状态下编辑代码
在VS2010环境下,当程序处于调试运行状态时,编辑代码会出现下图提示框: 这就给边编辑代码边查看程序运行效果带来不便. 解决方法:在程序没有运行的时候,打开菜单“工具”——>“选项”——> ...
- 【卡西欧Fx-5800p】市场分析 ppt
一.ppt视频 二.大概内容 1:2010年的4万亿救市政策和 2011年4月后财政收缩政策 2:2011-7-23温州动车追尾事故70%的公路高铁等基础建设项目停缓建 ·····
- MySQL中导入 导出CSV
来自:http://blog.csdn.net/sara_yhl/article/details/6850107 导出 select * from test_info into outfile '/t ...
- 自定义圆环progressbar
RoundProgressBar.java /** * RoundProgressBar.java [v1.0.0] * classes: com.example.audiorecordingtest ...