cocos2d-x技術(shù)群新群:117871561
c++技術(shù)交流群:593010226
這里不死摳cocos-lua組件的原理靴跛, 重在快速上手使用, 只針對快速開發(fā)羞延,所以我盡量用簡潔 易懂的 文筆去闡述渣淳。
在一個公司里能運(yùn)用手上的知識 快速的完成一個功能才是最好的,也可已根據(jù)自己的能力和時間 去選擇是不是要深入的了解這些組件及功能伴箩。
當(dāng)然我的文章 也會根據(jù)我對cocos2d-lua的了解程度 不斷更新入愧,完善,希望能幫助在職場打拼的朋友從菜鳥到大神
綜述:單點(diǎn)觸摸事件實(shí)現(xiàn)點(diǎn)擊某個點(diǎn) 而做出預(yù)期的響應(yīng)
注意:單點(diǎn)觸摸事件針對的對象 主要是 Sprite(精靈)赛蔫,layer(層)等節(jié)點(diǎn)對象
示例:
--創(chuàng)建一個場景砂客,單點(diǎn)觸摸事件的實(shí)現(xiàn)都在這個場景中
function HelloScene:createLayer()
--創(chuàng)建一個層
local heLayer = cc.Layer:create()
--創(chuàng)建一個背景
local bg = cc.Sprite:create("bg.png")
--獲取屏幕大小
lcoal winSize = cc.Director:getInstance():getWinSize()
--設(shè)置背景圖的大小為屏幕的大小
bg:setContentSize(WinSize.width,WinSize.height)
bg:setPosition(cc.p(WinSize.width/2,WinSize.height/2))
heLayer:addChild(bg,1)
local image1 = cc.Sprite:create(image_1.png)
image1:setPosition(cc.p(WinSize.width/2,WinSize.height/2))
image1:setTag(1)
bg:addChild(image1,2)
local image2 = cc.Sprite:create(image_2.png)
image2 :setPosition(cc.p(image1:getPositionX(),image1:getPositionY()-100)
image2:setTag(2)
bg:addChild(image2,3)
--開始觸摸回掉函數(shù)
local function touchbegan(touch , event)
--獲取點(diǎn)擊的node
local nNode = event:getCurrentTarget()
--獲得觸摸點(diǎn)相對于精靈的坐標(biāo)
lcoal pos = nNode:convertToNodeSpace(touch:getLocation())
--獲得node的大小
local size = nNode:getContentSize()
--獲得Node的一個矩陣參數(shù)分別是橫坐標(biāo),縱坐標(biāo)呵恢,寬,高
lcoal rec = cc.rect(0,0,size.width,size.height)
--判斷點(diǎn)擊范圍是否在這個Node范圍內(nèi) 如果在則進(jìn)行動畫
if cc.rectContansPoint(rec,pos)
then
nNode:runAction(cc.ScaleBy:create(0.1,2))
end
end
--移動回調(diào)
local function touchmove(touch,event)
local nNode = event:getCurrentTarget()
loca posX,posY = nNode:getPosition()
--獲得當(dāng)前位置與初始位置的差
local dif = touch:getDelta()
node:setposition(cc.p(posX+dif.x,posY+dif.y))
node:runAction(cc.Scaleto:create(0.2,1))
end
local function touchended(touch ,event)
local nNode = event:getCurrentTarget()
local pos = nNode:convertToNodeSpace(touch:getLocation())
lcoal size = nNode:getContentSize()
local rec = cc.rect(0,0,size.width,size.height)
if rectContansPoint(rec,pos)
then
nNode:setColor(cc.c3b(0,25,25))
end
end
--創(chuàng)建OneByOne事件監(jiān)聽器
local listener1 = cc.EventListnerTouchOneByOne:create()
--設(shè)置吞沒事件 設(shè)置true 當(dāng)點(diǎn)擊某個精靈時時間不會傳到下一個層級低的精靈
listener1:setSwallowTouches(true)
--添加開始觸摸事件回掉函數(shù)
listener1:registerScriptHandler(touchbegan,cc.Handler.EVENT_TOUCH_BEGAN)
--添加 移動事件回掉函數(shù)
listener1:registerScriptHandler(touchmove,cc.Handler.EVENT_TOUCH_MOVED)
--添加 觸摸結(jié)束回掉
listener1:registerScriptHandler(touchended,cc.Handler.EVENT_TOUCH_ENDED)
--創(chuàng)建事件分發(fā)器 (負(fù)責(zé)監(jiān)聽器的注冊和注銷媚创,事件的分發(fā))
local eventDispatcher = cc.Director:getInstance():getEventDispatcher()
--添加監(jiān)聽器 參數(shù)分別是 監(jiān)聽器渗钉,圖片標(biāo)簽
--addEventListenerWithSceneGraphPriority添加的時間優(yōu)先級順序與精靈的顯示順序一樣,當(dāng)圖片重疊時钞钙,觸摸到的時層級最大的哪個
eventDispatcher:addEventListenerWithSceneGraphPriority(listener1,1)
--設(shè)置image2的單點(diǎn)觸摸
--clone()用于獲取新的事件監(jiān)聽器對象
lcoal listener2 = listener1:clone()
eventDispatcher:addEventListenerWithSceneGraphPriority(listener2,2)
return layer
end