2021-07-06 21:02:47 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (c) 2021 @aismann; Peter Eismann, Germany; dreifrankensoft
|
|
|
|
|
|
|
|
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 _BOX2D_VIEW_H_
|
|
|
|
#define _BOX2D_VIEW_H_
|
|
|
|
|
|
|
|
#include "../BaseTest.h"
|
|
|
|
#include "renderer/CCCustomCommand.h"
|
|
|
|
|
2021-07-19 18:33:03 +08:00
|
|
|
extern cocos2d::Vec2 physicsDebugNodeOffset;
|
|
|
|
|
2021-07-06 21:02:47 +08:00
|
|
|
DEFINE_TEST_SUITE(Box2DTestBedTests);
|
|
|
|
|
|
|
|
class Box2DTestBed : public TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static Box2DTestBed* createWithEntryID(int entryId);
|
|
|
|
|
|
|
|
Box2DTestBed();
|
|
|
|
virtual ~Box2DTestBed();
|
|
|
|
|
|
|
|
//void onEnter() override;
|
|
|
|
//void createResetButton();
|
|
|
|
//void reset(cocos2d::Ref* sender);
|
|
|
|
|
|
|
|
bool initWithEntryID(int entryId);
|
|
|
|
|
|
|
|
bool onTouchBegan(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
void onTouchMoved(cocos2d::Touch* touch, cocos2d::Event* event);
|
|
|
|
|
|
|
|
cocos2d::DrawNode* draw = NULL;
|
|
|
|
private:
|
|
|
|
int m_entryID;
|
|
|
|
cocos2d::EventListenerTouchOneByOne* _touchListener;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TestEntry;
|
|
|
|
class Test;
|
|
|
|
class Box2DView : public cocos2d::Layer
|
|
|
|
{
|
|
|
|
cocos2d::EventListenerTouchOneByOne* _touchListener;
|
|
|
|
cocos2d::EventListenerKeyboard* _keyboardListener;
|
|
|
|
TestEntry* m_entry;
|
|
|
|
Test* m_test;
|
|
|
|
int m_entryID;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Box2DView(void);
|
|
|
|
virtual ~Box2DView(void);
|
|
|
|
|
|
|
|
bool initWithEntryID(int entryId);
|
|
|
|
std::string title() const;
|
|
|
|
virtual void draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
|
|
|
|
|
|
|
// virtual void registerWithTouchDispatcher();
|
|
|
|
bool onTouchBegan(cocos2d::Touch* touch, cocos2d::Event* event)override;
|
|
|
|
void onTouchMoved(cocos2d::Touch* touch, cocos2d::Event* event)override;
|
|
|
|
void onTouchEnded(cocos2d::Touch* touch, cocos2d::Event* event)override;
|
|
|
|
|
|
|
|
void onKeyPressed(cocos2d::EventKeyboard::KeyCode code, cocos2d::Event* event)override;
|
|
|
|
void onKeyReleased(cocos2d::EventKeyboard::KeyCode code, cocos2d::Event* event)override;
|
|
|
|
//virtual void accelerometer(UIAccelerometer* accelerometer, cocos2d::Acceleration* acceleration);
|
|
|
|
|
|
|
|
static Box2DView* viewWithEntryID(int entryId);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void onDraw(const cocos2d::Mat4& transform, uint32_t flags);
|
|
|
|
|
|
|
|
cocos2d::CallbackCommand _customCmd;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|