mirror of https://github.com/axmolengine/axmol.git
37 lines
831 B
C++
37 lines
831 B
C++
#ifndef _BOX2D_TEST_H_
|
|
#define _BOX2D_TEST_H_
|
|
|
|
#include "cocos2d.h"
|
|
#include "Box2D/Box2D.h"
|
|
#include "../BaseTest.h"
|
|
|
|
DEFINE_TEST_SUITE(Box2DTests);
|
|
|
|
class Box2DTest : public TestCase
|
|
{
|
|
cocos2d::Texture2D* _spriteTexture; // weak ref
|
|
b2World* world;
|
|
// GLESDebugDraw* _debugDraw;
|
|
|
|
public:
|
|
Box2DTest();
|
|
~Box2DTest();
|
|
|
|
void initPhysics();
|
|
void createResetButton();
|
|
virtual void draw(cocos2d::Renderer* renderer, const cocos2d::Mat4& transform, uint32_t flags) override;
|
|
|
|
void addNewSpriteAtPosition(cocos2d::Vec2 p);
|
|
void update(float dt) override;
|
|
void onTouchesEnded(const std::vector<cocos2d::Touch*>& touches, cocos2d::Event* event);
|
|
|
|
#if CC_ENABLE_BOX2D_INTEGRATION
|
|
protected:
|
|
Mat4 _modelViewMV;
|
|
void onDraw();
|
|
cocos2d::CustomCommand _customCommand;
|
|
#endif
|
|
} ;
|
|
|
|
#endif
|