axmol/samples/Cpp/TestCpp/Classes/DataVisitorTest/DataVisitorTest.cpp

87 lines
2.3 KiB
C++
Raw Normal View History

#include "DataVisitorTest.h"
#include "../testResource.h"
std::string PrettyPrinterDemo::title()
{
return "PrettyPrinter Test";
}
std::string PrettyPrinterDemo::subtitle()
{
return "Please see log!";
}
void PrettyPrinterDemo::addSprite()
{
// create sprites
auto s1 = Sprite::create("Images/grossini.png");
auto s2 = Sprite::create("Images/grossini_dance_01.png");
auto s3 = Sprite::create("Images/grossini_dance_02.png");
auto s4 = Sprite::create("Images/grossini_dance_03.png");
auto s5 = Sprite::create("Images/grossini_dance_04.png");
2013-07-12 14:11:55 +08:00
s1->setPosition(Point(50, 50));
s2->setPosition(Point(60, 50));
s3->setPosition(Point(70, 50));
s4->setPosition(Point(80, 50));
s5->setPosition(Point(90, 50));
this->addChild(s1);
this->addChild(s2);
this->addChild(s3);
this->addChild(s4);
this->addChild(s5);
}
void PrettyPrinterDemo::onEnter()
{
Layer::onEnter();
auto s = Director::getInstance()->getWinSize();
auto label = LabelTTF::create(title().c_str(), "Arial", 28);
2013-07-12 14:11:55 +08:00
label->setPosition( Point(s.width/2, s.height * 4/5) );
this->addChild(label, 1);
std::string strSubtitle = subtitle();
if(strSubtitle.empty() == false)
{
auto subLabel = LabelTTF::create(strSubtitle.c_str(), "Thonburi", 16);
2013-07-12 14:11:55 +08:00
subLabel->setPosition( Point(s.width/2, s.height * 3/5) );
this->addChild(subLabel, 1);
}
// Test code
PrettyPrinter vistor;
// print dictionary
auto dict = Dictionary::createWithContentsOfFile("animations/animations.plist");
dict->acceptVisitor(vistor);
log("%s", vistor.getResult().c_str());
log("-------------------------------");
Set myset;
for (int i = 0; i < 30; ++i) {
myset.addObject(String::createWithFormat("str: %d", i));
}
vistor.clear();
myset.acceptVisitor(vistor);
log("%s", vistor.getResult().c_str());
log("-------------------------------");
vistor.clear();
addSprite();
// dict = Director::getInstance()->getTextureCache()->snapshotTextures();
// dict->acceptVisitor(vistor);
// log("%s", vistor.getResult().c_str());
}
void DataVisitorTestScene::runThisTest()
{
auto layer = new PrettyPrinterDemo();
layer->autorelease();
addChild(layer);
Director::getInstance()->replaceScene(this);
}