Skip to content

Commit

Permalink
Merge pull request #2406 from dumganhar/data-visitor
Browse files Browse the repository at this point in the history
fixed #2142: Adding CCDataVisitor and Implementing CCPrettyPrinter.
  • Loading branch information
James Chen committed May 10, 2013
2 parents b44da01 + ed51e90 commit 306ff0a
Show file tree
Hide file tree
Showing 41 changed files with 653 additions and 26 deletions.
40 changes: 30 additions & 10 deletions .travis.yml
@@ -1,17 +1,37 @@
language: cpp
script:
- export NACL_SDK_ROOT=$PWD/nacl_sdk/pepper_canary
- export PATH=$PATH:$NACL_SDK_ROOT/toolchain/linux_x86_newlib/bin
- make -j4
install:
- "if [ \"$PLATFORM\" != nacl ]; then ./install-deps-linux.sh; fi"
- "if [ \"$PLATFORM\" = nacl ]; then sudo apt-get update; fi"
- "if [ \"$PLATFORM\" = nacl ]; then sudo apt-get install libc6:i386; fi"
- "if [ \"$PLATFORM\" = nacl ]; then wget http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/nacl_sdk.zip; fi"
- "if [ \"$PLATFORM\" = nacl ]; then unzip nacl_sdk.zip; fi"
- "if [ \"$PLATFORM\" = nacl ]; then nacl_sdk/naclsdk update --force pepper_canary; fi"
- if [ $PLATFORM = android ]; then export NDK_ROOT=$PWD/android-ndk; fi
- if [ $PLATFORM = android ]; then cd samples/$SAMPLE_LANG/$APPNAME/proj.android; fi
- if [ $PLATFORM = android ]; then ./build_native.sh; fi
- if [ $PLATFORM != android ]; then export NACL_SDK_ROOT=$PWD/nacl_sdk/pepper_canary; fi
- if [ $PLATFORM != android ]; then export PATH=$PATH:$NACL_SDK_ROOT/toolchain/linux_x86_newlib/bin; fi
- if [ $PLATFORM != android ]; then make -j4; fi
before_install:
- if [ $PLATFORM = linux ]; then ./install-deps-linux.sh; fi
- if [ $PLATFORM = nacl ]; then sudo apt-get update; fi
- if [ $PLATFORM = nacl ]; then sudo apt-get install libc6:i386; fi
- if [ $PLATFORM = nacl ]; then wget http://storage.googleapis.com/nativeclient-mirror/nacl/nacl_sdk/nacl_sdk.zip; fi
- if [ $PLATFORM = nacl ]; then unzip nacl_sdk.zip; fi
- if [ $PLATFORM = nacl ]; then nacl_sdk/naclsdk update --force pepper_canary; fi
- if [ $PLATFORM = android ]; then curl -O http://dl.google.com/android/ndk/android-ndk-r8e-linux-x86_64.tar.bz2; fi
- if [ $PLATFORM = android ]; then tar xjf android-ndk-r8e-linux-x86_64.tar.bz2; fi
- if [ $PLATFORM = android ]; then mv android-ndk-r8e android-ndk; fi
env:
- PLATFORM=nacl DEBUG=1
- PLATFORM=nacl DEBUG=0
- PLATFORM=linux DEBUG=1
- PLATFORM=linux DEBUG=0
- PLATFORM=android SAMPLE_LANG=Cpp APPNAME=HelloCpp
- PLATFORM=android SAMPLE_LANG=Cpp APPNAME=TestCpp
- PLATFORM=android SAMPLE_LANG=Cpp APPNAME=SimpleGame
- PLATFORM=android SAMPLE_LANG=Cpp APPNAME=AssetsManagerTest
- PLATFORM=android SAMPLE_LANG=Javascript APPNAME=CocosDragonJS
- PLATFORM=android SAMPLE_LANG=Javascript APPNAME=CrystalCraze
- PLATFORM=android SAMPLE_LANG=Javascript APPNAME=MoonWarriors
- PLATFORM=android SAMPLE_LANG=Javascript APPNAME=TestJavascript
- PLATFORM=android SAMPLE_LANG=Javascript APPNAME=WatermelonWithMe
- PLATFORM=android SAMPLE_LANG=Lua APPNAME=HelloLua
- PLATFORM=android SAMPLE_LANG=Lua APPNAME=TestLua
branches:
only:
- master
2 changes: 1 addition & 1 deletion README.mdown
@@ -1,7 +1,7 @@
cocos2d-x
=========

[![Build Status](https://travis-ci.org/sbc100/cocos2d-x.png?branch=travis)](https://travis-ci.org/sbc100/cocos2d-x)
[![Build Status](https://travis-ci.org/dumganhar/cocos2d-x.png?branch=master)](https://travis-ci.org/dumganhar/cocos2d-x)

[cocos2d-x][1] is a multi-platform 2D game framework in C++, branched on
[cocos2d-iphone][2] and licensed under MIT. The master branch on github uses
Expand Down
1 change: 1 addition & 0 deletions cocos2dx/Android.mk
Expand Up @@ -35,6 +35,7 @@ cocoa/CCSet.cpp \
cocoa/CCString.cpp \
cocoa/CCZone.cpp \
cocoa/CCArray.cpp \
cocoa/CCDataVisitor.cpp \
cocos2d.cpp \
CCDirector.cpp \
draw_nodes/CCDrawingPrimitives.cpp \
Expand Down
5 changes: 5 additions & 0 deletions cocos2dx/cocoa/CCArray.cpp
Expand Up @@ -391,4 +391,9 @@ CCObject* CCArray::copyWithZone(CCZone* pZone)
return pArray;
}

void CCArray::acceptVisitor(CCDataVisitor &visitor)
{
visitor.visit(this);
}

NS_CC_END
3 changes: 3 additions & 0 deletions cocos2dx/cocoa/CCArray.h
Expand Up @@ -210,6 +210,9 @@ class CC_DLL CCArray : public CCObject
/* override functions */
virtual CCObject* copyWithZone(CCZone* pZone);

/* override functions */
virtual void acceptVisitor(CCDataVisitor &visitor);

public:
ccArray* data;
CCArray();
Expand Down
4 changes: 4 additions & 0 deletions cocos2dx/cocoa/CCBool.h
Expand Up @@ -50,6 +50,10 @@ class CC_DLL CCBool : public CCObject
}
return pRet;
}

/* override functions */
virtual void acceptVisitor(CCDataVisitor &visitor) { visitor.visit(this); }

private:
bool m_bValue;
};
Expand Down
227 changes: 227 additions & 0 deletions cocos2dx/cocoa/CCDataVisitor.cpp
@@ -0,0 +1,227 @@
/****************************************************************************
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.
****************************************************************************/

#include "CCObject.h"
#include "CCBool.h"
#include "CCInteger.h"
#include "CCFloat.h"
#include "CCDouble.h"
#include "CCString.h"
#include "CCArray.h"
#include "CCDictionary.h"
#include "CCSet.h"

NS_CC_BEGIN

void CCDataVisitor::visit(const CCBool *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCInteger *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCFloat *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCDouble *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCString *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCArray *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCDictionary *value)
{
visitObject(value);
}

void CCDataVisitor::visit(const CCSet *value)
{
visitObject(value);
}

// CCPrettyPrinter
CCPrettyPrinter::CCPrettyPrinter(int indentLevel/* = 0 */)
{
setIndentLevel(indentLevel);
}

void CCPrettyPrinter::clear()
{
_result.clear();
}

std::string CCPrettyPrinter::getResult()
{
return _result;
}

void CCPrettyPrinter::visitObject(const CCObject *p)
{
char buf[50] = {0};
sprintf(buf, "%p", p);
_result += buf;
}

void CCPrettyPrinter::visit(const CCBool * p)
{
char buf[50] = {0};
sprintf(buf, "%s", p->getValue() ? "true" : "false");
}

void CCPrettyPrinter::visit(const CCInteger *p)
{
char buf[50] = {0};
sprintf(buf, "%d", p->getValue());
_result += buf;
}

void CCPrettyPrinter::visit(const CCFloat *p)
{
char buf[50] = {0};
sprintf(buf, "%f", p->getValue());
_result += buf;
}

void CCPrettyPrinter::visit(const CCDouble *p)
{
char buf[50] = {0};
sprintf(buf, "%lf", p->getValue());
_result += buf;
}

void CCPrettyPrinter::visit(const CCString *p)
{
_result += p->getCString();
}

void CCPrettyPrinter::visit(const CCArray *p)
{
_result += "\n";
_result += _indentStr;
_result += "<array>\n";

setIndentLevel(_indentLevel+1);
CCObject* obj;
int i = 0;
char buf[50] = {0};
CCARRAY_FOREACH(p, obj)
{
if (i > 0) {
_result += "\n";
}
sprintf(buf, "%s%02d: ", _indentStr.c_str(), i);
_result += buf;
CCPrettyPrinter v(_indentLevel);
obj->acceptVisitor(v);
_result += v.getResult();
i++;
}
setIndentLevel(_indentLevel-1);

_result += "\n";
_result += _indentStr;
_result += "</array>";
}

void CCPrettyPrinter::visit(const CCDictionary *p)
{
_result += "\n";
_result += _indentStr;
_result += "<dict>\n";

setIndentLevel(_indentLevel+1);
CCDictElement* element;
bool bFirstElement = true;
char buf[1000] = {0};
CCDICT_FOREACH(p, element)
{
if (!bFirstElement) {
_result += "\n";
}
sprintf(buf, "%s%s: ", _indentStr.c_str(),element->getStrKey());
_result += buf;
CCPrettyPrinter v(_indentLevel);
element->getObject()->acceptVisitor(v);
_result += v.getResult();
bFirstElement = false;
}
setIndentLevel(_indentLevel-1);

_result += "\n";
_result += _indentStr;
_result += "</dict>";
}

void CCPrettyPrinter::visit(const CCSet *p)
{
_result += "\n";
_result += _indentStr;
_result += "<set>\n";

setIndentLevel(_indentLevel+1);

int i = 0;
CCSet* tmp = const_cast<CCSet*>(p);
CCSetIterator it = tmp->begin();

for (; it != tmp->end(); ++it, ++i) {
if (i > 0) {
_result += "\n";
}
_result += _indentStr.c_str();
CCPrettyPrinter v(_indentLevel);
(*it)->acceptVisitor(v);
_result += v.getResult();
}
setIndentLevel(_indentLevel-1);

_result += "\n";
_result += _indentStr;
_result += "</set>\n";
}

void CCPrettyPrinter::setIndentLevel(int indentLevel)
{
_indentLevel = indentLevel;
_indentStr.clear();
for (int i = 0; i < _indentLevel; ++i) {
_indentStr += "\t";
}
}

NS_CC_END

0 comments on commit 306ff0a

Please sign in to comment.