2012-09-25 16:57:51 +08:00
|
|
|
/*
|
2012-09-25 17:26:09 +08:00
|
|
|
* Copyright (c) 2012 cocos2d-x.org
|
|
|
|
* http://www.cocos2d-x.org
|
2012-09-25 16:57:51 +08:00
|
|
|
*
|
|
|
|
* Copyright 2012 Yannick Loriot. All rights reserved.
|
|
|
|
* http://yannickloriot.com
|
|
|
|
*
|
|
|
|
* 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:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT falseT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND falseNINFRINGEMENT. IN false 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 "CCControlStepper.h"
|
|
|
|
|
|
|
|
NS_CC_EXT_BEGIN
|
|
|
|
|
2013-07-05 16:49:22 +08:00
|
|
|
#define ControlStepperLabelColorEnabled Color3B(55, 55, 55)
|
|
|
|
#define ControlStepperLabelColorDisabled Color3B(147, 147, 147)
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
#define ControlStepperLabelFont "CourierNewPSMT"
|
2012-09-25 16:57:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
#define kAutorepeatDeltaTime 0.15f
|
|
|
|
#define kAutorepeatIncreaseTimeIncrement 12
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ControlStepper::ControlStepper()
|
2013-06-15 14:03:30 +08:00
|
|
|
: _minusSprite(NULL)
|
|
|
|
, _plusSprite(NULL)
|
|
|
|
, _minusLabel(NULL)
|
|
|
|
, _plusLabel(NULL)
|
|
|
|
, _value(0.0)
|
|
|
|
, _continuous(false)
|
|
|
|
, _autorepeat(false)
|
|
|
|
, _wraps(false)
|
|
|
|
, _minimumValue(0.0)
|
|
|
|
, _maximumValue(0.0)
|
|
|
|
, _stepValue(0.0)
|
|
|
|
, _touchInsideFlag(false)
|
2013-06-20 14:15:53 +08:00
|
|
|
, _touchedPart(kControlStepperPartNone)
|
2013-06-15 14:03:30 +08:00
|
|
|
, _autorepeatCount(0)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ControlStepper::~ControlStepper()
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
unscheduleAllSelectors();
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
CC_SAFE_RELEASE(_minusSprite);
|
|
|
|
CC_SAFE_RELEASE(_plusSprite);
|
|
|
|
CC_SAFE_RELEASE(_minusLabel);
|
|
|
|
CC_SAFE_RELEASE(_plusLabel);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool ControlStepper::initWithMinusSpriteAndPlusSprite(Sprite *minusSprite, Sprite *plusSprite)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
if (Control::init())
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
CCAssert(minusSprite, "Minus sprite must be not nil");
|
|
|
|
CCAssert(plusSprite, "Plus sprite must be not nil");
|
|
|
|
|
|
|
|
setTouchEnabled(true);
|
|
|
|
|
|
|
|
// Set the default values
|
2013-06-15 14:03:30 +08:00
|
|
|
_autorepeat = true;
|
|
|
|
_continuous = true;
|
|
|
|
_minimumValue = 0;
|
|
|
|
_maximumValue = 100;
|
|
|
|
_value = 0;
|
|
|
|
_stepValue = 1;
|
|
|
|
_wraps = false;
|
2012-09-25 16:57:51 +08:00
|
|
|
this->ignoreAnchorPointForPosition( false );
|
|
|
|
|
|
|
|
// Add the minus components
|
|
|
|
this->setMinusSprite(minusSprite);
|
2013-07-12 14:11:55 +08:00
|
|
|
_minusSprite->setPosition( Point(minusSprite->getContentSize().width / 2, minusSprite->getContentSize().height / 2) );
|
2013-06-15 14:03:30 +08:00
|
|
|
this->addChild(_minusSprite);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
this->setMinusLabel( LabelTTF::create("-", ControlStepperLabelFont, 40));
|
|
|
|
_minusLabel->setColor(ControlStepperLabelColorDisabled);
|
2013-07-12 14:30:26 +08:00
|
|
|
_minusLabel->setPosition(Point(_minusSprite->getContentSize().width / 2, _minusSprite->getContentSize().height / 2) );
|
2013-06-15 14:03:30 +08:00
|
|
|
_minusSprite->addChild(_minusLabel);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
|
|
|
// Add the plus components
|
|
|
|
this->setPlusSprite( plusSprite );
|
2013-07-12 14:11:55 +08:00
|
|
|
_plusSprite->setPosition( Point(minusSprite->getContentSize().width + plusSprite->getContentSize().width / 2,
|
2012-09-25 16:57:51 +08:00
|
|
|
minusSprite->getContentSize().height / 2) );
|
2013-06-15 14:03:30 +08:00
|
|
|
this->addChild(_plusSprite);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
this->setPlusLabel( LabelTTF::create("+", ControlStepperLabelFont, 40 ));
|
|
|
|
_plusLabel->setColor( ControlStepperLabelColorEnabled );
|
2013-07-12 14:30:26 +08:00
|
|
|
_plusLabel->setPosition( Point(_plusSprite->getContentSize().width / 2, _plusSprite->getContentSize().height / 2) );
|
2013-06-15 14:03:30 +08:00
|
|
|
_plusSprite->addChild(_plusLabel);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
|
|
|
// Defines the content size
|
2013-06-20 14:15:53 +08:00
|
|
|
Rect maxRect = ControlUtils::RectUnion(_minusSprite->boundingBox(), _plusSprite->boundingBox());
|
2013-07-12 14:30:26 +08:00
|
|
|
this->setContentSize( Size(_minusSprite->getContentSize().width + _plusSprite->getContentSize().height, maxRect.size.height) );
|
2012-09-25 16:57:51 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
ControlStepper* ControlStepper::create(Sprite *minusSprite, Sprite *plusSprite)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
ControlStepper* pRet = new ControlStepper();
|
2012-09-25 16:57:51 +08:00
|
|
|
if (pRet != NULL && pRet->initWithMinusSpriteAndPlusSprite(minusSprite, plusSprite))
|
|
|
|
{
|
|
|
|
pRet->autorelease();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CC_SAFE_DELETE(pRet);
|
|
|
|
}
|
|
|
|
return pRet;
|
|
|
|
}
|
|
|
|
|
|
|
|
//#pragma mark Properties
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setWraps(bool wraps)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_wraps = wraps;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_wraps)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_minusLabel->setColor( ControlStepperLabelColorEnabled );
|
|
|
|
_plusLabel->setColor(ControlStepperLabelColorEnabled );
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
this->setValue( _value );
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setMinimumValue(double minimumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (minimumValue >= _maximumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
CCAssert(0, "Must be numerically less than maximumValue.");
|
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_minimumValue = minimumValue;
|
|
|
|
this->setValue( _value );
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setMaximumValue(double maximumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (maximumValue <= _minimumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
CCAssert(0, "Must be numerically greater than minimumValue.");
|
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_maximumValue = maximumValue;
|
|
|
|
this->setValue(_value);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setValue(double value)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
this->setValueWithSendingEvent(value, true);
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
double ControlStepper::getValue()
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _value;
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setStepValue(double stepValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
if (stepValue <= 0)
|
|
|
|
{
|
|
|
|
CCAssert(0,"Must be numerically greater than 0.");
|
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_stepValue = stepValue;
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool ControlStepper::isContinuous()
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
return _continuous;
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
//#pragma mark -
|
2013-06-20 14:15:53 +08:00
|
|
|
//#pragma mark ControlStepper Public Methods
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::setValueWithSendingEvent(double value, bool send)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (value < _minimumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
value = _wraps ? _maximumValue : _minimumValue;
|
|
|
|
} else if (value > _maximumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
value = _wraps ? _minimumValue : _maximumValue;
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_value = value;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (!_wraps)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_minusLabel->setColor((value == _minimumValue) ? ControlStepperLabelColorDisabled : ControlStepperLabelColorEnabled);
|
|
|
|
_plusLabel->setColor((value == _maximumValue) ? ControlStepperLabelColorDisabled : ControlStepperLabelColorEnabled);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (send)
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
this->sendActionsForControlEvents(ControlEventValueChanged);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::startAutorepeat()
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_autorepeatCount = -1;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
this->schedule(schedule_selector(ControlStepper::update), kAutorepeatDeltaTime, kRepeatForever, kAutorepeatDeltaTime * 3);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Stop the autorepeat. */
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::stopAutorepeat()
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
this->unschedule(schedule_selector(ControlStepper::update));
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::update(float dt)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_autorepeatCount++;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if ((_autorepeatCount < kAutorepeatIncreaseTimeIncrement) && (_autorepeatCount % 3) != 0)
|
2012-09-25 16:57:51 +08:00
|
|
|
return;
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
if (_touchedPart == kControlStepperPartMinus)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
this->setValueWithSendingEvent(_value - _stepValue, _continuous);
|
2013-06-20 14:15:53 +08:00
|
|
|
} else if (_touchedPart == kControlStepperPartPlus)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
this->setValueWithSendingEvent(_value + _stepValue, _continuous);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
//#pragma mark ControlStepper Private Methods
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::updateLayoutUsingTouchLocation(Point location)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
if (location.x < _minusSprite->getContentSize().width
|
|
|
|
&& _value > _minimumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_touchedPart = kControlStepperPartMinus;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-07-08 18:11:32 +08:00
|
|
|
_minusSprite->setColor(Color3B::GRAY);
|
|
|
|
_plusSprite->setColor(Color3B::WHITE);
|
2013-06-15 14:03:30 +08:00
|
|
|
} else if (location.x >= _minusSprite->getContentSize().width
|
|
|
|
&& _value < _maximumValue)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_touchedPart = kControlStepperPartPlus;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-07-08 18:11:32 +08:00
|
|
|
_minusSprite->setColor(Color3B::WHITE);
|
|
|
|
_plusSprite->setColor(Color3B::GRAY);
|
2012-09-25 16:57:51 +08:00
|
|
|
} else
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
_touchedPart = kControlStepperPartNone;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-07-08 18:11:32 +08:00
|
|
|
_minusSprite->setColor(Color3B::WHITE);
|
|
|
|
_plusSprite->setColor(Color3B::WHITE);
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
bool ControlStepper::ccTouchBegan(Touch *pTouch, Event *pEvent)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2012-10-30 23:10:05 +08:00
|
|
|
if (!isTouchInside(pTouch) || !isEnabled() || !isVisible())
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
Point location = this->getTouchLocation(pTouch);
|
2012-09-25 16:57:51 +08:00
|
|
|
this->updateLayoutUsingTouchLocation(location);
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
_touchInsideFlag = true;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_autorepeat)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
this->startAutorepeat();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::ccTouchMoved(Touch *pTouch, Event *pEvent)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
if (this->isTouchInside(pTouch))
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Point location = this->getTouchLocation(pTouch);
|
2012-09-25 16:57:51 +08:00
|
|
|
this->updateLayoutUsingTouchLocation(location);
|
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (!_touchInsideFlag)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_touchInsideFlag = true;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_autorepeat)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
this->startAutorepeat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
2013-06-15 14:03:30 +08:00
|
|
|
_touchInsideFlag = false;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
_touchedPart = kControlStepperPartNone;
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-07-08 18:11:32 +08:00
|
|
|
_minusSprite->setColor(Color3B::WHITE);
|
|
|
|
_plusSprite->setColor(Color3B::WHITE);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_autorepeat)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
this->stopAutorepeat();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-20 14:15:53 +08:00
|
|
|
void ControlStepper::ccTouchEnded(Touch *pTouch, Event *pEvent)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
2013-07-08 18:11:32 +08:00
|
|
|
_minusSprite->setColor(Color3B::WHITE);
|
|
|
|
_plusSprite->setColor(Color3B::WHITE);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
if (_autorepeat)
|
2012-09-25 16:57:51 +08:00
|
|
|
{
|
|
|
|
this->stopAutorepeat();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this->isTouchInside(pTouch))
|
|
|
|
{
|
2013-06-20 14:15:53 +08:00
|
|
|
Point location = this->getTouchLocation(pTouch);
|
2012-09-25 16:57:51 +08:00
|
|
|
|
2013-06-15 14:03:30 +08:00
|
|
|
this->setValue(_value + ((location.x < _minusSprite->getContentSize().width) ? (0.0-_stepValue) : _stepValue));
|
2012-09-25 16:57:51 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_CC_EXT_END
|