2020-10-18 12:31:45 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2012 cocos2d-x.org
|
2022-07-10 09:47:41 +08:00
|
|
|
* https://axis-project.github.io/
|
2020-10-18 12:31:45 +08:00
|
|
|
*
|
|
|
|
* Copyright 2012 Yannick Loriot. All rights reserved.
|
|
|
|
* http://yannickloriot.com
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2020-10-18 12:31:45 +08:00
|
|
|
* Copyright (c) 2017-2018 Xiamen Yaji Software Co., Ltd.
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2020-10-18 12:31:45 +08:00
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2020-10-18 12:31:45 +08:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
2021-12-25 10:04:45 +08:00
|
|
|
*
|
2020-10-18 12:31:45 +08:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "CCControlSwitch.h"
|
|
|
|
#include "2d/CCSprite.h"
|
|
|
|
#include "2d/CCActionTween.h"
|
|
|
|
#include "2d/CCLabel.h"
|
|
|
|
#include "2d/CCClippingNode.h"
|
|
|
|
#include "renderer/ccShaders.h"
|
|
|
|
#include "2d/CCRenderTexture.h"
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
// ControlSwitchSprite
|
|
|
|
|
|
|
|
class ControlSwitchSprite : public Sprite, public ActionTweenDelegate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/** creates an autorelease instance of ControlSwitchSprite */
|
2021-12-25 10:04:45 +08:00
|
|
|
static ControlSwitchSprite* create(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
|
|
|
Label* offLabel);
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
void needsLayout();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
void setSliderXPosition(float sliderXPosition);
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
float getSliderXPosition() { return _sliderXPosition; }
|
2020-10-18 12:31:45 +08:00
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
float onSideWidth();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
float offSideWidth();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2021-12-31 12:12:40 +08:00
|
|
|
virtual void updateTweenAction(float value, std::string_view key) override;
|
2020-10-18 12:31:45 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
/** Contains the position (in x-axis) of the slider inside the receiver. */
|
2020-10-18 12:31:45 +08:00
|
|
|
float _sliderXPosition;
|
|
|
|
CC_SYNTHESIZE(float, _onPosition, OnPosition)
|
|
|
|
CC_SYNTHESIZE(float, _offPosition, OffPosition)
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
CC_SYNTHESIZE_RETAIN(Texture2D*, _maskTexture, MaskTexture)
|
|
|
|
CC_SYNTHESIZE(uint32_t, _textureLocation, TextureLocation)
|
|
|
|
CC_SYNTHESIZE(uint32_t, _maskLocation, MaskLocation)
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
CC_SYNTHESIZE_RETAIN(Sprite*, _onSprite, OnSprite)
|
|
|
|
CC_SYNTHESIZE_RETAIN(Sprite*, _offSprite, OffSprite)
|
|
|
|
CC_SYNTHESIZE_RETAIN(Sprite*, _thumbSprite, ThumbSprite)
|
|
|
|
CC_SYNTHESIZE_RETAIN(Label*, _onLabel, OnLabel)
|
|
|
|
CC_SYNTHESIZE_RETAIN(Label*, _offLabel, OffLabel)
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
Sprite* _clipperStencil;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
ControlSwitchSprite();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
|
|
|
virtual ~ControlSwitchSprite();
|
|
|
|
/**
|
|
|
|
* @js NA
|
|
|
|
* @lua NA
|
|
|
|
*/
|
2021-12-25 10:04:45 +08:00
|
|
|
bool initWithMaskSprite(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
2020-10-18 12:31:45 +08:00
|
|
|
Label* offLabel);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
private:
|
|
|
|
CC_DISALLOW_COPY_AND_ASSIGN(ControlSwitchSprite);
|
|
|
|
};
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
ControlSwitchSprite* ControlSwitchSprite::create(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
|
|
|
Label* offLabel)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
auto ret = new ControlSwitchSprite();
|
2020-10-18 12:31:45 +08:00
|
|
|
ret->initWithMaskSprite(maskSprite, onSprite, offSprite, thumbSprite, onLabel, offLabel);
|
|
|
|
ret->autorelease();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ControlSwitchSprite::ControlSwitchSprite()
|
2021-12-25 10:04:45 +08:00
|
|
|
: _sliderXPosition(0.0f)
|
|
|
|
, _onPosition(0.0f)
|
|
|
|
, _offPosition(0.0f)
|
|
|
|
, _maskTexture(nullptr)
|
|
|
|
, _textureLocation(0)
|
|
|
|
, _maskLocation(0)
|
|
|
|
, _onSprite(nullptr)
|
|
|
|
, _offSprite(nullptr)
|
|
|
|
, _thumbSprite(nullptr)
|
|
|
|
, _onLabel(nullptr)
|
|
|
|
, _offLabel(nullptr)
|
|
|
|
, _clipperStencil(nullptr)
|
|
|
|
{}
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
ControlSwitchSprite::~ControlSwitchSprite()
|
|
|
|
{
|
|
|
|
CC_SAFE_RELEASE(_onSprite);
|
|
|
|
CC_SAFE_RELEASE(_offSprite);
|
|
|
|
CC_SAFE_RELEASE(_thumbSprite);
|
|
|
|
CC_SAFE_RELEASE(_onLabel);
|
|
|
|
CC_SAFE_RELEASE(_offLabel);
|
|
|
|
CC_SAFE_RELEASE(_maskTexture);
|
|
|
|
CC_SAFE_RELEASE(_clipperStencil);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool ControlSwitchSprite::initWithMaskSprite(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
|
|
|
Label* offLabel)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
if (Sprite::initWithTexture(maskSprite->getTexture()))
|
|
|
|
{
|
|
|
|
// Sets the default values
|
2021-12-25 10:04:45 +08:00
|
|
|
_onPosition = 0;
|
|
|
|
_offPosition = -onSprite->getContentSize().width + thumbSprite->getContentSize().width / 2;
|
|
|
|
_sliderXPosition = _onPosition;
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
setOnSprite(onSprite);
|
|
|
|
setOffSprite(offSprite);
|
|
|
|
setThumbSprite(thumbSprite);
|
|
|
|
setOnLabel(onLabel);
|
|
|
|
setOffLabel(offLabel);
|
|
|
|
|
|
|
|
ClippingNode* clipper = ClippingNode::create();
|
2021-12-25 10:04:45 +08:00
|
|
|
_clipperStencil = Sprite::createWithTexture(maskSprite->getTexture());
|
2020-10-18 12:31:45 +08:00
|
|
|
_clipperStencil->retain();
|
|
|
|
clipper->setAlphaThreshold(0.1f);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
clipper->setStencil(_clipperStencil);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
clipper->addChild(onSprite);
|
|
|
|
clipper->addChild(offSprite);
|
2021-12-25 10:04:45 +08:00
|
|
|
if (onLabel)
|
|
|
|
{
|
|
|
|
clipper->addChild(onLabel); // might be null
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
if (offLabel)
|
|
|
|
{
|
|
|
|
clipper->addChild(offLabel); // might be null
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
|
|
|
clipper->addChild(thumbSprite);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
addChild(clipper);
|
|
|
|
|
|
|
|
// Set up the mask with the Mask shader
|
|
|
|
setMaskTexture(maskSprite->getTexture());
|
|
|
|
|
|
|
|
setContentSize(_maskTexture->getContentSize());
|
|
|
|
|
|
|
|
needsLayout();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-31 12:12:40 +08:00
|
|
|
void ControlSwitchSprite::updateTweenAction(float value, std::string_view key)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
CCLOGINFO("key = %s, value = %f", key.c_str(), value);
|
|
|
|
setSliderXPosition(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControlSwitchSprite::needsLayout()
|
|
|
|
{
|
|
|
|
_onSprite->setPosition(_onSprite->getContentSize().width / 2 + _sliderXPosition,
|
2021-12-25 10:04:45 +08:00
|
|
|
_onSprite->getContentSize().height / 2);
|
|
|
|
_offSprite->setPosition(
|
|
|
|
_onSprite->getContentSize().width + _offSprite->getContentSize().width / 2 + _sliderXPosition,
|
2020-10-18 12:31:45 +08:00
|
|
|
_offSprite->getContentSize().height / 2);
|
|
|
|
_thumbSprite->setPosition(_onSprite->getContentSize().width + _sliderXPosition,
|
2021-12-25 10:04:45 +08:00
|
|
|
_maskTexture->getContentSize().height / 2);
|
2020-10-18 12:31:45 +08:00
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_clipperStencil->setPosition(_maskTexture->getContentSize().width / 2, _maskTexture->getContentSize().height / 2);
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
if (_onLabel)
|
|
|
|
{
|
|
|
|
_onLabel->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_onLabel->setPosition(_onSprite->getPosition().x - _thumbSprite->getContentSize().width / 6,
|
2021-12-25 10:04:45 +08:00
|
|
|
_onSprite->getContentSize().height / 2);
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
|
|
|
if (_offLabel)
|
|
|
|
{
|
|
|
|
_offLabel->setAnchorPoint(Vec2::ANCHOR_MIDDLE);
|
|
|
|
_offLabel->setPosition(_offSprite->getPosition().x + _thumbSprite->getContentSize().width / 6,
|
2021-12-25 10:04:45 +08:00
|
|
|
_offSprite->getContentSize().height / 2);
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
setFlippedY(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControlSwitchSprite::setSliderXPosition(float sliderXPosition)
|
|
|
|
{
|
|
|
|
if (sliderXPosition <= _offPosition)
|
|
|
|
{
|
|
|
|
// Off
|
|
|
|
sliderXPosition = _offPosition;
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else if (sliderXPosition >= _onPosition)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
// On
|
|
|
|
sliderXPosition = _onPosition;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_sliderXPosition = sliderXPosition;
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
needsLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
float ControlSwitchSprite::onSideWidth()
|
|
|
|
{
|
|
|
|
return _onSprite->getContentSize().width;
|
|
|
|
}
|
|
|
|
|
|
|
|
float ControlSwitchSprite::offSideWidth()
|
|
|
|
{
|
|
|
|
return _offSprite->getContentSize().height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// ControlSwitch
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
ControlSwitch::ControlSwitch() : _switchSprite(nullptr), _initialTouchXPosition(0.0f), _moved(false), _on(false) {}
|
2020-10-18 12:31:45 +08:00
|
|
|
|
|
|
|
ControlSwitch::~ControlSwitch()
|
|
|
|
{
|
|
|
|
CC_SAFE_RELEASE(_switchSprite);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool ControlSwitch::initWithMaskSprite(Sprite* maskSprite, Sprite* onSprite, Sprite* offSprite, Sprite* thumbSprite)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
return initWithMaskSprite(maskSprite, onSprite, offSprite, thumbSprite, nullptr, nullptr);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
ControlSwitch* ControlSwitch::create(Sprite* maskSprite, Sprite* onSprite, Sprite* offSprite, Sprite* thumbSprite)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
ControlSwitch* pRet = new ControlSwitch();
|
|
|
|
if (pRet->initWithMaskSprite(maskSprite, onSprite, offSprite, thumbSprite, nullptr, nullptr))
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool ControlSwitch::initWithMaskSprite(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
|
|
|
Label* offLabel)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
if (Control::init())
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
CCASSERT(maskSprite, "Mask must not be nil.");
|
|
|
|
CCASSERT(onSprite, "onSprite must not be nil.");
|
|
|
|
CCASSERT(offSprite, "offSprite must not be nil.");
|
|
|
|
CCASSERT(thumbSprite, "thumbSprite must not be nil.");
|
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_on = true;
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
_switchSprite = ControlSwitchSprite::create(maskSprite, onSprite, offSprite, thumbSprite, onLabel, offLabel);
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->retain();
|
2021-12-25 10:04:45 +08:00
|
|
|
_switchSprite->setPosition(_switchSprite->getContentSize().width / 2,
|
|
|
|
_switchSprite->getContentSize().height / 2);
|
2020-10-18 12:31:45 +08:00
|
|
|
addChild(_switchSprite);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
setIgnoreAnchorPointForPosition(false);
|
|
|
|
setAnchorPoint(Vec2(0.5f, 0.5f));
|
|
|
|
setContentSize(_switchSprite->getContentSize());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
ControlSwitch* ControlSwitch::create(Sprite* maskSprite,
|
|
|
|
Sprite* onSprite,
|
|
|
|
Sprite* offSprite,
|
|
|
|
Sprite* thumbSprite,
|
|
|
|
Label* onLabel,
|
|
|
|
Label* offLabel)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-08 00:11:53 +08:00
|
|
|
ControlSwitch* pRet = new ControlSwitch();
|
|
|
|
if (pRet->initWithMaskSprite(maskSprite, onSprite, offSprite, thumbSprite, onLabel, offLabel))
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControlSwitch::setOn(bool isOn)
|
|
|
|
{
|
|
|
|
setOn(isOn, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControlSwitch::setOn(bool isOn, bool animated)
|
|
|
|
{
|
|
|
|
_on = isOn;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
|
|
|
if (animated)
|
|
|
|
{
|
|
|
|
_switchSprite->runAction(
|
|
|
|
ActionTween::create(0.2f, "sliderXPosition", _switchSprite->getSliderXPosition(),
|
|
|
|
(_on) ? _switchSprite->getOnPosition() : _switchSprite->getOffPosition()));
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
else
|
|
|
|
{
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->setSliderXPosition((_on) ? _switchSprite->getOnPosition() : _switchSprite->getOffPosition());
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
sendActionsForControlEvents(Control::EventType::VALUE_CHANGED);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ControlSwitch::setEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
_enabled = enabled;
|
|
|
|
if (_switchSprite != nullptr)
|
|
|
|
{
|
|
|
|
_switchSprite->setOpacity((enabled) ? 255 : 128);
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
2020-10-18 12:31:45 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
Vec2 ControlSwitch::locationFromTouch(Touch* pTouch)
|
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Vec2 touchLocation = pTouch->getLocation(); // Get the touch position
|
|
|
|
touchLocation = this->convertToNodeSpace(touchLocation); // Convert to the node space of this class
|
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
return touchLocation;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
bool ControlSwitch::onTouchBegan(Touch* pTouch, Event* /*pEvent*/)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
if (!isTouchInside(pTouch) || !isEnabled() || !isVisible())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_moved = false;
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
Vec2 location = this->locationFromTouch(pTouch);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_initialTouchXPosition = location.x - _switchSprite->getSliderXPosition();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->getThumbSprite()->setColor(Color3B::GRAY);
|
|
|
|
_switchSprite->needsLayout();
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ControlSwitch::onTouchMoved(Touch* pTouch, Event* /*pEvent*/)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Vec2 location = this->locationFromTouch(pTouch);
|
|
|
|
location = Vec2(location.x - _initialTouchXPosition, 0.0f);
|
|
|
|
|
|
|
|
_moved = true;
|
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->setSliderXPosition(location.x);
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ControlSwitch::onTouchEnded(Touch* pTouch, Event* /*pEvent*/)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Vec2 location = this->locationFromTouch(pTouch);
|
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->getThumbSprite()->setColor(Color3B::WHITE);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
if (hasMoved())
|
|
|
|
{
|
|
|
|
setOn(!(location.x < _switchSprite->getContentSize().width / 2), true);
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
2020-10-18 12:31:45 +08:00
|
|
|
else
|
|
|
|
{
|
|
|
|
setOn(!_on, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-25 10:04:45 +08:00
|
|
|
void ControlSwitch::onTouchCancelled(Touch* pTouch, Event* /*pEvent*/)
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
2021-12-25 10:04:45 +08:00
|
|
|
Vec2 location = this->locationFromTouch(pTouch);
|
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
_switchSprite->getThumbSprite()->setColor(Color3B::WHITE);
|
2021-12-25 10:04:45 +08:00
|
|
|
|
2020-10-18 12:31:45 +08:00
|
|
|
if (hasMoved())
|
|
|
|
{
|
|
|
|
setOn(!(location.x < _switchSprite->getContentSize().width / 2), true);
|
2021-12-25 10:04:45 +08:00
|
|
|
}
|
|
|
|
else
|
2020-10-18 12:31:45 +08:00
|
|
|
{
|
|
|
|
setOn(!_on, true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_EXT_END
|