2010-08-26 10:53:49 +08:00
|
|
|
#ifndef _DRAW_PRIMITIVES_TEST_H_
|
|
|
|
#define _DRAW_PRIMITIVES_TEST_H_
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
#include "cocos2d.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
#include "../testBasic.h"
|
2013-06-07 08:12:28 +08:00
|
|
|
#include "../BaseTest.h"
|
2012-04-19 14:35:52 +08:00
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
#include <string>
|
|
|
|
|
2013-06-07 08:12:28 +08:00
|
|
|
class BaseLayer : public BaseTest
|
2012-11-21 11:43:08 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
BaseLayer();
|
|
|
|
|
2013-07-26 06:53:24 +08:00
|
|
|
void restartCallback(Object* sender);
|
|
|
|
void nextCallback(Object* sender);
|
|
|
|
void backCallback(Object* sender);
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2012-11-21 11:43:08 +08:00
|
|
|
virtual void onEnter();
|
|
|
|
};
|
|
|
|
|
|
|
|
class DrawPrimitivesTest : public BaseLayer
|
2010-08-26 10:53:49 +08:00
|
|
|
{
|
|
|
|
public:
|
2012-04-19 14:35:52 +08:00
|
|
|
DrawPrimitivesTest();
|
2012-11-21 11:43:08 +08:00
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2012-04-19 14:35:52 +08:00
|
|
|
virtual void draw();
|
2013-12-25 11:44:05 +08:00
|
|
|
protected:
|
|
|
|
void onDraw();
|
2010-08-26 10:53:49 +08:00
|
|
|
};
|
|
|
|
|
2012-11-21 11:43:08 +08:00
|
|
|
class DrawNodeTest : public BaseLayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DrawNodeTest();
|
|
|
|
|
2013-12-19 05:52:10 +08:00
|
|
|
virtual std::string title() const override;
|
|
|
|
virtual std::string subtitle() const override;
|
2012-11-21 11:43:08 +08:00
|
|
|
};
|
|
|
|
|
2010-08-26 10:53:49 +08:00
|
|
|
class DrawPrimitivesTestScene : public TestScene
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual void runThisTest();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|