2014-08-17 21:33:33 +08:00
|
|
|
/****************************************************************************
|
|
|
|
Copyright (c) 2013 cocos2d-x.org
|
|
|
|
|
|
|
|
http://www.cocos2d-x.org
|
|
|
|
|
|
|
|
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 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.
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef _LIGHT_TEST_H_
|
|
|
|
#define _LIGHT_TEST_H_
|
|
|
|
|
|
|
|
#include "../BaseTest.h"
|
|
|
|
|
2015-04-03 14:31:03 +08:00
|
|
|
DEFINE_TEST_SUITE(LightTests);
|
|
|
|
|
|
|
|
class LightTest : public TestCase
|
2014-08-17 21:33:33 +08:00
|
|
|
{
|
|
|
|
public:
|
2014-09-17 14:26:57 +08:00
|
|
|
CREATE_FUNC(LightTest);
|
|
|
|
LightTest();
|
|
|
|
virtual ~LightTest();
|
2014-08-17 21:33:33 +08:00
|
|
|
|
2015-03-15 07:10:08 +08:00
|
|
|
virtual std::string title() const override;
|
2014-08-19 15:51:30 +08:00
|
|
|
|
2015-03-15 07:10:08 +08:00
|
|
|
virtual void update(float delta) override;
|
2014-08-19 15:51:30 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
void SwitchLight(cocos2d::Ref* sender, cocos2d::LightType lightType);
|
2014-08-18 17:10:07 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
void addSprite();
|
|
|
|
void addLights();
|
|
|
|
|
|
|
|
private:
|
2014-08-17 21:33:33 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::AmbientLight* _ambientLight;
|
|
|
|
cocos2d::DirectionLight* _directionalLight;
|
|
|
|
cocos2d::PointLight* _pointLight;
|
|
|
|
cocos2d::SpotLight* _spotLight;
|
2014-08-25 16:32:15 +08:00
|
|
|
|
2015-04-09 08:37:30 +08:00
|
|
|
cocos2d::Label* _ambientLightLabel;
|
|
|
|
cocos2d::Label* _directionalLightLabel;
|
|
|
|
cocos2d::Label* _pointLightLabel;
|
|
|
|
cocos2d::Label* _spotLightLabel;
|
2014-08-17 21:33:33 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|