最近准备做一个聊天系统,开始准备使用cocos2dx的UIRichText控件来显示聊天内容,结果在使用的时候才发现,cocos2dx的RichText功能非常有限,完全不具备实现聊天的功能,只实现了加入文本、图像和自定义控件的功能,支持不同字体、颜色、字号。
我个人认为,一个RichText控件应该具备以下基本功能:
5、能够有很方便的换行功能,最好能设置行间距。
1、文本特效:描边,下划线,阴影,发光等功能。
cocos2dx只实现了基础的1和2功能,所以考虑之后还是决定自己写一个RichText控件。UIRichText的框架还是不错的,实现了文本分行显示的技术。在他的基础上很容易扩展。
首先,扩展RichItem,用来支持多样化的文本需求。
再次,需要实现滚动功能,控件继承UIScrollView。
最后,还需要对lua进行支持,包括使用功能以及超链接点击事件的注册。
以上是我实现控件的思路,这里就不贴代码了,很多,我会把我的控件代码共享给大家,大家在使用中有什么问题也可以向我咨询。
源代码在这里,cocos2dx-3.0功能强大的richText控件
使用代码如下,我是在lua里面使用的,大家可以参考一下:
- functionChatUI:initRichEdit()
- localwidget=self:getWidget()
- ifwidgetthen
- --创建小喇叭控件
- self._richBugle=ui.RichTextUI:create()
- self._richBugle:setSize(cc.size(940,35))
- self._richBugle:setAnchorPoint(cc.p(0,0))
- self._richBugle:setPosition(cc.p(100,510))
- self._richBugle:setMaxLine(1)
- --创建聊天控件
- self._richChat=ui.RichTextUI:create()
- self._richChat:setSize(cc.size(940,420))
- self._richChat:setAnchorPoint(cc.p(0,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> self._richChat:setPosition(cc.p(20,70))
- widget:addChild(self._richBugle)
- widget:addChild(self._richChat)
- localfunctioncallback(sender,eventType)
- ifeventType==ui.RICHTEXT_ANCHOR_CLICKEDthen
- print(">>>>>>>>>>>addEventListenerRichText")
- end
- end
- self._richChat:addEventListenerRichText(callback)
- functionChatUI:addChatMsg(channel,roleName,chatMsg,signs)
- localrichText=(channel==Channel_ID_Bugle)andself._richBugleorself._richChat
- ifrichTextandchannelandroleNameandchatMsgthen
- localChannelNameSwitch=
- {
- [Channel_ID_Team]="【队伍】",
- [Channel_ID_Privacy]="【私聊】",
- [Channel_ID_Faction]="【帮会】",248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_World]="【世界】",108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_System]="【系统】"
- }
- localChannelColor=
- [Channel_ID_Team]=Color3B.ORANGE,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_Privacy]=Color3B.ORANGE,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_Faction]=Color3B.ORANGE,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_World]=Color3B.ORANGE,108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_System]=Color3B.WHITE,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> [Channel_ID_Bugle]=Color3B.ORANGE
- }
- locallinkColor=Color3B.YELLOW
- locallinklineColor=Color4B.YELLOW
- localoutlineColor=Color4B.BLACK
- ifchannel==Channel_ID_Buglethen
- richText:insertNewLine()
- ifChannelNameSwitch[channel]then
- localrc=ui.RichItemText:create(channel,ChannelColor[channel],strg2u(ChannelNameSwitch[channel]),"DFYuanW7-GB2312.ttf",25)
- rc:enableOutLine(outlineColor,2)
- richText:insertElement(rc)
- ifchannel~=Channel_ID_Systemthen
- localrcn=ui.RichItemText:create(channel,linkColor,strg2u(roleName),25)
- rcn:enableLinkLine(linklineColor,1)
- rcn:enableOutLine(outlineColor,248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> richText:insertElement(rcn)
- chatMsg=":"..chatMsg
- localrcm=ui.RichItemText:create(channel,strg2u(chatMsg),248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> richText:insertElement(rcm)
- ifchannel~=Channel_ID_Buglethen
- richText:insertNewLine()
- functionChatUI:initComponent()
- self:addChatMsg(Channel_ID_Bugle,"王小二","ThisisBugleMsg")
- self:addChatMsg(Channel_ID_System,"","ThisisSystemMsg")
- self:addChatMsg(Channel_ID_Team,"ThisisTeamMsg")
- self:addChatMsg(Channel_ID_World,"ThisisWorldMsg")
- self:addChatMsg(Channel_ID_Faction,"ThisisFactionMsg")
- self._channel=Channel_ID_World
- self:showChannel(Channel_ID_All)
- localbtnChannel=self:getChild("Button_Channel")
- ifbtnChannelthen
- btnChannel:setTitleText(strg2u("世界"))
- end
最后是效果图:
本文摘自:http://blog.csdn.net/ljxfblog/article/details/26136773
原文链接:https://www.f2er.com/cocos2dx/342324.html